Additional Dataset

Retrieved from the Food Security Portal API

Which delivers the data in the form of either HTML or CSV. I opted for the CSV verion as I am more comfortable with CSV structure:

AgGDP <- fread('http://www.foodsecurityportal.org/api/countries/agriculture-value-ad.csv')
head(AgGDP)
##             V1   V2   V3   V4   V5   V6         V7          V8         V9
## 1:     Country 1960 1961 1962 1963 1964 1965.00000 1966.000000 1967.00000
## 2: Afghanistan   NA   NA   NA   NA   NA         NA          NA         NA
## 3:     Albania   NA   NA   NA   NA   NA         NA          NA         NA
## 4:     Algeria   NA   NA   NA   NA   NA   12.87621    9.137256   10.33067
## 5:     Andorra   NA   NA   NA   NA   NA         NA          NA         NA
## 6:      Angola   NA   NA   NA   NA   NA         NA          NA         NA
##           V10         V11         V12         V13         V14        V15
## 1: 1968.00000 1969.000000 1970.000000 1971.000000 1972.000000 1973.00000
## 2:         NA          NA          NA          NA          NA         NA
## 3:         NA          NA          NA          NA          NA         NA
## 4:   10.85337    9.030165    9.205466    9.569175    8.420846    7.03976
## 5:         NA          NA          NA          NA          NA         NA
## 6:         NA          NA          NA          NA          NA         NA
##            V16        V17         V18         V19         V20         V21
## 1: 1974.000000 1975.00000 1976.000000 1977.000000 1978.000000 1979.000000
## 2:          NA         NA          NA          NA          NA          NA
## 3:          NA         NA          NA          NA          NA          NA
## 4:    7.366629   10.41841    9.926881    8.470141    8.805621    9.016629
## 5:          NA         NA          NA          NA          NA          NA
## 6:          NA         NA          NA          NA          NA          NA
##            V22         V23         V24        V25         V26         V27
## 1: 1980.000000 1981.000000 1982.000000 1983.00000 1984.000000 1985.000000
## 2:          NA          NA          NA         NA          NA          NA
## 3:   33.600206   32.400299   31.699710   34.10010   33.099941   34.600012
## 4:    8.509234    9.235128    8.389787    7.74615    7.530864    8.995894
## 5:          NA          NA          NA         NA          NA          NA
## 6:          NA          NA          NA         NA          NA   13.791500
##           V28        V29        V30        V31        V32        V33
## 1: 1986.00000 1987.00000 1988.00000 1989.00000 1990.00000 1991.00000
## 2:         NA         NA         NA         NA         NA         NA
## 3:   34.00000   33.20002   31.49988   32.30020   35.90079   39.29530
## 4:   10.17942   12.87466   12.16766   13.03902   11.35827   10.16706
## 5:         NA         NA         NA         NA         NA         NA
## 6:   13.68100   14.20100   18.99050   17.72900   18.35567   25.00000
##           V34        V35         V36         V37         V38         V39
## 1: 1992.00000 1993.00000 1994.000000 1995.000000 1996.000000 1997.000000
## 2:         NA         NA          NA          NA          NA          NA
## 3:   51.64187   54.64098   53.620981   55.812145   37.479605   32.700160
## 4:   12.12685   12.09707   10.058437   10.497818   11.766699    9.482320
## 5:         NA         NA          NA          NA          NA          NA
## 6:   11.53846   11.52416    6.643018    7.312253    7.026869    9.002018
##           V40         V41          V42          V43         V44
## 1: 1998.00000 1999.000000 2000.0000000 2001.0000000 2002.000000
## 2:         NA          NA           NA           NA   38.471940
## 3:   30.47522   27.117732   26.4904623   24.4530546   24.235933
## 4:   12.53328   11.941390    8.9782020   10.5019973   10.065089
## 5:         NA          NA    0.5415472    0.5055525    0.448084
## 6:   13.03376    6.290257    5.6646896    8.1563770          NA
##             V45        V46          V47          V48          V49
## 1: 2003.0000000 2004.00000 2005.0000000 2006.0000000 2007.0000000
## 2:   37.7654435   30.27167   31.7509905   29.2497368   30.6228537
## 3:   24.3326986   22.93252   21.2343279   20.2223444   19.8747976
## 4:   10.6260080   10.17906    8.2288994    8.0059536    8.0276397
## 5:    0.4857566    0.48290    0.4432987    0.4154182    0.4366991
## 6:           NA         NA           NA           NA           NA
##            V50          V51          V52          V53          V54
## 1: 2008.000000 2009.0000000 2010.0000000 2011.0000000 2012.0000000
## 2:   25.394741   30.2056025   27.0915400   24.5074404   24.6032471
## 3:   19.420535   19.4097808   20.6581888   20.9581241   21.6606803
## 4:    7.001241   10.0662439    9.0294384    8.6150239    9.3952192
## 5:    0.479778    0.4710544    0.5429981    0.5877705    0.6792885
## 6:          NA           NA           NA           NA           NA
##             V55          V56          V57        V58
## 1: 2013.0000000 2014.0000000 2015.0000000 2016.00000
## 2:   23.8913721   23.4631255   21.4007220   21.91030
## 3:   22.4285068   22.9030751   22.8578117   22.89489
## 4:   10.6436753   11.0856165   12.6079281   13.32056
## 5:    0.6406918    0.5516397    0.5209198         NA
## 6:           NA           NA           NA         NA

Looking at the structure of the table, the first row should be the column names, lets make that happen.

#grab the first row with the column names
names(AgGDP) <- as.matrix(AgGDP[1, ])
#remove the first row from the table
AgGDP <- AgGDP[-1, ]
#apply the names to the columns
AgGDP[] <- lapply(AgGDP, function(x) type.convert(as.character(x)))
head(AgGDP)
##                Country 1960 1961 1962 1963 1964     1965     1966     1967
## 1:         Afghanistan   NA   NA   NA   NA   NA       NA       NA       NA
## 2:             Albania   NA   NA   NA   NA   NA       NA       NA       NA
## 3:             Algeria   NA   NA   NA   NA   NA 12.87621 9.137256 10.33067
## 4:             Andorra   NA   NA   NA   NA   NA       NA       NA       NA
## 5:              Angola   NA   NA   NA   NA   NA       NA       NA       NA
## 6: Antigua and Barbuda   NA   NA   NA   NA   NA       NA       NA       NA
##        1968     1969     1970     1971     1972    1973     1974     1975
## 1:       NA       NA       NA       NA       NA      NA       NA       NA
## 2:       NA       NA       NA       NA       NA      NA       NA       NA
## 3: 10.85337 9.030165 9.205466 9.569175 8.420846 7.03976 7.366629 10.41841
## 4:       NA       NA       NA       NA       NA      NA       NA       NA
## 5:       NA       NA       NA       NA       NA      NA       NA       NA
## 6:       NA       NA       NA       NA       NA      NA       NA       NA
##        1976     1977     1978     1979      1980      1981      1982
## 1:       NA       NA       NA       NA        NA        NA        NA
## 2:       NA       NA       NA       NA 33.600206 32.400299 31.699710
## 3: 9.926881 8.470141 8.805621 9.016629  8.509234  9.235128  8.389787
## 4:       NA       NA       NA       NA        NA        NA        NA
## 5:       NA       NA       NA       NA        NA        NA        NA
## 6:       NA 5.492730 5.022744 4.007593  3.460571  3.349762  3.083710
##         1983      1984      1985      1986      1987      1988      1989
## 1:        NA        NA        NA        NA        NA        NA        NA
## 2: 34.100097 33.099941 34.600012 34.000000 33.200025 31.499882 32.300198
## 3:  7.746150  7.530864  8.995894 10.179422 12.874660 12.167656 13.039015
## 4:        NA        NA        NA        NA        NA        NA        NA
## 5:        NA        NA 13.791500 13.681000 14.201000 18.990499 17.729000
## 6:  3.035577  2.303585  2.409000  2.182476  2.215775  2.047728  1.960888
##         1990      1991      1992      1993      1994      1995      1996
## 1:        NA        NA        NA        NA        NA        NA        NA
## 2: 35.900790 39.295295 51.641870 54.640976 53.620981 55.812145 37.479605
## 3: 11.358267 10.167058 12.126846 12.097073 10.058437 10.497818 11.766699
## 4:        NA        NA        NA        NA        NA        NA        NA
## 5: 18.355667 25.000000 11.538462 11.524164  6.643018  7.312253  7.026869
## 6:  2.051357  2.041299  2.070215  2.000759  1.812730  1.902959  1.879897
##         1997      1998      1999       2000       2001      2002
## 1:        NA        NA        NA         NA         NA 38.471940
## 2: 32.700160 30.475218 27.117732 26.4904623 24.4530546 24.235933
## 3:  9.482320 12.533281 11.941390  8.9782020 10.5019973 10.065089
## 4:        NA        NA        NA  0.5415472  0.5055525  0.448084
## 5:  9.002018 13.033758  6.290257  5.6646896  8.1563770        NA
## 6:  1.989318  1.920871  1.909285  1.7686164  1.8210609  1.966083
##          2003      2004       2005       2006       2007      2008
## 1: 37.7654435 30.271674 31.7509905 29.2497368 30.6228537 25.394741
## 2: 24.3326986 22.932521 21.2343279 20.2223444 19.8747976 19.420535
## 3: 10.6260080 10.179063  8.2288994  8.0059536  8.0276397  7.001241
## 4:  0.4857566  0.482900  0.4432987  0.4154182  0.4366991  0.479778
## 5:         NA        NA         NA         NA         NA        NA
## 6:  1.9908209  1.866175  2.0162596  1.9086949  1.8979692  1.803563
##          2009       2010       2011       2012       2013       2014
## 1: 30.2056025 27.0915400 24.5074404 24.6032471 23.8913721 23.4631255
## 2: 19.4097808 20.6581888 20.9581241 21.6606803 22.4285068 22.9030751
## 3: 10.0662439  9.0294384  8.6150239  9.3952192 10.6436753 11.0856165
## 4:  0.4710544  0.5429981  0.5877705  0.6792885  0.6406918  0.5516397
## 5:         NA         NA         NA         NA         NA         NA
## 6:  1.7162894  1.8941686  2.2440245  2.2024927  2.3006246  1.8044368
##          2015      2016
## 1: 21.4007220 21.910295
## 2: 22.8578117 22.894886
## 3: 12.6079281 13.320556
## 4:  0.5209198        NA
## 5:         NA        NA
## 6:  1.9288810  1.891544

Agriculture, Value Added (% GDP)

This dataset documents a counties annual agricultural value added to thier GDP for 1960 - 2016. The agricultural value is the net output of the Agricultural sector which includes forestry, hunting and fishing, and cultivation of crops and livestock production.

Tidy up

Lets gather all thes years into a single column and remove the NA values while we’re here.

AgGDP <-gather(AgGDP, key = Years, "Percent_GDP", 2:58, na.rm = TRUE)
head(AgGDP)
##         Country Years Percent_GDP
## 15   Bangladesh  1960    57.47431
## 20        Benin  1960    46.15772
## 25     Botswana  1960    43.36449
## 26       Brazil  1960    20.59281
## 29 Burkina Faso  1960    39.81253
## 37         Chad  1960    40.92694

Plot The Data

Lets explore what insights we may gain from the Agricultural GDP data

plot <- ggplot(AgGDP, aes(Country, Percent_GDP) ) + geom_col() + geom_path(colour = "red", na.rm = TRUE)
# Rename the x, Y axis to make graph communnicate more clearly
plot + ggtitle("Explore") + theme(axis.text.x = element_blank(), axis.text.y = element_blank(), axis.ticks = element_blank()) + xlab("Coutries") + ylab("Percent of GDP From Agticulture")

Interpretation

From this plot it’s evident that there is quite a spread among countries in their agricultural contributions to GDP. The goal here is to find varibles that can predict a countries percentage of GDP coming from agriculture.

In order to combine the two datsets lets aggregate the “Percent of GDP from Agriculture” into an average overtime. This will give us a starting point to explore intersting relationships.

Lets set up our model

##FOR df TABLE
set.seed(789)

# pass in y value (to be predicted)
sample_selection <- createDataPartition(df$percent_gdp, p = 0.75, list = FALSE)
  
train <- df[sample_selection, ]
test <- df[-sample_selection, ]

BUILD MODEL FOR ALL VARIABLES::

train_model <- lm(percent_gdp ~ 
                  dimension 
                  + indicator_id
                  + iso3 
                  + years
                  + hdi_value
                    , data = train)
summary(train_model)
## 
## Call:
## lm(formula = percent_gdp ~ dimension + indicator_id + iso3 + 
##     years + hdi_value, data = train)
## 
## Residuals:
##     Min      1Q  Median      3Q     Max 
## -23.991  -1.580   0.014   1.375  43.682 
## 
## Coefficients: (13 not defined because of singularities)
##                                               Estimate Std. Error  t value
## (Intercept)                                  3.251e+01  3.749e-01   86.731
## dimensionDemography                          2.328e-01  3.550e-01    0.656
## dimensionEducation                           1.670e-01  3.659e-01    0.456
## dimensionEnvironmental sustainability        1.802e-01  3.591e-01    0.502
## dimensionGender                              2.058e-01  3.679e-01    0.559
## dimensionHealth                              1.728e-01  3.579e-01    0.483
## dimensionHuman Security                      2.347e-01  3.882e-01    0.605
## dimensionIncome/composition of resources     2.112e-01  3.594e-01    0.588
## dimensionInequality                          1.058e-01  3.773e-01    0.280
## dimensionMobility and communication          1.449e-02  3.680e-01    0.039
## dimensionPoverty                            -1.365e-01  5.682e-01   -0.240
## dimensionSocio-economic sustainability       2.138e-01  3.641e-01    0.587
## dimensionTrade and financial flows           3.174e-01  3.551e-01    0.894
## dimensionWork, employment and vulnerability  1.756e-01  3.599e-01    0.488
## indicator_id23906                            6.981e-02  1.341e-01    0.521
## indicator_id24006                            8.851e-02  1.338e-01    0.661
## indicator_id24106                            7.218e-02  1.332e-01    0.542
## indicator_id24206                            2.401e-02  1.333e-01    0.180
## indicator_id27706                            3.325e-03  1.433e-01    0.023
## indicator_id31706                           -7.748e-02  1.404e-01   -0.552
## indicator_id36806                           -5.661e-02  1.567e-01   -0.361
## indicator_id38406                            2.729e-01  6.296e-01    0.433
## indicator_id38506                           -1.013e-01  6.442e-01   -0.157
## indicator_id38606                           -4.753e-01  6.366e-01   -0.747
## indicator_id43006                            1.537e-02  1.267e-01    0.121
## indicator_id43606                            2.598e-01  1.439e-01    1.806
## indicator_id44206                           -4.961e-02  9.428e-02   -0.526
## indicator_id45106                            3.647e-02  9.411e-02    0.388
## indicator_id45806                           -1.710e-01  1.953e-01   -0.876
## indicator_id46006                            2.227e-01  1.439e-01    1.547
## indicator_id46106                           -1.221e-01  1.688e-01   -0.723
## indicator_id46206                            9.423e-02  1.539e-01    0.612
## indicator_id47906                           -1.091e-02  1.595e-01   -0.068
## indicator_id48706                            3.959e-02  1.271e-01    0.311
## indicator_id48806                            8.502e-02  1.274e-01    0.667
## indicator_id49006                            5.076e-02  1.487e-01    0.341
## indicator_id52306                            1.695e-01  1.965e-01    0.862
## indicator_id52606                           -3.357e-01  9.849e-02   -3.409
## indicator_id53506                           -1.935e-01  9.549e-02   -2.026
## indicator_id57206                            1.577e-01  1.053e-01    1.498
## indicator_id57506                            4.985e-03  1.052e-01    0.047
## indicator_id57806                            9.452e-02  1.059e-01    0.892
## indicator_id57906                            3.321e-02  1.062e-01    0.313
## indicator_id58006                            6.102e-02  1.135e-01    0.538
## indicator_id61006                           -6.410e-02  1.955e-01   -0.328
## indicator_id63106                            7.754e-03  9.504e-02    0.082
## indicator_id63206                            1.121e-01  1.474e-01    0.761
## indicator_id63306                            4.851e-02  1.520e-01    0.319
## indicator_id63406                           -1.372e-02  1.561e-01   -0.088
## indicator_id64306                            6.639e-02  1.055e-01    0.630
## indicator_id64406                            7.465e-02  1.056e-01    0.707
## indicator_id65606                           -4.188e-02  1.278e-01   -0.328
## indicator_id68606                           -9.037e-02  1.667e-01   -0.542
## indicator_id69206                            5.850e-02  1.057e-01    0.554
## indicator_id69706                            5.802e-02  1.309e-01    0.443
## indicator_id71406                           -3.422e-02  2.015e-01   -0.170
## indicator_id71506                            8.403e-02  1.949e-01    0.431
## indicator_id71606                           -3.786e-02  2.033e-01   -0.186
## indicator_id73506                            1.151e-01  2.028e-01    0.568
## indicator_id89006                           -5.037e-02  1.574e-01   -0.320
## indicator_id97106                            1.415e-01  2.660e-01    0.532
## indicator_id99106                           -6.969e-02  1.024e-01   -0.681
## indicator_id100806                          -4.637e-03  1.389e-01   -0.033
## indicator_id101006                           3.322e-01  6.342e-01    0.524
## indicator_id101406                           2.105e-01  2.388e-01    0.881
## indicator_id101606                          -1.616e-02  2.016e-01   -0.080
## indicator_id101706                           4.661e-02  2.031e-01    0.229
## indicator_id101806                           6.198e-02  1.946e-01    0.319
## indicator_id102006                          -6.213e-01  6.462e-01   -0.961
## indicator_id103006                           1.053e-02  1.318e-01    0.080
## indicator_id103206                           6.989e-02  1.054e-01    0.663
## indicator_id103606                           6.974e-02  1.101e-01    0.633
## indicator_id103706                           5.754e-02  1.322e-01    0.435
## indicator_id110806                           7.090e-02  1.864e-01    0.380
## indicator_id110906                           6.948e-02  1.266e-01    0.549
## indicator_id111106                           1.672e-01  1.400e-01    1.194
## indicator_id111306                          -2.256e-01  9.999e-02   -2.256
## indicator_id112506                           6.108e-02  2.426e-01    0.252
## indicator_id112606                                  NA         NA       NA
## indicator_id117806                          -1.932e-01  6.553e-01   -0.295
## indicator_id117906                          -2.226e-01  6.614e-01   -0.337
## indicator_id118006                          -2.640e-01  6.583e-01   -0.401
## indicator_id120606                           1.129e-01  1.060e-01    1.065
## indicator_id121106                           8.586e-02  1.061e-01    0.809
## indicator_id121206                           3.076e-02  9.495e-02    0.324
## indicator_id122006                           1.059e-02  9.472e-02    0.112
## indicator_id123306                           8.160e-02  1.334e-01    0.612
## indicator_id123406                           1.759e-01  1.336e-01    1.317
## indicator_id123506                          -7.946e-02  1.570e-01   -0.506
## indicator_id123606                          -3.379e-02  1.617e-01   -0.209
## indicator_id127606                           1.704e-01  1.279e-01    1.333
## indicator_id128106                          -1.560e-01  2.214e-01   -0.705
## indicator_id132706                           6.687e-02  9.465e-02    0.707
## indicator_id132806                                  NA         NA       NA
## indicator_id133006                           6.533e-02  1.532e-01    0.426
## indicator_id133206                                  NA         NA       NA
## indicator_id135006                          -2.515e-02  2.041e-01   -0.123
## indicator_id136706                           3.044e-02  1.294e-01    0.235
## indicator_id136906                          -4.834e-02  1.585e-01   -0.305
## indicator_id137006                          -6.626e-02  1.582e-01   -0.419
## indicator_id137506                           2.383e-01  3.554e-01    0.671
## indicator_id137906                           3.207e-03  1.590e-01    0.020
## indicator_id138806                                  NA         NA       NA
## indicator_id140606                           6.197e-02  1.272e-01    0.487
## indicator_id141706                          -9.172e-03  1.147e-01   -0.080
## indicator_id142506                          -6.808e-01  6.496e-01   -1.048
## indicator_id143306                                  NA         NA       NA
## indicator_id146206                                  NA         NA       NA
## indicator_id147206                                  NA         NA       NA
## indicator_id147906                           3.489e-01  1.768e-01    1.973
## indicator_id148206                          -8.340e-02  1.278e-01   -0.653
## indicator_id148306                           3.442e-02  1.269e-01    0.271
## indicator_id149206                           3.593e-03  1.821e-01    0.020
## indicator_id150606                           8.200e-02  1.273e-01    0.644
## indicator_id150706                                  NA         NA       NA
## indicator_id153706                           1.070e-01  4.612e-01    0.232
## indicator_id163906                           5.606e-02  1.382e-01    0.406
## indicator_id164406                          -1.667e-01  1.582e-01   -1.054
## indicator_id169706                          -2.407e-03  1.483e-01   -0.016
## indicator_id169806                           6.530e-02  1.486e-01    0.440
## indicator_id170006                           7.239e-02  1.391e-01    0.520
## indicator_id174206                          -2.584e-01  1.680e-01   -1.539
## indicator_id174306                           9.586e-02  1.367e-01    0.701
## indicator_id174406                           9.361e-03  1.286e-01    0.073
## indicator_id174506                           2.331e-01  3.622e-01    0.644
## indicator_id174606                           9.440e-02  3.718e-01    0.254
## indicator_id175006                           3.766e-01  2.103e-01    1.791
## indicator_id175106                           3.284e-02  1.488e-01    0.221
## indicator_id175206                          -1.089e-01  2.396e-01   -0.454
## indicator_id175506                          -1.627e-02  2.338e-01   -0.070
## indicator_id175606                          -2.498e-01  3.006e-01   -0.831
## indicator_id175706                          -8.037e-02  2.964e-01   -0.271
## indicator_id176806                           8.172e-01  5.421e-01    1.508
## indicator_id176906                           1.047e+00  5.651e-01    1.853
## indicator_id177006                           9.517e-01  6.063e-01    1.570
## indicator_id177106                          -7.090e-02  2.013e-01   -0.352
## indicator_id177206                          -1.004e-01  2.002e-01   -0.501
## indicator_id177706                          -7.430e-03  1.694e-01   -0.044
## indicator_id178306                          -2.158e-02  1.507e-01   -0.143
## indicator_id179406                           1.711e-01  2.013e-01    0.850
## indicator_id179706                          -1.186e-03  1.731e-01   -0.007
## indicator_id181206                                  NA         NA       NA
## indicator_id181606                                  NA         NA       NA
## indicator_id181706                                  NA         NA       NA
## indicator_id181806                           2.427e-04  1.167e-01    0.002
## indicator_id182106                          -1.551e-01  2.259e-01   -0.687
## indicator_id182206                                  NA         NA       NA
## indicator_id183406                                  NA         NA       NA
## iso3AGO                                     -2.080e+01  2.390e-01  -87.027
## iso3ALB                                     -1.071e+00  1.618e-01   -6.615
## iso3AND                                     -2.659e+01  2.301e-01 -115.592
## iso3ARE                                     -2.568e+01  4.733e-01  -54.251
## iso3ARG                                     -2.073e+01  1.610e-01 -128.720
## iso3ARM                                     -4.080e+00  1.607e-01  -25.395
## iso3ATG                                     -2.633e+01  1.793e-01 -146.783
## iso3AUS                                     -2.527e+01  1.635e-01 -154.562
## iso3AUT                                     -2.638e+01  1.626e-01 -162.208
## iso3AZE                                     -1.616e+01  1.621e-01  -99.653
## iso3BDI                                      1.592e+01  1.630e-01   97.686
## iso3BEL                                     -2.663e+01  1.673e-01 -159.190
## iso3BEN                                     -2.612e-01  1.610e-01   -1.622
## iso3BFA                                      6.984e+00  1.635e-01   42.712
## iso3BGD                                     -7.707e+00  1.619e-01  -47.601
## iso3BGR                                     -1.934e+01  1.605e-01 -120.516
## iso3BHR                                     -2.584e+01  2.143e-01 -120.593
## iso3BHS                                     -2.597e+01  1.697e-01 -153.063
## iso3BIH                                     -1.705e+01  1.705e-01 -100.004
## iso3BLR                                     -1.665e+01  1.631e-01 -102.131
## iso3BLZ                                     -1.261e+01  1.641e-01  -76.856
## iso3BOL                                     -1.380e+01  1.616e-01  -85.432
## iso3BRA                                     -2.241e+01  1.605e-01 -139.595
## iso3BRB                                     -2.626e+01  1.656e-01 -158.620
## iso3BRN                                     -2.723e+01  1.660e-01 -164.093
## iso3BTN                                     -5.590e+00  1.678e-01  -33.321
## iso3BWA                                     -2.520e+01  1.619e-01 -155.615
## iso3CAF                                      2.254e+01  1.642e-01  137.249
## iso3CAN                                     -2.486e+01  2.199e-01 -113.045
## iso3CHE                                     -2.718e+01  1.628e-01 -166.923
## iso3CHL                                     -2.297e+01  1.610e-01 -142.647
## iso3CHN                                     -1.521e+01  1.625e-01  -93.591
## iso3CMR                                     -1.128e+01  1.622e-01  -69.562
## iso3COG                                     -2.182e+01  1.633e-01 -133.605
## iso3COL                                     -1.881e+01  1.608e-01 -116.963
## iso3CRI                                     -1.926e+01  1.611e-01 -119.574
## iso3CUB                                     -2.253e+01  1.684e-01 -133.762
## iso3CYP                                     -2.484e+01  1.614e-01 -153.892
## iso3DEU                                     -2.711e+01  1.645e-01 -164.818
## iso3DJI                                     -2.629e+01  2.012e-01 -130.664
## iso3DMA                                     -1.226e+01  1.932e-01  -63.461
## iso3DNK                                     -2.624e+01  1.624e-01 -161.566
## iso3DOM                                     -2.065e+01  1.626e-01 -127.048
## iso3DZA                                     -1.801e+01  1.633e-01 -110.295
## iso3ECU                                     -1.495e+01  1.618e-01  -92.417
## iso3EGY                                     -1.372e+01  1.610e-01  -85.264
## iso3ERI                                     -9.337e+00  1.972e-01  -47.347
## iso3ESP                                     -2.448e+01  1.660e-01 -147.496
## iso3EST                                     -2.385e+01  1.662e-01 -143.504
## iso3ETH                                      1.867e+01  1.646e-01  113.435
## iso3FIN                                     -2.497e+01  1.624e-01 -153.770
## iso3FJI                                     -1.352e+01  1.653e-01  -81.774
## iso3FRA                                     -2.609e+01  1.613e-01 -161.741
## iso3FSM                                     -1.314e+00  1.948e-01   -6.746
## iso3GAB                                     -2.204e+01  1.781e-01 -123.760
## iso3GBR                                     -2.736e+01  1.622e-01 -168.725
## iso3GEO                                     -9.987e+00  1.626e-01  -61.407
## iso3GHA                                      4.639e+00  1.614e-01   28.737
## iso3GIN                                     -8.087e+00  1.649e-01  -49.054
## iso3GMB                                     -3.402e+00  1.829e-01  -18.603
## iso3GNB                                      1.998e+01  1.709e-01  116.940
## iso3GNQ                                     -2.502e+01  2.021e-01 -123.781
## iso3GRC                                     -2.306e+01  1.673e-01 -137.785
## iso3GRD                                     -2.185e+01  1.786e-01 -122.387
## iso3GTM                                     -1.460e+01  1.729e-01  -84.451
## iso3GUY                                      5.825e+00  1.631e-01   35.715
## iso3HND                                     -1.267e+01  1.615e-01  -78.463
## iso3HRV                                     -2.241e+01  1.648e-01 -136.024
## iso3HUN                                     -2.272e+01  1.649e-01 -137.811
## iso3IDN                                     -1.227e+01  2.007e-01  -61.166
## iso3IND                                     -6.697e+00  1.616e-01  -41.449
## iso3IRL                                     -2.574e+01  1.665e-01 -154.602
## iso3IRN                                     -1.939e+01  1.631e-01 -118.876
## iso3ISL                                     -2.025e+01  1.728e-01 -117.199
## iso3ISR                                     -2.603e+01  1.668e-01 -156.073
## iso3ITA                                     -2.566e+01  1.624e-01 -157.964
## iso3JAM                                     -2.091e+01  1.655e-01 -126.374
## iso3JOR                                     -2.448e+01  1.624e-01 -150.797
## iso3JPN                                     -2.665e+01  1.694e-01 -157.352
## iso3KAZ                                     -2.038e+01  1.622e-01 -125.696
## iso3KEN                                      1.245e+00  1.620e-01    7.682
## iso3KGZ                                      9.386e-02  1.622e-01    0.579
## iso3KHM                                      8.365e+00  1.645e-01   50.843
## iso3KIR                                     -3.749e+00  1.864e-01  -20.117
## iso3KNA                                     -2.616e+01  1.944e-01 -134.587
## iso3KWT                                     -2.572e+01  2.165e-01 -118.798
## iso3LAO                                      8.603e+00  1.616e-01   53.248
## iso3LBN                                     -2.252e+01  1.688e-01 -133.414
## iso3LBR                                      2.814e+01  1.667e-01  168.780
## iso3LBY                                     -2.491e+01  2.491e-01  -99.975
## iso3LCA                                     -2.368e+01  1.669e-01 -141.845
## iso3LKA                                     -1.384e+01  1.621e-01  -85.394
## iso3LSO                                     -2.113e+01  1.628e-01 -129.803
## iso3LTU                                     -2.258e+01  1.655e-01 -136.396
## iso3LUX                                     -2.706e+01  1.680e-01 -161.048
## iso3LVA                                     -2.312e+01  1.665e-01 -138.862
## iso3MAR                                     -1.341e+01  1.613e-01  -83.118
## iso3MDG                                     -4.156e-01  1.654e-01   -2.513
## iso3MDV                                     -2.037e+01  1.696e-01 -120.133
## iso3MEX                                     -2.423e+01  1.591e-01 -152.262
## iso3MHL                                     -1.159e+01  2.643e-01  -43.840
## iso3MKD                                     -1.622e+01  1.639e-01  -98.960
## iso3MLI                                      1.016e+01  1.625e-01   62.517
## iso3MLT                                     -2.614e+01  1.622e-01 -161.177
## iso3MMR                                      1.171e+01  1.774e-01   65.996
## iso3MNE                                     -1.689e+01  1.773e-01  -95.245
## iso3MNG                                     -7.676e+00  1.614e-01  -47.570
## iso3MOZ                                      1.007e-01  1.631e-01    0.617
## iso3MRT                                      3.988e-01  1.645e-01    2.424
## iso3MUS                                     -2.200e+01  1.621e-01 -135.783
## iso3MWI                                      5.982e+00  1.624e-01   36.826
## iso3MYS                                     -1.799e+01  1.626e-01 -110.642
## iso3NAM                                     -1.905e+01  1.626e-01 -117.118
## iso3NGA                                      8.931e-01  1.669e-01    5.353
## iso3NIC                                     -8.531e+00  1.659e-01  -51.437
## iso3NLD                                     -2.590e+01  1.632e-01 -158.694
## iso3NOR                                     -2.623e+01  1.626e-01 -161.337
## iso3NPL                                      9.439e+00  1.621e-01   58.245
## iso3NZL                                     -2.030e+01  1.690e-01 -120.071
## iso3OMN                                     -2.478e+01  2.157e-01 -114.911
## iso3PAK                                     -3.500e+00  1.608e-01  -21.768
## iso3PAN                                     -2.297e+01  1.623e-01 -141.504
## iso3PER                                     -1.994e+01  1.612e-01 -123.683
## iso3PHL                                     -1.400e+01  1.620e-01  -86.417
## iso3PLW                                     -2.288e+01  2.062e-01 -111.001
## iso3PNG                                     -9.276e-01  1.725e-01   -5.378
## iso3POL                                     -2.429e+01  1.661e-01 -146.264
## iso3PRT                                     -2.478e+01  1.666e-01 -148.710
## iso3PRY                                     -8.570e+00  1.615e-01  -53.062
## iso3QAT                                     -2.681e+01  1.761e-01 -152.262
## iso3ROU                                     -1.766e+01  1.615e-01 -109.394
## iso3RUS                                     -2.245e+01  1.637e-01 -137.136
## iso3RWA                                      5.536e+00  1.819e-01   30.428
## iso3SAU                                     -2.455e+01  1.651e-01 -148.702
## iso3SDN                                      8.009e+00  1.644e-01   48.706
## iso3SEN                                     -1.092e+01  1.618e-01  -67.526
## iso3SGP                                     -2.816e+01  1.651e-01 -170.508
## iso3SLB                                      7.802e+00  2.045e-01   38.154
## iso3SLE                                      2.490e+01  1.644e-01  151.458
## iso3SLV                                     -1.603e+01  1.606e-01  -99.825
## iso3SOM                                      3.271e+01  7.463e-01   43.837
## iso3SRB                                     -1.526e+01  1.682e-01  -90.749
## iso3STP                                     -1.421e+01  1.996e-01  -71.173
## iso3SUR                                     -1.770e+01  1.651e-01 -107.179
## iso3SVK                                     -2.354e+01  1.661e-01 -141.704
## iso3SVN                                     -2.500e+01  1.662e-01 -150.423
## iso3SWE                                     -2.637e+01  1.626e-01 -162.172
## iso3SYC                                     -2.499e+01  1.808e-01 -138.192
## iso3SYR                                     -3.791e+00  1.909e-01  -19.857
## iso3TCD                                      1.922e+01  1.668e-01  115.196
## iso3TGO                                      9.117e+00  1.626e-01   56.081
## iso3THA                                     -1.830e+01  1.607e-01 -113.862
## iso3TJK                                     -1.510e+00  1.643e-01   -9.191
## iso3TKM                                     -9.498e+00  1.954e-01  -48.613
## iso3TLS                                     -3.262e+00  1.822e-01  -17.903
## iso3TON                                     -5.709e+00  1.664e-01  -34.311
## iso3TTO                                     -2.715e+01  1.636e-01 -165.915
## iso3TUN                                     -1.712e+01  1.610e-01 -106.359
## iso3TUR                                     -1.740e+01  1.617e-01 -107.604
## iso3TUV                                     -3.729e+00  2.404e-01  -15.515
## iso3UGA                                      3.744e+00  1.627e-01   23.003
## iso3UKR                                     -1.554e+01  1.612e-01  -96.425
## iso3URY                                     -1.934e+01  1.616e-01 -119.681
## iso3UZB                                     -2.640e+00  1.679e-01  -15.723
## iso3VCT                                     -2.005e+01  1.707e-01 -117.498
## iso3VEN                                     -2.347e+01  1.667e-01 -140.814
## iso3VNM                                     -5.914e+00  2.026e-01  -29.184
## iso3VUT                                     -4.403e+00  1.759e-01  -25.033
## iso3YEM                                     -1.382e+01  1.643e-01  -84.076
## iso3ZAF                                     -2.507e+01  1.623e-01 -154.413
## iso3ZMB                                     -1.471e+01  1.643e-01  -89.533
## iso3ZWE                                     -1.311e+01  1.637e-01  -80.095
## years1991                                   -1.966e-01  8.061e-02   -2.440
## years1992                                   -2.810e-01  8.650e-02   -3.249
## years1993                                   -2.516e-01  8.470e-02   -2.970
## years1994                                   -5.234e-01  8.489e-02   -6.165
## years1995                                   -7.921e-01  6.630e-02  -11.948
## years1996                                   -1.027e+00  8.039e-02  -12.772
## years1997                                   -1.529e+00  7.976e-02  -19.169
## years1998                                   -1.773e+00  7.968e-02  -22.250
## years1999                                   -2.410e+00  7.917e-02  -30.446
## years2000                                   -3.389e+00  6.400e-02  -52.955
## years2001                                   -3.716e+00  7.587e-02  -48.980
## years2002                                   -3.860e+00  7.528e-02  -51.272
## years2003                                   -4.128e+00  7.527e-02  -54.850
## years2004                                   -4.605e+00  7.514e-02  -61.288
## years2005                                   -4.875e+00  6.359e-02  -76.668
## years2006                                   -5.590e+00  6.672e-02  -83.776
## years2007                                   -5.896e+00  6.670e-02  -88.389
## years2008                                   -5.909e+00  6.681e-02  -88.452
## years2009                                   -5.984e+00  6.672e-02  -89.687
## years2010                                   -6.271e+00  6.268e-02 -100.052
## years2011                                   -6.347e+00  6.333e-02 -100.231
## years2012                                   -6.445e+00  6.342e-02 -101.636
## years2013                                   -6.623e+00  6.339e-02 -104.477
## years2014                                   -6.738e+00  6.341e-02 -106.263
## years2015                                   -6.747e+00  6.353e-02 -106.202
## years2016                                   -6.961e+00  6.560e-02 -106.106
## hdi_value                                    2.012e-06  2.280e-06    0.882
##                                             Pr(>|t|)    
## (Intercept)                                  < 2e-16 ***
## dimensionDemography                         0.511993    
## dimensionEducation                          0.648115    
## dimensionEnvironmental sustainability       0.615895    
## dimensionGender                             0.576022    
## dimensionHealth                             0.629336    
## dimensionHuman Security                     0.545499    
## dimensionIncome/composition of resources    0.556667    
## dimensionInequality                         0.779107    
## dimensionMobility and communication         0.968602    
## dimensionPoverty                            0.810141    
## dimensionSocio-economic sustainability      0.557133    
## dimensionTrade and financial flows          0.371400    
## dimensionWork, employment and vulnerability 0.625650    
## indicator_id23906                           0.602606    
## indicator_id24006                           0.508316    
## indicator_id24106                           0.587813    
## indicator_id24206                           0.857068    
## indicator_id27706                           0.981492    
## indicator_id31706                           0.581102    
## indicator_id36806                           0.717872    
## indicator_id38406                           0.664670    
## indicator_id38506                           0.875021    
## indicator_id38606                           0.455323    
## indicator_id43006                           0.903421    
## indicator_id43606                           0.070973 .  
## indicator_id44206                           0.598788    
## indicator_id45106                           0.698335    
## indicator_id45806                           0.381257    
## indicator_id46006                           0.121772    
## indicator_id46106                           0.469469    
## indicator_id46206                           0.540224    
## indicator_id47906                           0.945471    
## indicator_id48706                           0.755490    
## indicator_id48806                           0.504469    
## indicator_id49006                           0.732895    
## indicator_id52306                           0.388609    
## indicator_id52606                           0.000653 ***
## indicator_id53506                           0.042754 *  
## indicator_id57206                           0.134235    
## indicator_id57506                           0.962207    
## indicator_id57806                           0.372275    
## indicator_id57906                           0.754569    
## indicator_id58006                           0.590695    
## indicator_id61006                           0.742944    
## indicator_id63106                           0.934974    
## indicator_id63206                           0.446720    
## indicator_id63306                           0.749557    
## indicator_id63406                           0.929975    
## indicator_id64306                           0.528988    
## indicator_id64406                           0.479809    
## indicator_id65606                           0.743051    
## indicator_id68606                           0.587658    
## indicator_id69206                           0.579800    
## indicator_id69706                           0.657591    
## indicator_id71406                           0.865125    
## indicator_id71506                           0.666317    
## indicator_id71606                           0.852253    
## indicator_id73506                           0.570239    
## indicator_id89006                           0.748995    
## indicator_id97106                           0.594707    
## indicator_id99106                           0.496026    
## indicator_id100806                          0.973368    
## indicator_id101006                          0.600380    
## indicator_id101406                          0.378083    
## indicator_id101606                          0.936128    
## indicator_id101706                          0.818519    
## indicator_id101806                          0.750098    
## indicator_id102006                          0.336372    
## indicator_id103006                          0.936330    
## indicator_id103206                          0.507469    
## indicator_id103606                          0.526566    
## indicator_id103706                          0.663346    
## indicator_id110806                          0.703732    
## indicator_id110906                          0.583154    
## indicator_id111106                          0.232362    
## indicator_id111306                          0.024084 *  
## indicator_id112506                          0.801241    
## indicator_id112606                                NA    
## indicator_id117806                          0.768184    
## indicator_id117906                          0.736479    
## indicator_id118006                          0.688388    
## indicator_id120606                          0.286749    
## indicator_id121106                          0.418377    
## indicator_id121206                          0.745978    
## indicator_id122006                          0.910997    
## indicator_id123306                          0.540631    
## indicator_id123406                          0.187762    
## indicator_id123506                          0.612820    
## indicator_id123606                          0.834447    
## indicator_id127606                          0.182679    
## indicator_id128106                          0.481043    
## indicator_id132706                          0.479876    
## indicator_id132806                                NA    
## indicator_id133006                          0.669781    
## indicator_id133206                                NA    
## indicator_id135006                          0.901905    
## indicator_id136706                          0.814013    
## indicator_id136906                          0.760335    
## indicator_id137006                          0.675324    
## indicator_id137506                          0.502438    
## indicator_id137906                          0.983906    
## indicator_id138806                                NA    
## indicator_id140606                          0.626194    
## indicator_id141706                          0.936251    
## indicator_id142506                          0.294628    
## indicator_id143306                                NA    
## indicator_id146206                                NA    
## indicator_id147206                                NA    
## indicator_id147906                          0.048488 *  
## indicator_id148206                          0.513881    
## indicator_id148306                          0.786198    
## indicator_id149206                          0.984260    
## indicator_id150606                          0.519492    
## indicator_id150706                                NA    
## indicator_id153706                          0.816573    
## indicator_id163906                          0.685005    
## indicator_id164406                          0.291877    
## indicator_id169706                          0.987046    
## indicator_id169806                          0.660223    
## indicator_id170006                          0.602859    
## indicator_id174206                          0.123897    
## indicator_id174306                          0.483056    
## indicator_id174406                          0.941965    
## indicator_id174506                          0.519818    
## indicator_id174606                          0.799567    
## indicator_id175006                          0.073303 .  
## indicator_id175106                          0.825318    
## indicator_id175206                          0.649524    
## indicator_id175506                          0.944507    
## indicator_id175606                          0.405900    
## indicator_id175706                          0.786266    
## indicator_id176806                          0.131675    
## indicator_id176906                          0.063856 .  
## indicator_id177006                          0.116494    
## indicator_id177106                          0.724617    
## indicator_id177206                          0.616092    
## indicator_id177706                          0.965007    
## indicator_id178306                          0.886178    
## indicator_id179406                          0.395471    
## indicator_id179706                          0.994534    
## indicator_id181206                                NA    
## indicator_id181606                                NA    
## indicator_id181706                                NA    
## indicator_id181806                          0.998341    
## indicator_id182106                          0.492336    
## indicator_id182206                                NA    
## indicator_id183406                                NA    
## iso3AGO                                      < 2e-16 ***
## iso3ALB                                     3.72e-11 ***
## iso3AND                                      < 2e-16 ***
## iso3ARE                                      < 2e-16 ***
## iso3ARG                                      < 2e-16 ***
## iso3ARM                                      < 2e-16 ***
## iso3ATG                                      < 2e-16 ***
## iso3AUS                                      < 2e-16 ***
## iso3AUT                                      < 2e-16 ***
## iso3AZE                                      < 2e-16 ***
## iso3BDI                                      < 2e-16 ***
## iso3BEL                                      < 2e-16 ***
## iso3BEN                                     0.104827    
## iso3BFA                                      < 2e-16 ***
## iso3BGD                                      < 2e-16 ***
## iso3BGR                                      < 2e-16 ***
## iso3BHR                                      < 2e-16 ***
## iso3BHS                                      < 2e-16 ***
## iso3BIH                                      < 2e-16 ***
## iso3BLR                                      < 2e-16 ***
## iso3BLZ                                      < 2e-16 ***
## iso3BOL                                      < 2e-16 ***
## iso3BRA                                      < 2e-16 ***
## iso3BRB                                      < 2e-16 ***
## iso3BRN                                      < 2e-16 ***
## iso3BTN                                      < 2e-16 ***
## iso3BWA                                      < 2e-16 ***
## iso3CAF                                      < 2e-16 ***
## iso3CAN                                      < 2e-16 ***
## iso3CHE                                      < 2e-16 ***
## iso3CHL                                      < 2e-16 ***
## iso3CHN                                      < 2e-16 ***
## iso3CMR                                      < 2e-16 ***
## iso3COG                                      < 2e-16 ***
## iso3COL                                      < 2e-16 ***
## iso3CRI                                      < 2e-16 ***
## iso3CUB                                      < 2e-16 ***
## iso3CYP                                      < 2e-16 ***
## iso3DEU                                      < 2e-16 ***
## iso3DJI                                      < 2e-16 ***
## iso3DMA                                      < 2e-16 ***
## iso3DNK                                      < 2e-16 ***
## iso3DOM                                      < 2e-16 ***
## iso3DZA                                      < 2e-16 ***
## iso3ECU                                      < 2e-16 ***
## iso3EGY                                      < 2e-16 ***
## iso3ERI                                      < 2e-16 ***
## iso3ESP                                      < 2e-16 ***
## iso3EST                                      < 2e-16 ***
## iso3ETH                                      < 2e-16 ***
## iso3FIN                                      < 2e-16 ***
## iso3FJI                                      < 2e-16 ***
## iso3FRA                                      < 2e-16 ***
## iso3FSM                                     1.52e-11 ***
## iso3GAB                                      < 2e-16 ***
## iso3GBR                                      < 2e-16 ***
## iso3GEO                                      < 2e-16 ***
## iso3GHA                                      < 2e-16 ***
## iso3GIN                                      < 2e-16 ***
## iso3GMB                                      < 2e-16 ***
## iso3GNB                                      < 2e-16 ***
## iso3GNQ                                      < 2e-16 ***
## iso3GRC                                      < 2e-16 ***
## iso3GRD                                      < 2e-16 ***
## iso3GTM                                      < 2e-16 ***
## iso3GUY                                      < 2e-16 ***
## iso3HND                                      < 2e-16 ***
## iso3HRV                                      < 2e-16 ***
## iso3HUN                                      < 2e-16 ***
## iso3IDN                                      < 2e-16 ***
## iso3IND                                      < 2e-16 ***
## iso3IRL                                      < 2e-16 ***
## iso3IRN                                      < 2e-16 ***
## iso3ISL                                      < 2e-16 ***
## iso3ISR                                      < 2e-16 ***
## iso3ITA                                      < 2e-16 ***
## iso3JAM                                      < 2e-16 ***
## iso3JOR                                      < 2e-16 ***
## iso3JPN                                      < 2e-16 ***
## iso3KAZ                                      < 2e-16 ***
## iso3KEN                                     1.58e-14 ***
## iso3KGZ                                     0.562686    
## iso3KHM                                      < 2e-16 ***
## iso3KIR                                      < 2e-16 ***
## iso3KNA                                      < 2e-16 ***
## iso3KWT                                      < 2e-16 ***
## iso3LAO                                      < 2e-16 ***
## iso3LBN                                      < 2e-16 ***
## iso3LBR                                      < 2e-16 ***
## iso3LBY                                      < 2e-16 ***
## iso3LCA                                      < 2e-16 ***
## iso3LKA                                      < 2e-16 ***
## iso3LSO                                      < 2e-16 ***
## iso3LTU                                      < 2e-16 ***
## iso3LUX                                      < 2e-16 ***
## iso3LVA                                      < 2e-16 ***
## iso3MAR                                      < 2e-16 ***
## iso3MDG                                     0.011973 *  
## iso3MDV                                      < 2e-16 ***
## iso3MEX                                      < 2e-16 ***
## iso3MHL                                      < 2e-16 ***
## iso3MKD                                      < 2e-16 ***
## iso3MLI                                      < 2e-16 ***
## iso3MLT                                      < 2e-16 ***
## iso3MMR                                      < 2e-16 ***
## iso3MNE                                      < 2e-16 ***
## iso3MNG                                      < 2e-16 ***
## iso3MOZ                                     0.537057    
## iso3MRT                                     0.015370 *  
## iso3MUS                                      < 2e-16 ***
## iso3MWI                                      < 2e-16 ***
## iso3MYS                                      < 2e-16 ***
## iso3NAM                                      < 2e-16 ***
## iso3NGA                                     8.68e-08 ***
## iso3NIC                                      < 2e-16 ***
## iso3NLD                                      < 2e-16 ***
## iso3NOR                                      < 2e-16 ***
## iso3NPL                                      < 2e-16 ***
## iso3NZL                                      < 2e-16 ***
## iso3OMN                                      < 2e-16 ***
## iso3PAK                                      < 2e-16 ***
## iso3PAN                                      < 2e-16 ***
## iso3PER                                      < 2e-16 ***
## iso3PHL                                      < 2e-16 ***
## iso3PLW                                      < 2e-16 ***
## iso3PNG                                     7.53e-08 ***
## iso3POL                                      < 2e-16 ***
## iso3PRT                                      < 2e-16 ***
## iso3PRY                                      < 2e-16 ***
## iso3QAT                                      < 2e-16 ***
## iso3ROU                                      < 2e-16 ***
## iso3RUS                                      < 2e-16 ***
## iso3RWA                                      < 2e-16 ***
## iso3SAU                                      < 2e-16 ***
## iso3SDN                                      < 2e-16 ***
## iso3SEN                                      < 2e-16 ***
## iso3SGP                                      < 2e-16 ***
## iso3SLB                                      < 2e-16 ***
## iso3SLE                                      < 2e-16 ***
## iso3SLV                                      < 2e-16 ***
## iso3SOM                                      < 2e-16 ***
## iso3SRB                                      < 2e-16 ***
## iso3STP                                      < 2e-16 ***
## iso3SUR                                      < 2e-16 ***
## iso3SVK                                      < 2e-16 ***
## iso3SVN                                      < 2e-16 ***
## iso3SWE                                      < 2e-16 ***
## iso3SYC                                      < 2e-16 ***
## iso3SYR                                      < 2e-16 ***
## iso3TCD                                      < 2e-16 ***
## iso3TGO                                      < 2e-16 ***
## iso3THA                                      < 2e-16 ***
## iso3TJK                                      < 2e-16 ***
## iso3TKM                                      < 2e-16 ***
## iso3TLS                                      < 2e-16 ***
## iso3TON                                      < 2e-16 ***
## iso3TTO                                      < 2e-16 ***
## iso3TUN                                      < 2e-16 ***
## iso3TUR                                      < 2e-16 ***
## iso3TUV                                      < 2e-16 ***
## iso3UGA                                      < 2e-16 ***
## iso3UKR                                      < 2e-16 ***
## iso3URY                                      < 2e-16 ***
## iso3UZB                                      < 2e-16 ***
## iso3VCT                                      < 2e-16 ***
## iso3VEN                                      < 2e-16 ***
## iso3VNM                                      < 2e-16 ***
## iso3VUT                                      < 2e-16 ***
## iso3YEM                                      < 2e-16 ***
## iso3ZAF                                      < 2e-16 ***
## iso3ZMB                                      < 2e-16 ***
## iso3ZWE                                      < 2e-16 ***
## years1991                                   0.014708 *  
## years1992                                   0.001160 ** 
## years1993                                   0.002975 ** 
## years1994                                   7.06e-10 ***
## years1995                                    < 2e-16 ***
## years1996                                    < 2e-16 ***
## years1997                                    < 2e-16 ***
## years1998                                    < 2e-16 ***
## years1999                                    < 2e-16 ***
## years2000                                    < 2e-16 ***
## years2001                                    < 2e-16 ***
## years2002                                    < 2e-16 ***
## years2003                                    < 2e-16 ***
## years2004                                    < 2e-16 ***
## years2005                                    < 2e-16 ***
## years2006                                    < 2e-16 ***
## years2007                                    < 2e-16 ***
## years2008                                    < 2e-16 ***
## years2009                                    < 2e-16 ***
## years2010                                    < 2e-16 ***
## years2011                                    < 2e-16 ***
## years2012                                    < 2e-16 ***
## years2013                                    < 2e-16 ***
## years2014                                    < 2e-16 ***
## years2015                                    < 2e-16 ***
## years2016                                    < 2e-16 ***
## hdi_value                                   0.377551    
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## 
## Residual standard error: 3.667 on 193065 degrees of freedom
## Multiple R-squared:  0.9272, Adjusted R-squared:  0.9271 
## F-statistic:  7390 on 333 and 193065 DF,  p-value: < 2.2e-16

This summary tells us that the iso3 (officially assigned country codes) is a significant indicatior, which is not significant - as the percent of a countries GPD that is Agricultural is directly linked to the country. More interesting is there is a specific indicator id (indicator_id 52606 : P Value 0.000412 ***) with a P value below 0.05 - indicating the relationship between a countries percentage of GDP being Agricultural and this indicator is statistically significant. Lets take a look at what this indicator is:

Significant_indicator <- subset(Indicators, indicator_id == "52606")
Significant_indicator[1,]
## # A tibble: 1 x 7
##   dimension  indicator_id indicator_name iso3  country_name Years HDI_value
##   <fct>      <fct>        <fct>          <fct> <fct>        <chr>     <dbl>
## 1 Trade and~ 52606        Remittances, ~ AFG   Afghanistan  1990         NA

Within the dimension “Trade and financial flows” the “Remittances, inflows (% of GDP)” is significant. This is interesting. A remittance is a transfer of money by a foreign worker to an individual in thier home country. A country with a large percentage of thier GDP coming from “Remittances, inflows” would be considered a labor-exporting country where much of the money they earn outside of thier home country is sent to back home. An example of this is India, currently the top reciever of remittance. So potentially the indicator “Remittances, inflows (% of GDP)” can be a predictor for the percentage of the GDP that is Agricultural.

Another significant indicator (indicator id : 174206)

Sig_indicator <- subset(Indicators, indicator_id == "174206")
Sig_indicator[2,]
## # A tibble: 1 x 7
##   dimension  indicator_id indicator_name iso3  country_name Years HDI_value
##   <fct>      <fct>        <fct>          <fct> <fct>        <chr>     <dbl>
## 1 Socio-eco~ 174206       Total debt se~ ALB   Albania      1990         NA

Within the dimension “Socio-economic sustainability” the indicator “Total debt service (% of exports of goods, services and primary income)” has a higher P value that the remittance indicator, meaning it has a weaker relationship, but it’s the next most significant factor that can predict the percentage of the GDP that comes from agriculture. This is interesting because the total debt service is the sum of principal repayments and interest actually paid in currency, goods, or services on long-term debt, interest paid on short-term debt, and repayments (repurchases and charges) to the IMF. Meaning a countries total debt repayments in relation to the amount they produce, which would indicate a developing country if the debt is close to or above the amount the country is able to produce.

These two factors could possible support the hypothesis that a developing country, with lower Human Development Index scores, share similar Agricultural production. Lets plot these relationships to get a better idea of what is happening here.

Percentage of GDP from Agriculture and Total debt service (% of exports of goods, services and primary income)

Our X value here is the HDI value which is the percentage value for the indicator “Total debt service (% of exports of goods, services and primary income)”.

AgToDebt <- subset(df, indicator_id == "174206" )
ggplot(AgToDebt, aes(x = hdi_value, y = percent_gdp)) + geom_col() + ggtitle("Agricultural Production Related to Debt") + theme(axis.text.x = element_blank(), axis.text.y = element_blank(), axis.ticks = element_blank()) + xlab("Total Debt Service - Percent of Exports") + ylab("Agricultural Products - Percent of GDP")

Assessment of Graph

This is interesting, the graph is communicating that the higher the percentage of GDP that comes from Agriculture relates to a lower debt ratio (annual debt payments in proportion to sum of production). This leads me to the idea that a country that has a higher debt ratio produces less agricultural products in proportion to all other means of production.

Percentage of GDP from Agriculture and Remittances, inflows (% of GDP)

AgToRemittance <- subset(df, indicator_id == "52606" )
ggplot(AgToRemittance, aes(x = hdi_value, y = percent_gdp)) + geom_point() + geom_smooth() + ggtitle("Percentages of GDP") + theme(axis.text.x = element_blank(), axis.text.y = element_blank(), axis.ticks = element_blank()) + xlab("Remittances: Inflow") + ylab("Agricultural Products") 
## `geom_smooth()` using method = 'gam' and formula 'y ~ s(x, bs = "cs")'

Assessment of Graph

This is an interesting shape. The clustering around the origin can be explained by the fact HDI value is a percentage where in some cases the percentage of remittances contributing to GDP is above 100%. Lets look at this graph on a smaller scale, say from 0 - 100 % to see the cluster more clearly.

ggplot(AgToRemittance, aes(x = hdi_value, y = percent_gdp)) + geom_point() + geom_smooth() + ggtitle("Percentages of GDP") + theme(axis.text.x = element_blank(), axis.text.y = element_blank(), axis.ticks = element_blank()) + xlab("Remittances: Inflow") + ylab("Agricultural Products") + xlim(0, 1)
## `geom_smooth()` using method = 'gam' and formula 'y ~ s(x, bs = "cs")'

This does not look like a terribly interesting relationship, but still valuable.

Model Evaluation

This model is in need of more related information in order to explore the idea that a countries Agricultural production may be related to the quality of life in a country. Data on the proportion of agricultural production that is either a deficit or surplus in realtion to feeding it’s local population. The amount of food imports, exports, and food aid recieved/sent complicates the calculation.

TABLES USED CREATING THE MODEL

AgGDP
##                                    country_name Years Percent_GDP
## 15                                   Bangladesh  1960 57.47431238
## 20                                        Benin  1960 46.15772309
## 25                                     Botswana  1960 43.36448944
## 26                                       Brazil  1960 20.59281427
## 29                                 Burkina Faso  1960 39.81252659
## 37                                         Chad  1960 40.92693905
## 38                                        Chile  1960 10.81603090
## 39                                        China  1960 23.17529420
## 41                                        Congo  1960 23.60046332
## 53                                      Ecuador  1960 32.72058034
## 59                                     Eswatini  1960 32.84495518
## 68                                        Ghana  1960 45.22292994
## 74                                       Guyana  1960 26.21951220
## 75                                     Honduras  1960 37.40936058
## 78                                        India  1960 44.13976717
## 80                   Iran (Islamic Republic of)  1960 27.47397311
## 88                                        Kenya  1960 38.19155941
## 95                                      Lesotho  1960 93.08376068
## 101                                      Malawi  1960 50.04444444
## 102                                    Malaysia  1960 43.71593249
## 107                                  Mauritania  1960 47.53482150
## 125                                    Pakistan  1960 46.22065271
## 130                                        Peru  1960 20.80593360
## 131                                 Philippines  1960 26.94057691
## 135                           Republic of Korea  1960 38.97692043
## 149                                   Singapore  1960  3.91762687
## 153                                     Somalia  1960 71.12160316
## 154                                South Africa  1960 11.22349737
## 156                                   Sri Lanka  1960 32.10419759
## 157                                       Sudan  1960 55.35126235
## 158                                    Suriname  1960 10.53799224
## 163                                    Thailand  1960 36.44438043
## 166                                        Togo  1960 54.88213371
## 170                                      Turkey  1960 55.98802395
## 173                                      Uganda  1960 51.73969486
## 182          Venezuela (Bolivarian Republic of)  1960  4.79488017
## 202                                  Bangladesh  1961 57.98823595
## 207                                       Benin  1961 46.19378573
## 212                                    Botswana  1961 41.87051948
## 213                                      Brazil  1961 19.49661001
## 216                                Burkina Faso  1961 39.62272409
## 224                                        Chad  1961 39.86846022
## 225                                       Chile  1961 10.41084104
## 226                                       China  1961 35.79485515
## 228                                       Congo  1961 20.49180087
## 240                                     Ecuador  1961 32.98989387
## 246                                    Eswatini  1961 31.49990347
## 255                                       Ghana  1961 39.68636912
## 261                                      Guyana  1961 26.39805488
## 262                                    Honduras  1961 38.80135928
## 265                                       India  1961 43.32340976
## 267                  Iran (Islamic Republic of)  1961 26.29542123
## 275                                       Kenya  1961 36.81541105
## 282                                     Lesotho  1961 94.21776860
## 288                                      Malawi  1961 50.29045643
## 289                                    Malaysia  1961 45.38215218
## 294                                  Mauritania  1961 43.36775437
## 311                                        Oman  1961 77.07006369
## 312                                    Pakistan  1961 45.04371401
## 315                            Papua New Guinea  1961 50.30502112
## 317                                        Peru  1961 21.07275766
## 318                                 Philippines  1961 26.77652044
## 322                           Republic of Korea  1961 40.78604159
## 336                                   Singapore  1961  3.70120221
## 340                                     Somalia  1961 70.81589681
## 341                                South Africa  1961 11.54058531
## 343                                   Sri Lanka  1961 32.90995055
## 344                                       Sudan  1961 55.98672453
## 345                                    Suriname  1961 10.51524711
## 350                                    Thailand  1961 35.83823047
## 353                                        Togo  1961 55.16127530
## 357                                      Turkey  1961 52.84090909
## 360                                      Uganda  1961 51.73930802
## 369          Venezuela (Bolivarian Republic of)  1961  4.93485307
## 389                                  Bangladesh  1962 57.01857402
## 394                                       Benin  1962 44.70927268
## 399                                    Botswana  1962 40.45692825
## 400                                      Brazil  1962 17.35049021
## 403                                Burkina Faso  1962 39.48651937
## 411                                        Chad  1962 39.81206944
## 412                                       Chile  1962  9.48385920
## 413                                       China  1962 38.98640509
## 415                                       Congo  1962 19.80472225
## 427                                     Ecuador  1962 33.99416259
## 433                                    Eswatini  1962 36.11331980
## 442                                       Ghana  1962 42.25988701
## 448                                      Guyana  1962 25.68807339
## 449                                    Honduras  1962 38.76023722
## 452                                       India  1962 41.36831481
## 454                  Iran (Islamic Republic of)  1962 25.12097246
## 462                                       Kenya  1962 40.59767712
## 469                                     Lesotho  1962 94.84640288
## 475                                      Malawi  1962 50.31645570
## 476                                    Malaysia  1962 42.96866166
## 481                                  Mauritania  1962 43.01870951
## 498                                        Oman  1962 62.43654822
## 499                                    Pakistan  1962 43.33328516
## 502                            Papua New Guinea  1962 48.65697930
## 504                                        Peru  1962 19.94682308
## 505                                 Philippines  1962 26.85774982
## 509                           Republic of Korea  1962 39.08858076
## 523                                   Singapore  1962  3.77845283
## 527                                     Somalia  1962 71.67693883
## 528                                South Africa  1962 11.09383100
## 530                                   Sri Lanka  1962 31.09252224
## 531                                       Sudan  1962 55.03339695
## 532                                    Suriname  1962 10.16949153
## 537                                    Thailand  1962 34.00270049
## 540                                        Togo  1962 53.39504558
## 544                                      Turkey  1962 53.87547649
## 547                                      Uganda  1962 51.16976109
## 556          Venezuela (Bolivarian Republic of)  1962  4.90297379
## 576                                  Bangladesh  1963 57.14666817
## 581                                       Benin  1963 43.71836971
## 586                                    Botswana  1963 39.38077567
## 587                                      Brazil  1963 16.79391435
## 590                                Burkina Faso  1963 40.09831487
## 598                                        Chad  1963 39.72646057
## 599                                       Chile  1963  8.16108339
## 600                                       China  1963 39.85420171
## 602                                       Congo  1963 20.95408198
## 614                                     Ecuador  1963 33.28803326
## 620                                    Eswatini  1963 40.33385678
## 622                                        Fiji  1963 41.42705005
## 629                                       Ghana  1963 40.22403259
## 635                                      Guyana  1963 26.98645185
## 636                                    Honduras  1963 37.59989345
## 639                                       India  1963 42.59932816
## 641                  Iran (Islamic Republic of)  1963 23.54307681
## 649                                       Kenya  1963 41.54437458
## 656                                     Lesotho  1963 89.65127389
## 662                                      Malawi  1963 50.94912680
## 663                                    Malaysia  1963 35.12365305
## 668                                  Mauritania  1963 43.84029907
## 685                                        Oman  1963 62.01923077
## 686                                    Pakistan  1963 42.14639367
## 689                            Papua New Guinea  1963 45.32163743
## 691                                        Peru  1963 18.85230757
## 692                                 Philippines  1963 27.41204481
## 696                           Republic of Korea  1963 45.34071411
## 710                                   Singapore  1963  3.40608096
## 714                                     Somalia  1963 70.66478744
## 715                                South Africa  1963 10.89633671
## 717                                   Sri Lanka  1963 32.34974126
## 718                                       Sudan  1963 49.65874323
## 719                                    Suriname  1963 10.37558685
## 724                                    Thailand  1963 33.06552313
## 727                                        Togo  1963 51.85181137
## 731                                      Turkey  1963 54.37636761
## 734                                      Uganda  1963 50.72194809
## 743          Venezuela (Bolivarian Republic of)  1963  5.08023327
## 763                                  Bangladesh  1964 53.35683665
## 768                                       Benin  1964 45.52815226
## 773                                    Botswana  1964 38.43049687
## 774                                      Brazil  1964 17.28611786
## 777                                Burkina Faso  1964 40.54127250
## 785                                        Chad  1964 38.46230067
## 786                                       Chile  1964  8.75866906
## 787                                       China  1964 38.02979795
## 789                                       Congo  1964 21.10970788
## 801                                     Ecuador  1964 31.31465110
## 807                                    Eswatini  1964 38.45410020
## 809                                        Fiji  1964 36.84738956
## 816                                       Ghana  1964 39.36936937
## 822                                      Guyana  1964 24.41705530
## 823                                    Honduras  1964 37.85731444
## 826                                       India  1964 44.55252560
## 828                  Iran (Islamic Republic of)  1964 21.88034399
## 836                                       Kenya  1964 39.80007234
## 843                                     Lesotho  1964 88.38483965
## 844                                     Liberia  1964 27.26206795
## 849                                      Malawi  1964 49.77678571
## 850                                    Malaysia  1964 33.27378405
## 855                                  Mauritania  1964 34.95492477
## 872                                        Oman  1964 62.14953271
## 873                                    Pakistan  1964 41.64032808
## 876                            Papua New Guinea  1964 43.87291982
## 878                                        Peru  1964 18.34430325
## 879                                 Philippines  1964 26.53383886
## 883                           Republic of Korea  1964 48.33173240
## 896                                Sierra Leone  1964 36.69533765
## 897                                   Singapore  1964  3.50580457
## 901                                     Somalia  1964 71.18725369
## 902                                South Africa  1964  9.47174098
## 904                                   Sri Lanka  1964 30.96238547
## 905                                       Sudan  1964 46.04873605
## 906                                    Suriname  1964 10.42471042
## 911                                    Thailand  1964 30.63419929
## 914                                        Togo  1964 48.89430678
## 918                                      Turkey  1964 51.62601626
## 921                                      Uganda  1964 52.03401657
## 930          Venezuela (Bolivarian Republic of)  1964  5.09848972
## 938                                     Algeria  1965 12.87621336
## 942                                   Argentina  1965 12.90416299
## 950                                  Bangladesh  1965 52.81869477
## 955                                       Benin  1965 44.61942503
## 960                                    Botswana  1965 33.84146341
## 961                                      Brazil  1965 18.70991783
## 964                                Burkina Faso  1965 37.17534109
## 967                                    Cameroon  1965 32.73182909
## 971                    Central African Republic  1965 46.26439655
## 972                                        Chad  1965 37.74527747
## 973                                       Chile  1965  9.06711223
## 974                                       China  1965 37.54901961
## 975                                    Colombia  1965 29.30987407
## 976                                       Congo  1965 19.13580059
## 983            Democratic Republic of the Congo  1965 20.09565349
## 987                          Dominican Republic  1965 25.68442011
## 988                                     Ecuador  1965 32.54323816
## 989                                       Egypt  1965 28.60094030
## 994                                    Eswatini  1965 34.65553236
## 996                                        Fiji  1965 33.81088825
## 998                                      France  1965  8.94780847
## 1003                                      Ghana  1965 49.92175274
## 1009                                     Guyana  1965 24.05413719
## 1010                                   Honduras  1965 40.03239741
## 1013                                      India  1965 42.43109775
## 1015                 Iran (Islamic Republic of)  1965 19.64619343
## 1021                                     Jordan  1965 15.43555782
## 1023                                      Kenya  1965 35.28155468
## 1030                                    Lesotho  1965 83.10213904
## 1031                                    Liberia  1965 26.70391100
## 1036                                     Malawi  1965 49.93646760
## 1037                                   Malaysia  1965 31.00663757
## 1042                                 Mauritania  1965 32.20351568
## 1044                                     Mexico  1965 13.74194660
## 1052                                      Nepal  1965 65.49601675
## 1059                                       Oman  1965 62.55707763
## 1060                                   Pakistan  1965 40.22505577
## 1063                           Papua New Guinea  1965 43.03030303
## 1065                                       Peru  1965 17.95252241
## 1066                                Philippines  1965 27.15214219
## 1070                          Republic of Korea  1965 39.43158698
## 1083                               Sierra Leone  1965 32.98841060
## 1084                                  Singapore  1965  3.25295643
## 1088                                    Somalia  1965 70.53263796
## 1089                               South Africa  1965  9.18631770
## 1091                                  Sri Lanka  1965 28.56488743
## 1092                                      Sudan  1965 45.98476605
## 1093                                   Suriname  1965 10.58911260
## 1098                                   Thailand  1965 31.92324563
## 1101                                       Togo  1965 44.66232181
## 1104                                    Tunisia  1965 23.73848179
## 1105                                     Turkey  1965 47.51434034
## 1108                                     Uganda  1965 52.27655987
## 1117         Venezuela (Bolivarian Republic of)  1965  5.32147209
## 1121                                     Zambia  1965 15.63400576
## 1122                                   Zimbabwe  1965 20.12581764
## 1125                                    Algeria  1966  9.13725573
## 1129                                  Argentina  1966 10.27858628
## 1137                                 Bangladesh  1966 53.94737058
## 1142                                      Benin  1966 45.14781983
## 1147                                   Botswana  1966 39.29539295
## 1148                                     Brazil  1966 15.69293862
## 1151                               Burkina Faso  1966 37.77699418
## 1154                                   Cameroon  1966 31.85079416
## 1158                   Central African Republic  1966 42.14876033
## 1159                                       Chad  1966 38.49887506
## 1160                                      Chile  1966  9.56289518
## 1161                                      China  1966 37.17901202
## 1162                                   Colombia  1966 28.49646051
## 1163                                      Congo  1966 19.18819188
## 1170           Democratic Republic of the Congo  1966 21.63302594
## 1174                         Dominican Republic  1966 24.86449083
## 1175                                    Ecuador  1966 29.26362455
## 1176                                      Egypt  1966 27.94487937
## 1181                                   Eswatini  1966 37.40458015
## 1183                                       Fiji  1966 31.98529412
## 1185                                     France  1966  8.73655364
## 1190                                      Ghana  1966 47.92122538
## 1196                                     Guyana  1966 21.68956445
## 1197                                   Honduras  1966 39.58208955
## 1200                                      India  1966 43.36506005
## 1202                 Iran (Islamic Republic of)  1966 18.59513866
## 1208                                     Jordan  1966 11.01774043
## 1210                                      Kenya  1966 37.87619875
## 1217                                    Lesotho  1966 57.92894057
## 1218                                    Liberia  1966 24.62452881
## 1222                                 Madagascar  1966 25.01687960
## 1223                                     Malawi  1966 47.31301939
## 1224                                   Malaysia  1966 31.54123558
## 1229                                 Mauritania  1966 31.72606158
## 1231                                     Mexico  1966 12.59672518
## 1239                                      Nepal  1966 70.50957895
## 1246                                       Oman  1966 60.42553191
## 1247                                   Pakistan  1966 37.06742376
## 1250                           Papua New Guinea  1966 42.97200715
## 1252                                       Peru  1966 18.11912202
## 1253                                Philippines  1966 27.14044537
## 1257                          Republic of Korea  1966 36.52609938
## 1270                               Sierra Leone  1966 33.72588832
## 1271                                  Singapore  1966  3.46831764
## 1275                                    Somalia  1966 68.78326463
## 1276                               South Africa  1966  9.49494950
## 1278                                  Sri Lanka  1966 28.68265323
## 1279                                      Sudan  1966 38.36079425
## 1280                                   Suriname  1966  9.33967876
## 1285                                   Thailand  1966 33.40020742
## 1288                                       Togo  1966 43.87946262
## 1291                                    Tunisia  1966 20.66045724
## 1292                                     Turkey  1966 48.62012987
## 1295                                     Uganda  1966 51.88756333
## 1304         Venezuela (Bolivarian Republic of)  1966  5.64291267
## 1308                                     Zambia  1966 14.69135802
## 1309                                   Zimbabwe  1966 21.95376222
## 1312                                    Algeria  1967 10.33066567
## 1316                                  Argentina  1967  9.98038632
## 1324                                 Bangladesh  1967 55.85247837
## 1329                                      Benin  1967 42.08101320
## 1335                                     Brazil  1967 15.10875991
## 1338                               Burkina Faso  1967 34.20648566
## 1341                                   Cameroon  1967 31.13330046
## 1345                   Central African Republic  1967 39.52254642
## 1346                                       Chad  1967 42.08049065
## 1347                                      Chile  1967  8.89892134
## 1348                                      China  1967 39.80604169
## 1349                                   Colombia  1967 28.33321498
## 1350                                      Congo  1967 19.86301710
## 1357           Democratic Republic of the Congo  1967 21.64212678
## 1361                         Dominican Republic  1967 22.99704886
## 1362                                    Ecuador  1967 29.85114264
## 1363                                      Egypt  1967 28.55649616
## 1368                                   Eswatini  1967 29.05138340
## 1370                                       Fiji  1967 29.58226769
## 1372                                     France  1967  8.66856839
## 1377                                      Ghana  1967 45.04839911
## 1383                                     Guyana  1967 21.36569752
## 1384                                   Honduras  1967 38.63221329
## 1387                                      India  1967 46.17772152
## 1389                 Iran (Islamic Republic of)  1967 17.57332316
## 1395                                     Jordan  1967 16.92894611
## 1397                                      Kenya  1967 36.50970115
## 1404                                    Lesotho  1967 48.56416646
## 1405                                    Liberia  1967 24.07588106
## 1409                                 Madagascar  1967 25.15580842
## 1410                                     Malawi  1967 46.43628510
## 1411                                   Malaysia  1967 31.59812334
## 1413                                       Mali  1967 69.06075997
## 1416                                 Mauritania  1967 32.16508350
## 1418                                     Mexico  1967 12.28835497
## 1426                                      Nepal  1967 67.18848565
## 1433                                       Oman  1967 37.63157895
## 1434                                   Pakistan  1967 38.68964456
## 1437                           Papua New Guinea  1967 43.72521962
## 1439                                       Peru  1967 18.69517523
## 1440                                Philippines  1967 27.36834225
## 1444                          Republic of Korea  1967 32.36523381
## 1457                               Sierra Leone  1967 34.00865460
## 1458                                  Singapore  1967  3.20813989
## 1462                                    Somalia  1967 66.29065323
## 1463                               South Africa  1967 10.46176816
## 1465                                  Sri Lanka  1967 30.07723138
## 1466                                      Sudan  1967 38.36774828
## 1467                                   Suriname  1967  8.79429008
## 1472                                   Thailand  1967 29.24377633
## 1475                                       Togo  1967 44.21052691
## 1478                                    Tunisia  1967 18.79425450
## 1479                                     Turkey  1967 45.86686174
## 1482                                     Uganda  1967 50.82651260
## 1491         Venezuela (Bolivarian Republic of)  1967  5.87620824
## 1495                                     Zambia  1967 14.02508552
## 1496                                   Zimbabwe  1967 22.89420451
## 1499                                    Algeria  1968 10.85337355
## 1503                                  Argentina  1968  9.72127698
## 1511                                 Bangladesh  1968 53.55573997
## 1516                                      Benin  1968 38.86806900
## 1522                                     Brazil  1968 14.05029160
## 1525                               Burkina Faso  1968 32.35556069
## 1528                                   Cameroon  1968 31.50578570
## 1532                   Central African Republic  1968 39.07769417
## 1533                                       Chad  1968 41.35421869
## 1534                                      Chile  1968  7.90419162
## 1535                                      China  1968 41.64325440
## 1536                                   Colombia  1968 28.26220654
## 1537                                      Congo  1968 19.61414791
## 1544           Democratic Republic of the Congo  1968 21.78074341
## 1548                         Dominican Republic  1968 23.29756719
## 1549                                    Ecuador  1968 30.81644628
## 1550                                      Egypt  1968 29.43541132
## 1555                                   Eswatini  1968 24.17582418
## 1557                                       Fiji  1968 29.70679012
## 1559                                     France  1968  8.34209942
## 1564                                      Ghana  1968 47.14475432
## 1570                                     Guyana  1968 19.69397828
## 1571                                   Honduras  1968 37.95323619
## 1574                                      India  1968 45.13632114
## 1576                 Iran (Islamic Republic of)  1968 16.90182245
## 1582                                     Jordan  1968 10.57220708
## 1584                                      Kenya  1968 34.59922843
## 1591                                    Lesotho  1968 48.88582394
## 1592                                    Liberia  1968 23.16470553
## 1596                                 Madagascar  1968 24.28238834
## 1597                                     Malawi  1968 44.66219701
## 1598                                   Malaysia  1968 31.33851103
## 1600                                       Mali  1968 64.95682884
## 1603                                 Mauritania  1968 31.47843855
## 1605                                     Mexico  1968 11.45042050
## 1613                                      Nepal  1968 68.42179424
## 1620                                       Oman  1968 19.43371943
## 1621                                   Pakistan  1968 39.80770223
## 1624                           Papua New Guinea  1968 44.72796227
## 1626                                       Peru  1968 18.60249867
## 1627                                Philippines  1968 29.20060332
## 1631                          Republic of Korea  1968 30.59993152
## 1640                               Saudi Arabia  1968  4.93499610
## 1644                               Sierra Leone  1968 31.81088314
## 1645                                  Singapore  1968  3.21164008
## 1649                                    Somalia  1968 61.50293993
## 1650                               South Africa  1968  8.80695859
## 1652                                  Sri Lanka  1968 31.62786994
## 1653                                      Sudan  1968 36.80542110
## 1654                                   Suriname  1968  8.65692097
## 1659                                   Thailand  1968 28.68292700
## 1662                                       Togo  1968 44.57429659
## 1665                                    Tunisia  1968 20.00713903
## 1666                                     Turkey  1968 42.83845651
## 1669                                     Uganda  1968 49.68306671
## 1678         Venezuela (Bolivarian Republic of)  1968  5.97152025
## 1682                                     Zambia  1968 12.43926142
## 1683                                   Zimbabwe  1968 17.78304150
## 1686                                    Algeria  1969  9.03016473
## 1690                                  Argentina  1969  9.18589273
## 1698                                 Bangladesh  1969 55.41281892
## 1703                                      Benin  1969 38.49666283
## 1709                                     Brazil  1969 13.21590683
## 1712                               Burkina Faso  1969 32.79866475
## 1715                                   Cameroon  1969 30.72351081
## 1719                   Central African Republic  1969 37.84402802
## 1720                                       Chad  1969 40.85117058
## 1721                                      Chile  1969  7.04892004
## 1722                                      China  1969 37.51911120
## 1723                                   Colombia  1969 27.52158799
## 1724                                      Congo  1969 17.70683176
## 1731           Democratic Republic of the Congo  1969 18.00107888
## 1735                         Dominican Republic  1969 24.27975915
## 1736                                    Ecuador  1969 27.44394143
## 1737                                      Egypt  1969 29.84751237
## 1742                                   Eswatini  1969 32.54086181
## 1744                                       Fiji  1969 27.61565836
## 1746                                     France  1969  7.71770566
## 1751                                      Ghana  1969 52.27531286
## 1757                                     Guyana  1969 20.41562000
## 1758                                   Honduras  1969 35.87134887
## 1761                                      India  1969 44.89060014
## 1763                 Iran (Islamic Republic of)  1969 15.47000641
## 1769                                     Jordan  1969 13.60662887
## 1771                                      Kenya  1969 33.78540088
## 1778                                    Lesotho  1969 45.76462460
## 1779                                    Liberia  1969 24.61752570
## 1783                                 Madagascar  1969 23.92077377
## 1784                                     Malawi  1969 44.27407762
## 1785                                   Malaysia  1969 33.13687912
## 1787                                       Mali  1969 64.45978362
## 1790                                 Mauritania  1969 27.81287424
## 1792                                     Mexico  1969 10.94841847
## 1800                                      Nepal  1969 67.79141191
## 1801                                Netherlands  1969  6.42205658
## 1807                                       Oman  1969 16.29554656
## 1808                                   Pakistan  1969 37.38482107
## 1811                           Papua New Guinea  1969 43.75001860
## 1813                                       Peru  1969 18.02397667
## 1814                                Philippines  1969 29.91954510
## 1818                          Republic of Korea  1969 29.85724260
## 1827                               Saudi Arabia  1969  4.91925111
## 1831                               Sierra Leone  1969 29.59415584
## 1832                                  Singapore  1969  2.96867210
## 1836                                    Somalia  1969 60.54522579
## 1837                               South Africa  1969  8.28983456
## 1839                                  Sri Lanka  1969 29.32323557
## 1840                                      Sudan  1969 39.63577933
## 1841                                   Suriname  1969  7.78910827
## 1846                                   Thailand  1969 28.68471764
## 1849                                       Togo  1969 42.95982381
## 1852                                    Tunisia  1969 18.45890411
## 1853                                     Turkey  1969 41.96951934
## 1856                                     Uganda  1969 50.63511165
## 1865         Venezuela (Bolivarian Republic of)  1969  6.47209749
## 1869                                     Zambia  1969 10.55555556
## 1870                                   Zimbabwe  1969 20.44586848
## 1873                                    Algeria  1970  9.20546574
## 1877                                  Argentina  1970  9.63756096
## 1885                                 Bangladesh  1970 54.56149999
## 1890                                      Benin  1970 36.32785238
## 1893           Bolivia (Plurinational State of)  1970 20.78299974
## 1896                                     Brazil  1970 12.34526314
## 1899                               Burkina Faso  1970 31.35564878
## 1900                                    Burundi  1970 70.63165235
## 1902                                   Cameroon  1970 31.36392018
## 1906                   Central African Republic  1970 35.47010684
## 1907                                       Chad  1970 39.67878510
## 1908                                      Chile  1970  7.01315624
## 1909                                      China  1970 34.79843839
## 1910                                   Colombia  1970 25.68515862
## 1911                                      Congo  1970 17.89473684
## 1915                                       Cuba  1970 13.32867469
## 1918           Democratic Republic of the Congo  1970 16.13844848
## 1919                                    Denmark  1970  5.24648796
## 1922                         Dominican Republic  1970 26.04889828
## 1923                                    Ecuador  1970 27.35802687
## 1924                                      Egypt  1970 29.42856055
## 1929                                   Eswatini  1970 33.10439560
## 1931                                       Fiji  1970 28.53759621
## 1933                                     France  1970  7.51791262
## 1938                                      Ghana  1970 53.89743590
## 1943                              Guinea-Bissau  1970 47.45551783
## 1944                                     Guyana  1970 19.17021277
## 1945                                   Honduras  1970 32.44070142
## 1948                                      India  1970 43.51067865
## 1950                 Iran (Islamic Republic of)  1970 13.84827140
## 1956                                     Jordan  1970 11.64221486
## 1958                                      Kenya  1970 33.29286623
## 1965                                    Lesotho  1970 47.91013514
## 1966                                    Liberia  1970 24.10147704
## 1970                                 Madagascar  1970 24.43027936
## 1971                                     Malawi  1970 43.97163121
## 1972                                   Malaysia  1970 32.58028405
## 1974                                       Mali  1970 66.02326945
## 1975                                      Malta  1970  7.17879289
## 1977                                 Mauritania  1970 29.27266673
## 1979                                     Mexico  1970 12.73343415
## 1987                                      Nepal  1970 67.29025709
## 1988                                Netherlands  1970  5.53840880
## 1992                                     Norway  1970  5.84472485
## 1994                                       Oman  1970 15.70482498
## 1995                                   Pakistan  1970 36.83008626
## 1997                                     Panama  1970 11.29367641
## 1998                           Papua New Guinea  1970 39.11296254
## 2000                                       Peru  1970 18.67857116
## 2001                                Philippines  1970 29.52209791
## 2005                          Republic of Korea  1970 28.89246215
## 2014                               Saudi Arabia  1970  4.23588726
## 2018                               Sierra Leone  1970 29.60515967
## 2019                                  Singapore  1970  2.71520913
## 2023                                    Somalia  1970 59.37051194
## 2024                               South Africa  1970  7.17803795
## 2026                                  Sri Lanka  1970 28.76776859
## 2027                                      Sudan  1970 43.62300719
## 2028                                   Suriname  1970  7.32208967
## 2033                                   Thailand  1970 25.91587560
## 2036                                       Togo  1970 33.76072010
## 2039                                    Tunisia  1970 19.70300061
## 2040                                     Turkey  1970 40.16736402
## 2043                                     Uganda  1970 53.77767366
## 2052         Venezuela (Bolivarian Republic of)  1970  6.10880561
## 2056                                     Zambia  1970 11.63247863
## 2057                                   Zimbabwe  1970 16.98160140
## 2060                                    Algeria  1971  9.56917494
## 2064                                  Argentina  1971 10.86594775
## 2072                                 Bangladesh  1971 51.03131121
## 2077                                      Benin  1971 34.35773601
## 2080           Bolivia (Plurinational State of)  1971 20.93701872
## 2083                                     Brazil  1971 12.85925947
## 2086                               Burkina Faso  1971 31.99750094
## 2087                                    Burundi  1971 69.26077751
## 2089                                   Cameroon  1971 31.00411116
## 2093                   Central African Republic  1971 37.24695086
## 2094                                       Chad  1971 39.67485953
## 2095                                      Chile  1971  8.31091616
## 2096                                      China  1971 33.63181245
## 2097                                   Colombia  1971 24.05361431
## 2098                                      Congo  1971 17.13640909
## 2102                                       Cuba  1971 13.32695657
## 2105           Democratic Republic of the Congo  1971 14.93923890
## 2106                                    Denmark  1971  5.16593363
## 2109                         Dominican Republic  1971 24.94111313
## 2110                                    Ecuador  1971 26.56744726
## 2111                                      Egypt  1971 29.16592057
## 2116                                   Eswatini  1971 37.07482993
## 2118                                       Fiji  1971 24.74282620
## 2120                                     France  1971  6.87102660
## 2125                                      Ghana  1971 50.20463847
## 2130                              Guinea-Bissau  1971 44.85065310
## 2131                                     Guyana  1971 20.40529695
## 2132                                   Honduras  1971 31.31159732
## 2135                                      India  1971 41.77560110
## 2137                 Iran (Islamic Republic of)  1971 13.47710786
## 2143                                     Jordan  1971 13.34519573
## 2145                                      Kenya  1971 31.37739887
## 2152                                    Lesotho  1971 30.38846918
## 2153                                    Liberia  1971 24.42499936
## 2157                                 Madagascar  1971 24.30771486
## 2158                                     Malawi  1971 44.33026223
## 2159                                   Malaysia  1971 28.42619066
## 2161                                       Mali  1971 65.40418377
## 2162                                      Malta  1971  7.27258982
## 2164                                 Mauritania  1971 28.03079625
## 2166                                     Mexico  1971 12.61159475
## 2174                                      Nepal  1971 68.07977012
## 2175                                Netherlands  1971  5.18301856
## 2176                                New Zealand  1971 12.27655488
## 2179                                     Norway  1971  5.88096177
## 2181                                       Oman  1971 13.54838710
## 2182                                   Pakistan  1971 35.52579775
## 2184                                     Panama  1971 11.01806236
## 2185                           Papua New Guinea  1971 36.40454395
## 2187                                       Peru  1971 17.80339438
## 2188                                Philippines  1971 30.30767293
## 2192                          Republic of Korea  1971 29.48265446
## 2201                               Saudi Arabia  1971  3.30055526
## 2205                               Sierra Leone  1971 30.30071745
## 2206                                  Singapore  1971  2.71701205
## 2210                                    Somalia  1971 57.45080864
## 2211                               South Africa  1971  7.80027780
## 2213                                  Sri Lanka  1971 27.52395516
## 2214                                      Sudan  1971 44.57414613
## 2215                                   Suriname  1971  7.35321703
## 2220                                   Thailand  1971 23.92438082
## 2223                                       Togo  1971 31.68568949
## 2226                                    Tunisia  1971 22.29182981
## 2227                                     Turkey  1971 38.47133758
## 2230                                     Uganda  1971 56.61802753
## 2239         Venezuela (Bolivarian Republic of)  1971  5.86465188
## 2243                                     Zambia  1971 14.24606846
## 2244                                   Zimbabwe  1971 19.21433643
## 2247                                    Algeria  1972  8.42084570
## 2251                                  Argentina  1972 10.98486987
## 2259                                 Bangladesh  1972 59.60990600
## 2264                                      Benin  1972 34.23102234
## 2267           Bolivia (Plurinational State of)  1972 20.18941295
## 2270                                     Brazil  1972 12.99468155
## 2273                               Burkina Faso  1972 33.18583806
## 2274                                    Burundi  1972 65.32475225
## 2276                                   Cameroon  1972 31.96504175
## 2280                   Central African Republic  1972 38.49128404
## 2281                                       Chad  1972 39.52254001
## 2282                                      Chile  1972  8.50991293
## 2283                                      China  1972 32.41654913
## 2284                                   Colombia  1972 24.59311576
## 2285                                      Congo  1972 16.42512077
## 2289                                       Cuba  1972 13.32699462
## 2292           Democratic Republic of the Congo  1972 15.18284129
## 2293                                    Denmark  1972  5.43699294
## 2296                         Dominican Republic  1972 22.94916267
## 2297                                    Ecuador  1972 27.21882489
## 2298                                      Egypt  1972 31.07698458
## 2303                                   Eswatini  1972 39.98025666
## 2305                                       Fiji  1972 24.98915401
## 2307                                     France  1972  7.68238271
## 2312                                      Ghana  1972 52.26910828
## 2317                              Guinea-Bissau  1972 45.78122419
## 2318                                     Guyana  1972 19.63444507
## 2319                                   Honduras  1972 30.92783293
## 2322                                      India  1972 41.77121685
## 2324                 Iran (Islamic Republic of)  1972 12.62725974
## 2330                                     Jordan  1972 13.29501916
## 2332                                      Kenya  1972 35.19446864
## 2339                                    Lesotho  1972 46.92877193
## 2340                                    Liberia  1972 22.52378443
## 2344                                 Madagascar  1972 24.99351593
## 2345                                     Malawi  1972 45.63138806
## 2346                                   Malaysia  1972 28.26248101
## 2348                                       Mali  1972 61.79271625
## 2349                                      Malta  1972  7.61719793
## 2351                                 Mauritania  1972 27.86525090
## 2353                                     Mexico  1972 11.52125450
## 2361                                      Nepal  1972 69.44718186
## 2362                                Netherlands  1972  5.10966363
## 2363                                New Zealand  1972 14.04118404
## 2366                                     Norway  1972  5.30091751
## 2368                                       Oman  1972 12.21264368
## 2369                                   Pakistan  1972 36.47420261
## 2371                                     Panama  1972 10.41924685
## 2372                           Papua New Guinea  1972 34.06691640
## 2374                                       Peru  1972 16.78220578
## 2375                                Philippines  1972 29.45155564
## 2379                          Republic of Korea  1972 28.44410685
## 2388                               Saudi Arabia  1972  2.81605752
## 2392                               Sierra Leone  1972 30.43478261
## 2393                                  Singapore  1972  2.32352234
## 2397                                    Somalia  1972 61.57541714
## 2398                               South Africa  1972  7.64561540
## 2400                                  Sri Lanka  1972 26.73869745
## 2401                                      Sudan  1972 44.16169649
## 2402                                   Suriname  1972  7.39299611
## 2407                                   Thailand  1972 25.33803682
## 2410                                       Togo  1972 30.73284873
## 2413                                    Tunisia  1972 24.61042450
## 2414                                     Turkey  1972 35.40328337
## 2417                                     Uganda  1972 56.95780177
## 2426         Venezuela (Bolivarian Republic of)  1972  5.38667624
## 2430                                     Zambia  1972 14.05714286
## 2431                                   Zimbabwe  1972 19.65385304
## 2434                                    Algeria  1973  7.03976029
## 2438                                  Argentina  1973 11.95254780
## 2446                                 Bangladesh  1973 56.63885300
## 2451                                      Benin  1973 33.62392031
## 2454           Bolivia (Plurinational State of)  1973 21.03499628
## 2457                                     Brazil  1973 13.35748722
## 2460                               Burkina Faso  1973 30.81809417
## 2461                                    Burundi  1973 67.95719870
## 2463                                   Cameroon  1973 30.79282900
## 2467                   Central African Republic  1973 39.16349810
## 2468                                       Chad  1973 38.02048228
## 2469                                      Chile  1973  6.85055765
## 2470                                      China  1973 32.92576736
## 2471                                   Colombia  1973 24.61837987
## 2472                                      Congo  1973 15.72847682
## 2476                                       Cuba  1973 13.33063723
## 2479           Democratic Republic of the Congo  1973 15.04418980
## 2480                                    Denmark  1973  5.94329962
## 2483                         Dominican Republic  1973 24.63021596
## 2484                                    Ecuador  1973 26.90550409
## 2485                                      Egypt  1973 30.66531967
## 2490                                   Eswatini  1973 33.33333333
## 2492                                       Fiji  1973 25.18295902
## 2494                                     France  1973  7.62374632
## 2499                                      Ghana  1973 53.26086957
## 2504                              Guinea-Bissau  1973 42.88252786
## 2505                                     Guyana  1973 18.44205413
## 2506                                   Honduras  1973 30.87613106
## 2509                                      India  1973 44.91596938
## 2511                 Iran (Islamic Republic of)  1973 10.25281166
## 2517                                     Jordan  1973  8.77808989
## 2519                                      Kenya  1973 35.46295757
## 2526                                    Lesotho  1973 56.90245902
## 2527                                    Liberia  1973 29.92056455
## 2531                                 Madagascar  1973 26.77856572
## 2532                                     Malawi  1973 41.57863850
## 2533                                   Malaysia  1973 28.93644715
## 2535                                       Mali  1973 57.45007505
## 2536                                      Malta  1973  7.44266400
## 2538                                 Mauritania  1973 38.59167425
## 2540                                     Mexico  1973 12.14554706
## 2548                                      Nepal  1973 66.69738488
## 2549                                Netherlands  1973  5.03974080
## 2550                                New Zealand  1973 12.66283948
## 2553                                     Norway  1973  5.12306532
## 2555                                       Oman  1973  9.95825880
## 2556                                   Pakistan  1973 36.03421290
## 2558                                     Panama  1973  9.82992633
## 2559                           Papua New Guinea  1973 29.47224463
## 2561                                       Peru  1973 16.48961879
## 2562                                Philippines  1973 30.55796133
## 2566                          Republic of Korea  1973 26.43822205
## 2575                               Saudi Arabia  1973  2.19839723
## 2579                               Sierra Leone  1973 32.05143056
## 2580                                  Singapore  1973  2.39624182
## 2584                                    Somalia  1973 61.23740106
## 2585                               South Africa  1973  7.25307840
## 2587                                  Sri Lanka  1973 27.66915725
## 2588                                      Sudan  1973 44.88487015
## 2589                                   Suriname  1973  7.02702703
## 2594                                   Thailand  1973 27.69022923
## 2597                                       Togo  1973 32.00883615
## 2600                                    Tunisia  1973 22.85340841
## 2601                                     Turkey  1973 35.01416431
## 2604                                     Uganda  1973 60.90116279
## 2613         Venezuela (Bolivarian Republic of)  1973  5.43356151
## 2617                                     Zambia  1973 12.35213205
## 2618                                   Zimbabwe  1973 16.63829248
## 2621                                    Algeria  1974  7.36662914
## 2625                                  Argentina  1974 10.23083775
## 2633                                 Bangladesh  1974 56.63655312
## 2638                                      Benin  1974 31.53369577
## 2641           Bolivia (Plurinational State of)  1974 22.00073919
## 2644                                     Brazil  1974 12.92023444
## 2645                          Brunei Darussalam  1974  1.33781821
## 2647                               Burkina Faso  1974 32.27419656
## 2648                                    Burundi  1974 65.86793786
## 2650                                   Cameroon  1974 29.53976476
## 2654                   Central African Republic  1974 39.49329359
## 2655                                       Chad  1974 38.54306301
## 2656                                      Chile  1974  5.89856932
## 2657                                      China  1974 33.42645967
## 2658                                   Colombia  1974 24.87507714
## 2659                                      Congo  1974 15.11710433
## 2663                                       Cuba  1974 13.33774051
## 2666           Democratic Republic of the Congo  1974 15.76030574
## 2667                                    Denmark  1974  5.77337772
## 2670                         Dominican Republic  1974 25.63686709
## 2671                                    Ecuador  1974 25.02207386
## 2672                                      Egypt  1974 30.49797547
## 2677                                   Eswatini  1974 31.76020408
## 2679                                       Fiji  1974 25.57856273
## 2681                                     France  1974  6.09032920
## 2686                                      Ghana  1974 56.17633192
## 2691                              Guinea-Bissau  1974 41.37979266
## 2692                                     Guyana  1974 30.36330191
## 2693                                   Honduras  1974 29.41176471
## 2696                                      India  1974 41.80497236
## 2698                 Iran (Islamic Republic of)  1974  7.01295926
## 2704                                     Jordan  1974 16.46043165
## 2706                                      Kenya  1974 35.36322965
## 2713                                    Lesotho  1974 45.62576271
## 2714                                    Liberia  1974 32.28125802
## 2718                                 Madagascar  1974 34.22234961
## 2719                                     Malawi  1974 41.17239788
## 2720                                   Malaysia  1974 32.46534036
## 2722                                       Mali  1974 51.22670258
## 2723                                      Malta  1974  7.13452360
## 2725                                 Mauritania  1974 35.61809999
## 2727                                     Mexico  1974 12.03830462
## 2735                                      Nepal  1974 70.52716421
## 2736                                Netherlands  1974  4.31689631
## 2737                                New Zealand  1974  9.09639160
## 2740                                     Norway  1974  4.99962164
## 2742                                       Oman  1974  3.24973450
## 2743                                   Pakistan  1974 34.91254564
## 2745                                     Panama  1974  8.57959296
## 2746                           Papua New Guinea  1974 29.37494009
## 2748                                       Peru  1974 15.91649155
## 2749                                Philippines  1974 31.05564167
## 2753                          Republic of Korea  1974 26.26154890
## 2762                               Saudi Arabia  1974  0.83552501
## 2766                               Sierra Leone  1974 35.29063456
## 2767                                  Singapore  1974  2.08878130
## 2771                                    Somalia  1974 45.61069664
## 2772                               South Africa  1974  8.65946446
## 2774                                  Sri Lanka  1974 33.52872365
## 2775                                      Sudan  1974 44.42184067
## 2776                                   Suriname  1974  8.04374914
## 2781                                   Thailand  1974 27.00573136
## 2784                                       Togo  1974 24.61082381
## 2787                                    Tunisia  1974 21.39167651
## 2788                                     Turkey  1974 37.08705589
## 2791                                     Uganda  1974 62.43864816
## 2800         Venezuela (Bolivarian Republic of)  1974  4.50307833
## 2804                                     Zambia  1974 11.62682216
## 2805                                   Zimbabwe  1974 19.73573900
## 2808                                    Algeria  1975 10.41840814
## 2812                                  Argentina  1975  6.58391049
## 2820                                 Bangladesh  1975 61.95413913
## 2825                                      Benin  1975 30.53866655
## 2828           Bolivia (Plurinational State of)  1975 21.79392464
## 2830                                   Botswana  1975 29.87817469
## 2831                                     Brazil  1975 12.09889632
## 2832                          Brunei Darussalam  1975  1.33554721
## 2834                               Burkina Faso  1975 30.31976032
## 2835                                    Burundi  1975 65.67059044
## 2837                                   Cameroon  1975 29.11971220
## 2841                   Central African Republic  1975 37.74842937
## 2842                                       Chad  1975 38.28974190
## 2843                                      Chile  1975  6.83426272
## 2844                                      China  1975 31.95262379
## 2845                                   Colombia  1975 24.38788343
## 2846                                      Congo  1975 14.47688564
## 2850                                       Cuba  1975 13.32103965
## 2851                                     Cyprus  1975 15.71984370
## 2853           Democratic Republic of the Congo  1975 17.73448027
## 2854                                    Denmark  1975  4.93308666
## 2857                         Dominican Republic  1975 24.40010104
## 2858                                    Ecuador  1975 23.15287797
## 2859                                      Egypt  1975 29.03481013
## 2864                                   Eswatini  1975 32.91925466
## 2866                                       Fiji  1975 25.61117082
## 2867                                    Finland  1975 10.76591787
## 2868                                     France  1975  5.40445925
## 2873                                      Ghana  1975 53.09995782
## 2878                              Guinea-Bissau  1975 47.77200237
## 2879                                     Guyana  1975 31.10706150
## 2880                                   Honduras  1975 27.33102973
## 2883                                      India  1975 39.01327372
## 2885                 Iran (Islamic Republic of)  1975  6.80312332
## 2891                                     Jordan  1975  7.90162219
## 2893                                      Kenya  1975 34.15437003
## 2900                                    Lesotho  1975 41.45667351
## 2901                                    Liberia  1975 26.59669053
## 2905                                 Madagascar  1975 34.04305551
## 2906                                     Malawi  1975 37.23468769
## 2907                                   Malaysia  1975 30.71694161
## 2909                                       Mali  1975 63.27756864
## 2910                                      Malta  1975  6.05645980
## 2912                                 Mauritania  1975 29.59454247
## 2914                                     Mexico  1975 11.81404082
## 2922                                      Nepal  1975 71.75577274
## 2923                                Netherlands  1975  4.63464301
## 2924                                New Zealand  1975 10.85815918
## 2927                                     Norway  1975  4.67497273
## 2929                                       Oman  1975  2.79121183
## 2930                                   Pakistan  1975 32.04606115
## 2932                                     Panama  1975  8.53211628
## 2933                           Papua New Guinea  1975 31.43062071
## 2935                                       Peru  1975 16.36609521
## 2936                                Philippines  1975 30.33997221
## 2940                          Republic of Korea  1975 26.86435609
## 2949                               Saudi Arabia  1975  0.92870601
## 2953                               Sierra Leone  1975 38.01631378
## 2954                                  Singapore  1975  2.23486050
## 2958                                    Somalia  1975 54.17245328
## 2959                               South Africa  1975  7.65380449
## 2961                                  Sri Lanka  1975 30.64942845
## 2962                                      Sudan  1975 40.57482121
## 2963                                   Suriname  1975  7.91337510
## 2968                                   Thailand  1975 26.87108478
## 2971                                       Togo  1975 26.60619860
## 2972                                      Tonga  1975 50.11159068
## 2974                                    Tunisia  1975 20.95052083
## 2975                                     Turkey  1975 36.49751881
## 2978                                     Uganda  1975 72.17943781
## 2987         Venezuela (Bolivarian Republic of)  1975  5.03234630
## 2991                                     Zambia  1975 14.31549687
## 2992                                   Zimbabwe  1975 19.05594336
## 2995                                    Algeria  1976  9.92688074
## 2999                                  Argentina  1976  8.15217071
## 3003                                    Austria  1976  5.75626856
## 3007                                 Bangladesh  1976 51.91445693
## 3012                                      Benin  1976 33.19650626
## 3015           Bolivia (Plurinational State of)  1976 21.29159030
## 3017                                   Botswana  1976 26.82803833
## 3018                                     Brazil  1976 13.00439895
## 3019                          Brunei Darussalam  1976  1.10918347
## 3021                               Burkina Faso  1976 30.79158639
## 3022                                    Burundi  1976 64.79066440
## 3024                                   Cameroon  1976 27.61010904
## 3028                   Central African Republic  1976 40.11859885
## 3029                                       Chad  1976 37.01560831
## 3030                                      Chile  1976  8.77586581
## 3031                                      China  1976 32.35963327
## 3032                                   Colombia  1976 24.12750545
## 3033                                      Congo  1976 13.47753744
## 3037                                       Cuba  1976 13.31836690
## 3038                                     Cyprus  1976 15.90295915
## 3040           Democratic Republic of the Congo  1976 22.87865679
## 3041                                    Denmark  1976  4.84710216
## 3044                         Dominican Republic  1976 21.11182790
## 3045                                    Ecuador  1976 20.86046753
## 3046                                      Egypt  1976 28.28872577
## 3051                                   Eswatini  1976 32.44680851
## 3053                                       Fiji  1976 25.76236896
## 3054                                    Finland  1976 10.24616499
## 3055                                     France  1976  5.14551690
## 3060                                      Ghana  1976 56.37171165
## 3065                              Guinea-Bissau  1976 48.08970414
## 3066                                     Guyana  1976 22.72946162
## 3067                                   Honduras  1976 28.54771903
## 3070                                      India  1976 37.07943961
## 3072                 Iran (Islamic Republic of)  1976  6.62105075
## 3078                                     Jordan  1976  8.33169581
## 3080                                      Kenya  1976 37.90314138
## 3087                                    Lesotho  1976 34.60753725
## 3088                                    Liberia  1976 29.82254850
## 3092                                 Madagascar  1976 33.31761548
## 3093                                     Malawi  1976 39.20110669
## 3094                                   Malaysia  1976 29.40182553
## 3096                                       Mali  1976 61.22686286
## 3097                                      Malta  1976  6.06008477
## 3099                                 Mauritania  1976 28.47888877
## 3100                                  Mauritius  1976 23.90970317
## 3101                                     Mexico  1976 11.21007044
## 3109                                      Nepal  1976 69.29290596
## 3110                                Netherlands  1976  4.64546712
## 3111                                New Zealand  1976 12.11022480
## 3114                                     Norway  1976  5.00217184
## 3116                                       Oman  1976  2.08001795
## 3117                                   Pakistan  1976 31.57391735
## 3119                                     Panama  1976  9.01277648
## 3120                           Papua New Guinea  1976 33.59858235
## 3122                                       Peru  1976 15.30379211
## 3123                                Philippines  1976 29.26869532
## 3127                          Republic of Korea  1976 25.53388685
## 3136                               Saudi Arabia  1976  0.79136054
## 3139                                 Seychelles  1976 10.33705554
## 3140                               Sierra Leone  1976 38.69966697
## 3141                                  Singapore  1976  2.11948181
## 3145                                    Somalia  1976 56.31369626
## 3146                               South Africa  1976  6.73673043
## 3148                                  Sri Lanka  1976 29.32061186
## 3149                                      Sudan  1976 38.84092381
## 3150                                   Suriname  1976  8.39981230
## 3155                                   Thailand  1976 26.69552647
## 3158                                       Togo  1976 32.29729807
## 3159                                      Tonga  1976 45.78214998
## 3161                                    Tunisia  1976 20.43586995
## 3162                                     Turkey  1976 33.60110456
## 3165                                     Uganda  1976 73.24782410
## 3174         Venezuela (Bolivarian Republic of)  1976  4.60199886
## 3178                                     Zambia  1976 15.51136364
## 3179                                   Zimbabwe  1976 19.02816034
## 3182                                    Algeria  1977  8.47014070
## 3185                        Antigua and Barbuda  1977  5.49273030
## 3186                                  Argentina  1977  8.08714211
## 3190                                    Austria  1977  4.98093232
## 3194                                 Bangladesh  1977 48.89805693
## 3199                                      Benin  1977 31.85508538
## 3202           Bolivia (Plurinational State of)  1977 20.84693159
## 3204                                   Botswana  1977 24.89860950
## 3205                                     Brazil  1977 14.67498588
## 3206                          Brunei Darussalam  1977  1.01731807
## 3208                               Burkina Faso  1977 30.35561266
## 3209                                    Burundi  1977 63.84403621
## 3211                                   Cameroon  1977 33.64508248
## 3215                   Central African Republic  1977 40.24076358
## 3216                                       Chad  1977 35.16572544
## 3217                                      Chile  1977 10.33291608
## 3218                                      China  1977 28.99076923
## 3219                                   Colombia  1977 25.57464667
## 3220                                      Congo  1977 15.42553191
## 3224                                       Cuba  1977 13.32718527
## 3225                                     Cyprus  1977 13.21200322
## 3227           Democratic Republic of the Congo  1977 23.96436718
## 3228                                    Denmark  1977  5.29476791
## 3230                                   Dominica  1977 37.61792453
## 3231                         Dominican Republic  1977 22.24719644
## 3232                                    Ecuador  1977 19.50467434
## 3233                                      Egypt  1977 27.05070312
## 3238                                   Eswatini  1977 32.09302326
## 3240                                       Fiji  1977 23.32839194
## 3241                                    Finland  1977  9.65238574
## 3242                                     France  1977  4.83004460
## 3247                                      Ghana  1977 60.93628594
## 3249                                    Grenada  1977 20.13700348
## 3252                              Guinea-Bissau  1977 46.15440050
## 3253                                     Guyana  1977 20.67883068
## 3254                                   Honduras  1977 30.62755798
## 3257                                      India  1977 38.46614846
## 3259                 Iran (Islamic Republic of)  1977  5.83923239
## 3265                                     Jordan  1977  8.67632532
## 3267                                      Kenya  1977 41.95099653
## 3274                                    Lesotho  1977 43.72283737
## 3275                                    Liberia  1977 31.87007753
## 3279                                 Madagascar  1977 32.79653778
## 3280                                     Malawi  1977 41.78973534
## 3281                                   Malaysia  1977 28.21446135
## 3283                                       Mali  1977 61.25712027
## 3284                                      Malta  1977  5.78766670
## 3286                                 Mauritania  1977 29.23001579
## 3287                                  Mauritius  1977 20.87313341
## 3288                                     Mexico  1977 11.16101531
## 3296                                      Nepal  1977 63.91264349
## 3297                                Netherlands  1977  3.94759825
## 3298                                New Zealand  1977 11.05436680
## 3301                                     Norway  1977  5.04637474
## 3303                                       Oman  1977  2.55784307
## 3304                                   Pakistan  1977 32.33369168
## 3306                                     Panama  1977  9.70489542
## 3307                           Papua New Guinea  1977 35.24232700
## 3309                                       Peru  1977 15.65355954
## 3310                                Philippines  1977 28.71826251
## 3314                          Republic of Korea  1977 24.20777780
## 3319                      Saint Kitts and Nevis  1977 11.51893398
## 3320                                Saint Lucia  1977 12.69225307
## 3321           Saint Vincent and the Grenadines  1977 13.37455242
## 3323                               Saudi Arabia  1977  1.17237239
## 3326                                 Seychelles  1977  9.91445492
## 3327                               Sierra Leone  1977 37.23225806
## 3328                                  Singapore  1977  2.06871145
## 3332                                    Somalia  1977 61.00192106
## 3333                               South Africa  1977  7.03958640
## 3335                                  Sri Lanka  1977 30.97782322
## 3336                                      Sudan  1977 39.88930364
## 3337                                   Suriname  1977  8.36208462
## 3342                                   Thailand  1977 24.78309776
## 3345                                       Togo  1977 35.44502501
## 3346                                      Tonga  1977 43.87352371
## 3348                                    Tunisia  1977 18.54605756
## 3349                                     Turkey  1977 32.40000000
## 3352                                     Uganda  1977 73.96886373
## 3361         Venezuela (Bolivarian Republic of)  1977  4.89881709
## 3365                                     Zambia  1977 18.12312145
## 3366                                   Zimbabwe  1977 18.11441992
## 3369                                    Algeria  1978  8.80562144
## 3372                        Antigua and Barbuda  1978  5.02274352
## 3373                                  Argentina  1978  7.50442748
## 3377                                    Austria  1978  4.97232400
## 3381                                 Bangladesh  1978 54.25030830
## 3385                                     Belize  1978 31.36165145
## 3386                                      Benin  1978 34.54214391
## 3389           Bolivia (Plurinational State of)  1978 19.12915515
## 3391                                   Botswana  1978 20.59629883
## 3392                                     Brazil  1978 11.61129227
## 3393                          Brunei Darussalam  1978  1.08715347
## 3395                               Burkina Faso  1978 31.92544699
## 3396                                    Burundi  1978 60.71442473
## 3398                                   Cameroon  1978 31.35335451
## 3402                   Central African Republic  1978 39.73663519
## 3403                                       Chad  1978 35.76616923
## 3404                                      Chile  1978  8.01379415
## 3405                                      China  1978 27.68541782
## 3406                                   Colombia  1978 23.56027123
## 3407                                      Congo  1978 16.03630862
## 3411                                       Cuba  1978 13.34883745
## 3412                                     Cyprus  1978 10.91807019
## 3414           Democratic Republic of the Congo  1978 27.49831679
## 3415                                    Denmark  1978  5.39341848
## 3417                                   Dominica  1978 39.12017370
## 3418                         Dominican Republic  1978 20.27496819
## 3419                                    Ecuador  1978 19.06680798
## 3420                                      Egypt  1978 25.34087325
## 3425                                   Eswatini  1978 35.49618321
## 3427                                       Fiji  1978 21.94401244
## 3428                                    Finland  1978  9.24713945
## 3429                                     France  1978  4.68664431
## 3434                                      Ghana  1978 65.04492546
## 3436                                    Grenada  1978 18.44887216
## 3439                              Guinea-Bissau  1978 51.61292975
## 3440                                     Guyana  1978 22.59399489
## 3441                                   Honduras  1978 27.17739666
## 3444                                      India  1978 36.78337959
## 3446                 Iran (Islamic Republic of)  1978  7.68594944
## 3452                                     Jordan  1978 10.81005194
## 3454                                      Kenya  1978 36.92241142
## 3455                                   Kiribati  1978 19.62365591
## 3461                                    Lesotho  1978 37.90442049
## 3462                                    Liberia  1978 34.32143532
## 3466                                 Madagascar  1978 32.22944415
## 3467                                     Malawi  1978 39.71717172
## 3468                                   Malaysia  1978 26.38947421
## 3470                                       Mali  1978 58.18650300
## 3471                                      Malta  1978  4.40407113
## 3473                                 Mauritania  1978 30.83085726
## 3474                                  Mauritius  1978 18.87957809
## 3475                                     Mexico  1978 10.91314932
## 3483                                      Nepal  1978 63.04135187
## 3484                                Netherlands  1978  3.80174750
## 3485                                New Zealand  1978 10.21664766
## 3488                                     Norway  1978  4.77424850
## 3490                                       Oman  1978  3.25798509
## 3491                                   Pakistan  1978 31.61919775
## 3493                                     Panama  1978  8.97914095
## 3494                           Papua New Guinea  1978 38.32818952
## 3496                                       Peru  1978 13.11734011
## 3497                                Philippines  1978 28.21541534
## 3501                          Republic of Korea  1978 22.24060771
## 3506                      Saint Kitts and Nevis  1978  9.89337347
## 3507                                Saint Lucia  1978 13.14384209
## 3508           Saint Vincent and the Grenadines  1978 16.01432195
## 3510                               Saudi Arabia  1978  1.53735648
## 3513                                 Seychelles  1978  9.14411119
## 3514                               Sierra Leone  1978 34.97743216
## 3515                                  Singapore  1978  1.73090002
## 3519                                    Somalia  1978 62.93552597
## 3520                               South Africa  1978  6.71761338
## 3522                                  Sri Lanka  1978 30.78518575
## 3523                                      Sudan  1978 38.95202251
## 3524                                   Suriname  1978  7.41969415
## 3529                                   Thailand  1978 24.49815527
## 3532                                       Togo  1978 24.08602163
## 3533                                      Tonga  1978 41.79010675
## 3535                                    Tunisia  1978 17.62935089
## 3536                                     Turkey  1978 32.66034796
## 3539                                     Uganda  1978 74.26910118
## 3548         Venezuela (Bolivarian Republic of)  1978  4.94423942
## 3552                                     Zambia  1978 18.11106122
## 3553                                   Zimbabwe  1978 14.35554763
## 3556                                    Algeria  1979  9.01662858
## 3559                        Antigua and Barbuda  1979  4.00759330
## 3560                                  Argentina  1979  7.79627736
## 3564                                    Austria  1979  4.82483378
## 3568                                 Bangladesh  1979 52.45201206
## 3572                                     Belize  1979 30.76923077
## 3573                                      Benin  1979 34.99288604
## 3576           Bolivia (Plurinational State of)  1979 18.58726299
## 3578                                   Botswana  1979 16.49045020
## 3579                                     Brazil  1979 11.01609103
## 3580                          Brunei Darussalam  1979  0.90206820
## 3582                               Burkina Faso  1979 30.26927143
## 3583                                    Burundi  1979 60.62203176
## 3585                                   Cameroon  1979 30.82360287
## 3589                   Central African Republic  1979 39.07563299
## 3590                                       Chad  1979 40.81380747
## 3591                                      Chile  1979  7.68837803
## 3592                                      China  1979 30.70327870
## 3593                                   Colombia  1979 21.99908104
## 3594                                      Congo  1979 14.31372549
## 3598                                       Cuba  1979 13.37320898
## 3599                                     Cyprus  1979 10.24134700
## 3601           Democratic Republic of the Congo  1979 28.31871738
## 3602                                    Denmark  1979  4.60019953
## 3604                                   Dominica  1979 32.89224953
## 3605                         Dominican Republic  1979 20.36008883
## 3606                                    Ecuador  1979 16.71593274
## 3607                                      Egypt  1979 20.90736186
## 3612                                   Eswatini  1979 33.00000000
## 3614                                       Fiji  1979 21.55504234
## 3615                                    Finland  1979  9.07527406
## 3616                                     France  1979  4.67503237
## 3621                                      Ghana  1979 63.39051614
## 3623                                    Grenada  1979 19.98945126
## 3626                              Guinea-Bissau  1979 51.58871981
## 3627                                     Guyana  1979 22.34755322
## 3628                                   Honduras  1979 25.58023523
## 3631                                      India  1979 34.87254905
## 3633                 Iran (Islamic Republic of)  1979  8.57777571
## 3639                                     Jordan  1979  6.83608922
## 3641                                      Kenya  1979 34.59571119
## 3642                                   Kiribati  1979 18.50244617
## 3648                                    Lesotho  1979 38.83406032
## 3649                                    Liberia  1979 34.27732502
## 3653                                 Madagascar  1979 29.76746820
## 3654                                     Malawi  1979 55.20398023
## 3655                                   Malaysia  1979 24.87528584
## 3657                                       Mali  1979 61.42391116
## 3658                                      Malta  1979  3.75921879
## 3660                                 Mauritania  1979 28.44708167
## 3661                                  Mauritius  1979 19.86964118
## 3662                                     Mexico  1979  9.84851819
## 3670                                      Nepal  1979 64.31974655
## 3671                                Netherlands  1979  3.75397693
## 3672                                New Zealand  1979 12.41321991
## 3675                                     Norway  1979  4.25990844
## 3677                                       Oman  1979  3.14499741
## 3678                                   Pakistan  1979 30.41316968
## 3680                                     Panama  1979  8.30133078
## 3681                           Papua New Guinea  1979 35.95914916
## 3683                                       Peru  1979 11.68161373
## 3684                                Philippines  1979 27.44406111
## 3688                          Republic of Korea  1979 20.68166719
## 3693                      Saint Kitts and Nevis  1979  9.29228375
## 3694                                Saint Lucia  1979 12.38874120
## 3695           Saint Vincent and the Grenadines  1979 14.12207949
## 3697                               Saudi Arabia  1979  1.22387202
## 3700                                 Seychelles  1979  7.95131846
## 3701                               Sierra Leone  1979 33.27346630
## 3702                                  Singapore  1979  1.61172846
## 3706                                    Somalia  1979 58.65456036
## 3707                               South Africa  1979  5.96952482
## 3709                                  Sri Lanka  1979 27.23629965
## 3710                                      Sudan  1979 35.57462458
## 3711                                   Suriname  1979  8.65865492
## 3716                                   Thailand  1979 23.99355950
## 3719                                       Togo  1979 25.35583162
## 3720                                      Tonga  1979 41.71079395
## 3722                                    Tunisia  1979 15.78380535
## 3723                                     Turkey  1979 28.57511426
## 3726                                     Uganda  1979 65.57032232
## 3734                                    Vanuatu  1979 21.95122219
## 3735         Venezuela (Bolivarian Republic of)  1979  4.77153609
## 3739                                     Zambia  1979 16.39019559
## 3740                                   Zimbabwe  1979 13.59243639
## 3742                                    Albania  1980 33.60020616
## 3743                                    Algeria  1980  8.50923434
## 3746                        Antigua and Barbuda  1980  3.46057064
## 3747                                  Argentina  1980  6.35350500
## 3751                                    Austria  1980  4.86880666
## 3755                                 Bangladesh  1980 31.55431840
## 3759                                     Belize  1980 27.43830787
## 3760                                      Benin  1980 35.43268847
## 3762                                     Bhutan  1980 43.63844989
## 3763           Bolivia (Plurinational State of)  1980 19.01624314
## 3765                                   Botswana  1980 14.68629513
## 3766                                     Brazil  1980 11.01366772
## 3767                          Brunei Darussalam  1980  0.63485446
## 3768                                   Bulgaria  1980 14.61081185
## 3769                               Burkina Faso  1980 29.40998741
## 3770                                    Burundi  1980 62.24988570
## 3772                                   Cameroon  1980 31.27199216
## 3776                   Central African Republic  1980 39.99999621
## 3777                                       Chad  1980 45.08867461
## 3778                                      Chile  1980  7.64997797
## 3779                                      China  1980 29.63393836
## 3780                                   Colombia  1980 19.91112489
## 3781                                      Congo  1980 11.68146781
## 3785                                       Cuba  1980 13.23735007
## 3786                                     Cyprus  1980  9.58831675
## 3788           Democratic Republic of the Congo  1980 26.82151400
## 3789                                    Denmark  1980  4.71096215
## 3791                                   Dominica  1980 30.68039516
## 3792                         Dominican Republic  1980 21.81580559
## 3793                                    Ecuador  1980 16.73662709
## 3794                                      Egypt  1980 18.26365912
## 3799                                   Eswatini  1980 22.70803829
## 3801                                       Fiji  1980 22.14206192
## 3802                                    Finland  1980  9.59181640
## 3803                                     France  1980  4.06101034
## 3806                                    Georgia  1980 24.76190476
## 3808                                      Ghana  1980 60.05613628
## 3810                                    Grenada  1980 18.61754390
## 3813                              Guinea-Bissau  1980 44.28718400
## 3814                                     Guyana  1980 23.35329341
## 3815                                   Honduras  1980 23.66645215
## 3818                                      India  1980 36.70204813
## 3820                 Iran (Islamic Republic of)  1980 11.30514842
## 3826                                     Jordan  1980  7.85795240
## 3828                                      Kenya  1980 32.59223737
## 3829                                   Kiribati  1980 20.74352298
## 3835                                    Lesotho  1980 24.61090078
## 3836                                    Liberia  1980 35.88411996
## 3840                                 Madagascar  1980 30.05120856
## 3841                                     Malawi  1980 43.73324091
## 3842                                   Malaysia  1980 23.02726814
## 3844                                       Mali  1980 41.58998398
## 3845                                      Malta  1980  3.65956647
## 3847                                 Mauritania  1980 30.38384770
## 3848                                  Mauritius  1980 13.13248376
## 3849                                     Mexico  1980  8.99562343
## 3853                                    Morocco  1980 16.68962898
## 3854                                 Mozambique  1980 37.08561969
## 3856                                    Namibia  1980  8.40298642
## 3857                                      Nepal  1980 61.77465300
## 3858                                Netherlands  1980  3.69139463
## 3859                                New Zealand  1980 11.06259709
## 3862                                     Norway  1980  4.05562115
## 3864                                       Oman  1980  2.56060741
## 3865                                   Pakistan  1980 29.51728886
## 3867                                     Panama  1980  7.61485050
## 3868                           Papua New Guinea  1980 35.39827295
## 3871                                Philippines  1980 25.11559022
## 3875                          Republic of Korea  1980 15.90986821
## 3880                      Saint Kitts and Nevis  1980  9.93665034
## 3881                                Saint Lucia  1980  9.98155026
## 3882           Saint Vincent and the Grenadines  1980 11.23426528
## 3884                               Saudi Arabia  1980  0.98633310
## 3885                                    Senegal  1980 20.08996986
## 3887                                 Seychelles  1980  7.43134087
## 3888                               Sierra Leone  1980 33.03529412
## 3889                                  Singapore  1980  1.56805268
## 3893                                    Somalia  1980 68.41879784
## 3894                               South Africa  1980  6.19681288
## 3896                                  Sri Lanka  1980 27.81798728
## 3897                                      Sudan  1980 32.85805438
## 3898                                   Suriname  1980  9.14238879
## 3899                                     Sweden  1980  4.30449656
## 3903                                   Thailand  1980 23.23987777
## 3906                                       Togo  1980 27.48854606
## 3907                                      Tonga  1980 38.49740039
## 3909                                    Tunisia  1980 16.32779609
## 3910                                     Turkey  1980 26.50387597
## 3913                                     Uganda  1980 72.02925783
## 3921                                    Vanuatu  1980 18.89775074
## 3922         Venezuela (Bolivarian Republic of)  1980  4.80187993
## 3926                                     Zambia  1980 15.07070991
## 3927                                   Zimbabwe  1980 15.69711792
## 3929                                    Albania  1981 32.40029884
## 3930                                    Algeria  1981  9.23512772
## 3933                        Antigua and Barbuda  1981  3.34976158
## 3934                                  Argentina  1981  6.47552296
## 3938                                    Austria  1981  4.47160142
## 3942                                 Bangladesh  1981 33.55332326
## 3946                                     Belize  1981 26.13168724
## 3947                                      Benin  1981 32.66465235
## 3949                                     Bhutan  1981 41.39601602
## 3950           Bolivia (Plurinational State of)  1981 19.27080099
## 3952                                   Botswana  1981 14.27195686
## 3953                                     Brazil  1981 10.73569424
## 3954                          Brunei Darussalam  1981  0.69380454
## 3955                                   Bulgaria  1981 17.04008283
## 3956                               Burkina Faso  1981 30.72000492
## 3957                                    Burundi  1981 61.31928993
## 3959                                   Cameroon  1981 29.39742062
## 3963                   Central African Republic  1981 39.67361176
## 3964                                       Chad  1981 39.74994929
## 3965                                      Chile  1981  6.88244565
## 3966                                      China  1981 31.31558121
## 3967                                   Colombia  1981 19.80134268
## 3968                                      Congo  1981  7.88259184
## 3972                                       Cuba  1981 13.30498280
## 3973                                     Cyprus  1981  9.25799218
## 3975           Democratic Republic of the Congo  1981 25.93109118
## 3976                                    Denmark  1981  5.00775409
## 3978                                   Dominica  1981 31.71800405
## 3979                         Dominican Republic  1981 20.07136605
## 3980                                    Ecuador  1981 16.25205359
## 3981                                      Egypt  1981 20.09424964
## 3986                                   Eswatini  1981 22.70803949
## 3987                                   Ethiopia  1981 58.08064422
## 3988                                       Fiji  1981 19.89095312
## 3989                                    Finland  1981  8.59407224
## 3990                                     France  1981  3.96846916
## 3993                                    Georgia  1981 25.21739130
## 3995                                      Ghana  1981 55.26598718
## 3997                                    Grenada  1981 19.35781636
## 4000                              Guinea-Bissau  1981 53.27753248
## 4001                                     Guyana  1981 22.22222222
## 4002                                   Honduras  1981 22.39190555
## 4005                                      India  1981 35.33244622
## 4007                 Iran (Islamic Republic of)  1981 13.88979032
## 4013                                     Jordan  1981  6.08185352
## 4015                                      Kenya  1981 32.49981199
## 4016                                   Kiribati  1981 26.93750247
## 4022                                    Lesotho  1981 26.81046118
## 4023                                    Liberia  1981 31.56143220
## 4027                                 Madagascar  1981 33.07584521
## 4028                                     Malawi  1981 39.82519244
## 4029                                   Malaysia  1981 21.82103241
## 4031                                       Mali  1981 42.61273524
## 4032                                      Malta  1981  3.75019434
## 4034                                 Mauritania  1981 31.88270560
## 4035                                  Mauritius  1981 15.22543478
## 4036                                     Mexico  1981  8.96472579
## 4038                                   Mongolia  1981 16.74278822
## 4040                                    Morocco  1981 11.72783811
## 4041                                 Mozambique  1981 35.09995719
## 4043                                    Namibia  1981  9.07610576
## 4044                                      Nepal  1981 60.90473439
## 4045                                Netherlands  1981  4.13067599
## 4046                                New Zealand  1981  9.70417473
## 4048                                    Nigeria  1981 28.51830525
## 4049                                     Norway  1981  4.07266741
## 4052                                   Pakistan  1981 30.82705579
## 4054                                     Panama  1981  7.45600735
## 4055                           Papua New Guinea  1981 35.83555699
## 4058                                Philippines  1981 24.89097857
## 4062                          Republic of Korea  1981 16.74521852
## 4064                                    Romania  1981 16.44467213
## 4067                      Saint Kitts and Nevis  1981  6.83499349
## 4068                                Saint Lucia  1981  9.35948514
## 4069           Saint Vincent and the Grenadines  1981 13.31971715
## 4071                               Saudi Arabia  1981  1.00342174
## 4072                                    Senegal  1981 22.28741852
## 4074                                 Seychelles  1981  9.20356112
## 4075                               Sierra Leone  1981 32.30480736
## 4076                                  Singapore  1981  1.51819717
## 4080                                    Somalia  1981 68.28317889
## 4081                               South Africa  1981  6.44226261
## 4083                                  Sri Lanka  1981 27.96159108
## 4084                                      Sudan  1981 36.36544911
## 4085                                   Suriname  1981  9.28737156
## 4086                                     Sweden  1981  4.38479380
## 4090                                   Thailand  1981 21.35710076
## 4093                                       Togo  1981 28.18356320
## 4094                                      Tonga  1981 39.05793548
## 4096                                    Tunisia  1981 15.62336913
## 4097                                     Turkey  1981 24.51713156
## 4100                                     Uganda  1981 58.42696629
## 4108                                    Vanuatu  1981 21.35024060
## 4109         Venezuela (Bolivarian Republic of)  1981  4.89697582
## 4113                                     Zambia  1981 17.40992935
## 4114                                   Zimbabwe  1981 17.73660457
## 4116                                    Albania  1982 31.69971047
## 4117                                    Algeria  1982  8.38978654
## 4120                        Antigua and Barbuda  1982  3.08371031
## 4121                                  Argentina  1982  9.59615605
## 4125                                    Austria  1982  4.10325968
## 4129                                 Bangladesh  1982 32.97962742
## 4133                                     Belize  1982 22.51192369
## 4134                                      Benin  1982 32.50119968
## 4136                                     Bhutan  1982 42.17817588
## 4137           Bolivia (Plurinational State of)  1982 17.62611102
## 4139                                   Botswana  1982 11.67228444
## 4140                                     Brazil  1982  8.96790058
## 4141                          Brunei Darussalam  1982  0.84378938
## 4142                                   Bulgaria  1982 17.16503758
## 4143                               Burkina Faso  1982 28.41455059
## 4144                                    Burundi  1982 56.85609019
## 4146                                   Cameroon  1982 28.66005643
## 4150                   Central African Republic  1982 41.67380645
## 4151                                       Chad  1982 39.45673604
## 4152                                      Chile  1982  6.60238762
## 4153                                      China  1982 32.78570310
## 4154                                   Colombia  1982 19.30392809
## 4155                                      Congo  1982  7.85915493
## 4159                                       Cuba  1982 13.37121358
## 4160                                     Cyprus  1982  9.26919498
## 4162           Democratic Republic of the Congo  1982 31.44654096
## 4163                                    Denmark  1982  5.34609213
## 4165                                   Dominica  1982 30.44009780
## 4166                         Dominican Republic  1982 18.83593704
## 4167                                    Ecuador  1982 16.36077834
## 4168                                      Egypt  1982 19.56510980
## 4173                                   Eswatini  1982 20.33970276
## 4174                                   Ethiopia  1982 56.33285861
## 4175                                       Fiji  1982 20.27005442
## 4176                                    Finland  1982  8.73080457
## 4177                                     France  1982  4.55418564
## 4180                                    Georgia  1982 23.14049587
## 4182                                      Ghana  1982 59.35771248
## 4184                                    Grenada  1982 16.33808881
## 4187                              Guinea-Bissau  1982 46.76548387
## 4188                                     Guyana  1982 23.36000000
## 4189                                   Honduras  1982 21.64022134
## 4192                                      India  1982 34.09886606
## 4194                 Iran (Islamic Republic of)  1982 13.00058774
## 4200                                     Jordan  1982  6.16497445
## 4202                                      Kenya  1982 33.36459631
## 4203                                   Kiribati  1982 26.21501706
## 4209                                    Lesotho  1982 17.28247235
## 4210                                    Liberia  1982 32.23957593
## 4214                                 Madagascar  1982 34.22740193
## 4215                                     Malawi  1982 41.05597167
## 4216                                   Malaysia  1982 21.50166073
## 4218                                       Mali  1982 40.40048229
## 4219                                      Malta  1982  3.87727217
## 4221                                 Mauritania  1982 33.11553677
## 4222                                  Mauritius  1982 16.21100944
## 4223                                     Mexico  1982  8.14258082
## 4225                                   Mongolia  1982 18.03641480
## 4227                                    Morocco  1982 14.24837354
## 4228                                 Mozambique  1982 33.80004155
## 4230                                    Namibia  1982  8.79674642
## 4231                                      Nepal  1982 61.00836790
## 4232                                Netherlands  1982  4.23659276
## 4233                                New Zealand  1982  8.59148482
## 4235                                    Nigeria  1982 32.41438073
## 4236                                     Norway  1982  3.83825089
## 4239                                   Pakistan  1982 31.56428328
## 4241                                     Panama  1982  6.94319745
## 4242                           Papua New Guinea  1982 35.12509289
## 4245                                Philippines  1982 23.34816207
## 4249                          Republic of Korea  1982 15.61305242
## 4251                                    Romania  1982 19.92753623
## 4254                      Saint Kitts and Nevis  1982  9.13090668
## 4255                                Saint Lucia  1982  9.99220134
## 4256           Saint Vincent and the Grenadines  1982 12.70824748
## 4258                               Saudi Arabia  1982  1.59365280
## 4259                                    Senegal  1982 22.96073323
## 4261                                 Seychelles  1982  7.79285976
## 4262                               Sierra Leone  1982 35.84968407
## 4263                                  Singapore  1982  1.39262595
## 4267                                    Somalia  1982 67.72738991
## 4268                               South Africa  1982  5.67853339
## 4270                                  Sri Lanka  1982 26.59945021
## 4271                                      Sudan  1982 36.90325938
## 4272                                   Suriname  1982  9.10295231
## 4273                                     Sweden  1982  4.52215758
## 4277                                   Thailand  1982 18.54844952
## 4280                                       Togo  1982 26.96296705
## 4281                                      Tonga  1982 38.14238656
## 4283                                    Tunisia  1982 14.95256347
## 4284                                     Turkey  1982 22.68519862
## 4287                                     Uganda  1982 53.73280943
## 4295                                    Vanuatu  1982 19.97182805
## 4296         Venezuela (Bolivarian Republic of)  1982  5.20281820
## 4300                                     Zambia  1982 14.89184948
## 4301                                   Zimbabwe  1982 16.11974184
## 4303                                    Albania  1983 34.10009748
## 4304                                    Algeria  1983  7.74615048
## 4307                        Antigua and Barbuda  1983  3.03557659
## 4308                                  Argentina  1983  8.65832496
## 4312                                    Austria  1983  3.84633988
## 4316                                 Bangladesh  1983 32.39604765
## 4320                                     Belize  1983 21.48214821
## 4321                                      Benin  1983 33.15764430
## 4323                                     Bhutan  1983 42.31561939
## 4324           Bolivia (Plurinational State of)  1983 20.68747219
## 4326                                   Botswana  1983  9.01178126
## 4327                                     Brazil  1983 10.93790659
## 4328                          Brunei Darussalam  1983  0.98474870
## 4329                                   Bulgaria  1983 14.49470005
## 4330                               Burkina Faso  1983 28.22589406
## 4331                                    Burundi  1983 57.24614179
## 4333                                   Cameroon  1983 24.31134078
## 4337                   Central African Republic  1983 40.37074060
## 4338                                       Chad  1983 39.15669484
## 4339                                      Chile  1983  6.24606887
## 4340                                      China  1983 32.56812238
## 4341                                   Colombia  1983 19.18011959
## 4342                                      Congo  1983  7.58258258
## 4343                                 Costa Rica  1983 13.88013264
## 4346                                       Cuba  1983 13.45673236
## 4347                                     Cyprus  1983  7.90006133
## 4349           Democratic Republic of the Congo  1983 34.54651271
## 4350                                    Denmark  1983  4.65463433
## 4352                                   Dominica  1983 29.09876954
## 4353                         Dominican Republic  1983 18.45178802
## 4354                                    Ecuador  1983 17.39095962
## 4355                                      Egypt  1983 19.63770708
## 4360                                   Eswatini  1983 17.19872306
## 4361                                   Ethiopia  1983 57.46759530
## 4362                                       Fiji  1983 18.40649382
## 4363                                    Finland  1983  8.48420805
## 4364                                     France  1983  4.04364944
## 4367                                    Georgia  1983 23.57723577
## 4371                                    Grenada  1983 15.54982997
## 4374                              Guinea-Bissau  1983 42.45001263
## 4375                                     Guyana  1983 24.25000000
## 4376                                   Honduras  1983 21.14863863
## 4379                                      India  1983 34.78906383
## 4381                 Iran (Islamic Republic of)  1983 11.39496271
## 4387                                     Jordan  1983  6.86317367
## 4389                                      Kenya  1983 34.21953403
## 4390                                   Kiribati  1983 26.48339856
## 4396                                    Lesotho  1983 17.41733655
## 4397                                    Liberia  1983 33.84838425
## 4401                                 Madagascar  1983 35.78422679
## 4402                                     Malawi  1983 42.29746861
## 4403                                   Malaysia  1983 20.22308855
## 4405                                       Mali  1983 37.03897588
## 4406                                      Malta  1983  4.31102844
## 4408                                 Mauritania  1983 33.79657098
## 4409                                  Mauritius  1983 14.65499954
## 4410                                     Mexico  1983  8.45074668
## 4411           Micronesia (Federated States of)  1983 44.54365079
## 4412                                   Mongolia  1983 18.41536439
## 4414                                    Morocco  1983 13.96573509
## 4415                                 Mozambique  1983 37.59998503
## 4417                                    Namibia  1983  8.38386498
## 4418                                      Nepal  1983 60.30401776
## 4419                                Netherlands  1983  4.04744965
## 4420                                New Zealand  1983  8.76034417
## 4422                                    Nigeria  1983 35.46999100
## 4423                                     Norway  1983  3.33192292
## 4426                                   Pakistan  1983 30.26077046
## 4428                                     Panama  1983  7.43898725
## 4429                           Papua New Guinea  1983 35.17030720
## 4432                                Philippines  1983 22.36525170
## 4436                          Republic of Korea  1983 14.17032099
## 4441                      Saint Kitts and Nevis  1983  7.11983432
## 4442                                Saint Lucia  1983 10.79588456
## 4443           Saint Vincent and the Grenadines  1983 11.84789349
## 4445                               Saudi Arabia  1983  2.16071237
## 4446                                    Senegal  1983 18.60834980
## 4448                                 Seychelles  1983  9.38720703
## 4449                               Sierra Leone  1983 38.13017620
## 4450                                  Singapore  1983  1.22431598
## 4454                                    Somalia  1983 66.42269859
## 4455                               South Africa  1983  4.41405345
## 4457                                  Sri Lanka  1983 28.47600719
## 4458                                      Sudan  1983 33.72544264
## 4459                                   Suriname  1983  8.23598131
## 4460                                     Sweden  1983  4.46940111
## 4464                                   Thailand  1983 20.06017393
## 4467                                       Togo  1983 34.47566818
## 4468                                      Tonga  1983 36.28196268
## 4470                                    Tunisia  1983 14.50635790
## 4471                                     Turkey  1983 21.35953703
## 4474                                     Uganda  1983 57.57184372
## 4480                                    Uruguay  1983 13.40118019
## 4482                                    Vanuatu  1983 25.10280545
## 4483         Venezuela (Bolivarian Republic of)  1983  5.58738377
## 4487                                     Zambia  1983 16.72818461
## 4488                                   Zimbabwe  1983 11.23770396
## 4490                                    Albania  1984 33.09994105
## 4491                                    Algeria  1984  7.53086430
## 4494                        Antigua and Barbuda  1984  2.30358455
## 4495                                  Argentina  1984  8.34597684
## 4499                                    Austria  1984  4.07463363
## 4501                                    Bahamas  1984  2.33338929
## 4503                                 Bangladesh  1984 36.32530746
## 4507                                     Belize  1984 20.83445491
## 4508                                      Benin  1984 33.31156053
## 4510                                     Bhutan  1984 42.68184695
## 4511           Bolivia (Plurinational State of)  1984 22.75380441
## 4513                                   Botswana  1984  7.65307880
## 4514                                     Brazil  1984 11.46086133
## 4515                          Brunei Darussalam  1984  1.06587346
## 4516                                   Bulgaria  1984 15.83792690
## 4517                               Burkina Faso  1984 29.11195056
## 4518                                    Burundi  1984 60.13098241
## 4520                                   Cameroon  1984 23.76881242
## 4524                   Central African Republic  1984 42.02692308
## 4525                                       Chad  1984 33.61263965
## 4526                                      Chile  1984  7.71787832
## 4527                                      China  1984 31.53969556
## 4528                                   Colombia  1984 17.79984867
## 4529                                      Congo  1984  6.91704747
## 4530                                 Costa Rica  1984 13.32586857
## 4533                                       Cuba  1984 13.49433037
## 4534                                     Cyprus  1984  8.94272315
## 4536           Democratic Republic of the Congo  1984 31.43857489
## 4537                                    Denmark  1984  5.37928847
## 4539                                   Dominica  1984 28.02308945
## 4540                         Dominican Republic  1984 20.07043181
## 4541                                    Ecuador  1984 19.28720211
## 4542                                      Egypt  1984 20.05036276
## 4547                                   Eswatini  1984 21.65998664
## 4548                                   Ethiopia  1984 51.17965586
## 4549                                       Fiji  1984 15.98843764
## 4550                                    Finland  1984  8.18829699
## 4551                                     France  1984  3.77722549
## 4554                                    Georgia  1984 25.95419847
## 4556                                      Ghana  1984 51.90365069
## 4558                                    Grenada  1984 14.95744932
## 4561                              Guinea-Bissau  1984 41.31734359
## 4562                                     Guyana  1984 24.71509972
## 4563                                   Honduras  1984 20.82210243
## 4566                                      India  1984 33.40515117
## 4568                 Iran (Islamic Republic of)  1984 12.74252133
## 4574                                     Jordan  1984  5.64544089
## 4576                                      Kenya  1984 33.97064135
## 4577                                   Kiribati  1984 44.34960737
## 4583                                    Lesotho  1984 16.28632343
## 4584                                    Liberia  1984 35.45335220
## 4588                                 Madagascar  1984 35.29011343
## 4589                                     Malawi  1984 42.04303276
## 4590                                   Malaysia  1984 20.34569441
## 4592                                       Mali  1984 36.69367364
## 4593                                      Malta  1984  4.45405989
## 4595                                 Mauritania  1984 28.57487303
## 4596                                  Mauritius  1984 15.29498455
## 4597                                     Mexico  1984  9.39246701
## 4599                                   Mongolia  1984 17.20092907
## 4601                                    Morocco  1984 13.39798143
## 4602                                 Mozambique  1984 30.16013253
## 4604                                    Namibia  1984  8.29340913
## 4605                                      Nepal  1984 60.99340852
## 4606                                Netherlands  1984  4.02767218
## 4607                                New Zealand  1984  9.84452176
## 4609                                    Nigeria  1984 39.91684016
## 4610                                     Norway  1984  3.44852816
## 4613                                   Pakistan  1984 27.91512772
## 4615                                     Panama  1984  6.96501768
## 4616                           Papua New Guinea  1984 40.53440530
## 4619                                Philippines  1984 24.75285091
## 4623                          Republic of Korea  1984 13.20949209
## 4628                      Saint Kitts and Nevis  1984  7.62373868
## 4629                                Saint Lucia  1984 11.11158134
## 4630           Saint Vincent and the Grenadines  1984 14.03188583
## 4632                               Saudi Arabia  1984  2.75644158
## 4633                                    Senegal  1984 20.10907436
## 4635                                 Seychelles  1984  7.72248375
## 4636                               Sierra Leone  1984 40.12192799
## 4637                                  Singapore  1984  1.11231518
## 4641                                    Somalia  1984 67.90003436
## 4642                               South Africa  1984  4.79420905
## 4644                                  Sri Lanka  1984 28.85648934
## 4645                                      Sudan  1984 30.74932333
## 4646                                   Suriname  1984  8.88257826
## 4647                                     Sweden  1984  4.47715149
## 4651                                   Thailand  1984 17.57385642
## 4654                                       Togo  1984 33.46080359
## 4655                                      Tonga  1984 37.70715168
## 4656                        Trinidad and Tobago  1984  2.64305815
## 4657                                    Tunisia  1984 16.29911824
## 4658                                     Turkey  1984 21.69041728
## 4661                                     Uganda  1984 54.81880252
## 4667                                    Uruguay  1984 14.62802845
## 4669                                    Vanuatu  1984 26.74894060
## 4670         Venezuela (Bolivarian Republic of)  1984  5.55648132
## 4674                                     Zambia  1984 16.36135508
## 4675                                   Zimbabwe  1984 14.85827230
## 4677                                    Albania  1985 34.60001209
## 4678                                    Algeria  1985  8.99589408
## 4680                                     Angola  1985 13.79150009
## 4681                        Antigua and Barbuda  1985  2.40899963
## 4682                                  Argentina  1985  7.63430726
## 4686                                    Austria  1985  3.55578321
## 4688                                    Bahamas  1985  2.19072165
## 4690                                 Bangladesh  1985 34.82201836
## 4694                                     Belize  1985 20.37259615
## 4695                                      Benin  1985 31.54554889
## 4697                                     Bhutan  1985 43.48254909
## 4698           Bolivia (Plurinational State of)  1985 20.56370083
## 4700                                   Botswana  1985  6.38617008
## 4701                                     Brazil  1985 11.54090033
## 4702                          Brunei Darussalam  1985  1.21254337
## 4703                                   Bulgaria  1985 11.92374671
## 4704                               Burkina Faso  1985 35.18860557
## 4705                                    Burundi  1985 61.53723632
## 4707                                   Cameroon  1985 21.57047735
## 4711                   Central African Republic  1985 47.59643535
## 4712                                       Chad  1985 38.05864051
## 4713                                      Chile  1985  8.37355032
## 4714                                      China  1985 27.93435752
## 4715                                   Colombia  1985 17.45161619
## 4716                                      Congo  1985  7.44743614
## 4717                                 Costa Rica  1985 11.85824657
## 4720                                       Cuba  1985 12.54402779
## 4721                                     Cyprus  1985  7.48886965
## 4723           Democratic Republic of the Congo  1985 31.82167040
## 4724                                    Denmark  1985  4.89908051
## 4726                                   Dominica  1985 27.94697241
## 4727                         Dominican Republic  1985 14.46177788
## 4728                                    Ecuador  1985 19.63764726
## 4729                                      Egypt  1985 19.98622966
## 4734                                   Eswatini  1985 20.65299924
## 4735                                   Ethiopia  1985 55.37018568
## 4736                                       Fiji  1985 18.31476359
## 4737                                    Finland  1985  7.80105935
## 4738                                     France  1985  3.75808768
## 4741                                    Georgia  1985 25.95419847
## 4743                                      Ghana  1985 48.43166237
## 4745                                    Grenada  1985 12.92044073
## 4748                              Guinea-Bissau  1985 46.48738223
## 4749                                     Guyana  1985 26.83374083
## 4750                                   Honduras  1985 21.85461445
## 4753                                      India  1985 32.03845645
## 4755                 Iran (Islamic Republic of)  1985 13.23141611
## 4761                                     Jordan  1985  5.48138930
## 4763                                      Kenya  1985 32.59379147
## 4764                                   Kiribati  1985 35.37646049
## 4770                                    Lesotho  1985 17.13232496
## 4771                                    Liberia  1985 36.52958119
## 4775                                 Madagascar  1985 35.14432992
## 4776                                     Malawi  1985 42.89850772
## 4777                                   Malaysia  1985 20.28147851
## 4779                                       Mali  1985 38.59578813
## 4780                                      Malta  1985  4.35152460
## 4782                                 Mauritania  1985 22.51692409
## 4783                                  Mauritius  1985 16.23853655
## 4784                                     Mexico  1985 10.07199469
## 4786                                   Mongolia  1985 16.40070327
## 4788                                    Morocco  1985 14.73011219
## 4789                                 Mozambique  1985 47.48199985
## 4791                                    Namibia  1985  7.80127157
## 4792                                      Nepal  1985 51.71191639
## 4793                                Netherlands  1985  4.04281371
## 4794                                New Zealand  1985  9.06914223
## 4796                                    Nigeria  1985 39.20744884
## 4797                                     Norway  1985  3.24936152
## 4800                                   Pakistan  1985 28.53687896
## 4802                                     Panama  1985  7.08307050
## 4803                           Papua New Guinea  1985 36.63176244
## 4806                                Philippines  1985 24.57740482
## 4810                          Republic of Korea  1985 13.02968485
## 4815                      Saint Kitts and Nevis  1985  5.75327216
## 4816                                Saint Lucia  1985 12.14673651
## 4817           Saint Vincent and the Grenadines  1985 14.31460935
## 4819                               Saudi Arabia  1985  3.66418827
## 4820                                    Senegal  1985 23.21769759
## 4822                                 Seychelles  1985  6.57245827
## 4823                               Sierra Leone  1985 45.14825814
## 4824                                  Singapore  1985  0.95811432
## 4828                                    Somalia  1985 66.75834045
## 4829                               South Africa  1985  5.17867585
## 4831                                  Sri Lanka  1985 28.05746359
## 4832                                      Sudan  1985 33.54034065
## 4833                                   Suriname  1985  9.12695875
## 4834                                     Sweden  1985  4.46799960
## 4836                       Syrian Arab Republic  1985 21.93774752
## 4837                                 Tajikistan  1985 32.66331658
## 4838                                   Thailand  1985 15.80937021
## 4841                                       Togo  1985 33.66423191
## 4842                                      Tonga  1985 37.78372266
## 4843                        Trinidad and Tobago  1985  3.02138214
## 4844                                    Tunisia  1985 18.10987648
## 4845                                     Turkey  1985 20.25880139
## 4848                                     Uganda  1985 52.74135513
## 4854                                    Uruguay  1985 13.59511315
## 4856                                    Vanuatu  1985 27.82098201
## 4857         Venezuela (Bolivarian Republic of)  1985  6.30577042
## 4861                                     Zambia  1985 14.57076712
## 4862                                   Zimbabwe  1985 22.67356796
## 4864                                    Albania  1986 34.00000038
## 4865                                    Algeria  1986 10.17942174
## 4867                                     Angola  1986 13.68099976
## 4868                        Antigua and Barbuda  1986  2.18247642
## 4869                                  Argentina  1986  7.80040264
## 4873                                    Austria  1986  3.64536643
## 4875                                    Bahamas  1986  2.08401163
## 4877                                 Bangladesh  1986 34.12527403
## 4881                                     Belize  1986 20.95213849
## 4882                                      Benin  1986 33.67105902
## 4884                                     Bhutan  1986 42.10864199
## 4885           Bolivia (Plurinational State of)  1986 18.32860211
## 4887                                   Botswana  1986  5.68768114
## 4888                                     Brazil  1986 11.15718936
## 4889                          Brunei Darussalam  1986  1.92772023
## 4890                                   Bulgaria  1986 13.14305641
## 4891                               Burkina Faso  1986 30.86631082
## 4892                                    Burundi  1986 58.52472731
## 4894                                   Cameroon  1986 22.36366395
## 4898                   Central African Republic  1986 50.17658575
## 4899                                       Chad  1986 32.62196654
## 4900                                      Chile  1986  9.65767850
## 4901                                      China  1986 26.63849653
## 4902                                   Colombia  1986 18.02962947
## 4903                                      Congo  1986 12.08970312
## 4904                                 Costa Rica  1986 13.20240479
## 4907                                       Cuba  1986 13.64256278
## 4908                                     Cyprus  1986  7.32712656
## 4910           Democratic Republic of the Congo  1986 33.62236547
## 4911                                    Denmark  1986  4.56611120
## 4913                                   Dominica  1986 30.24440321
## 4914                         Dominican Republic  1986 19.10477310
## 4915                                    Ecuador  1986 21.85230531
## 4916                                      Egypt  1986 20.78606657
## 4921                                   Eswatini  1986 22.16782421
## 4922                                   Ethiopia  1986 53.92258165
## 4923                                       Fiji  1986 20.89684597
## 4924                                    Finland  1986  7.46179257
## 4925                                     France  1986  3.63267173
## 4928                                    Georgia  1986 26.56250000
## 4930                                      Ghana  1986 48.02698569
## 4932                                    Grenada  1986 12.81859483
## 4934                                     Guinea  1986 23.92811788
## 4935                              Guinea-Bissau  1986 45.26131940
## 4936                                     Guyana  1986 26.67392633
## 4937                                   Honduras  1986 20.57008492
## 4940                                      India  1986 30.84142377
## 4942                 Iran (Islamic Republic of)  1986 15.77547420
## 4948                                     Jordan  1986  5.90026843
## 4950                                      Kenya  1986 33.04248714
## 4951                                   Kiribati  1986 26.75795986
## 4957                                    Lesotho  1986 17.43124048
## 4958                                    Liberia  1986 37.36419758
## 4962                                 Madagascar  1986 36.78812071
## 4963                                     Malawi  1986 43.12020997
## 4964                                   Malaysia  1986 20.18450261
## 4966                                       Mali  1986 37.88220121
## 4967                                      Malta  1986  4.38732324
## 4969                                 Mauritania  1986 26.63100448
## 4970                                  Mauritius  1986 16.19922262
## 4971                                     Mexico  1986 10.30092129
## 4973                                   Mongolia  1986 18.66952831
## 4975                                    Morocco  1986 17.67053847
## 4976                                 Mozambique  1986 41.14175421
## 4978                                    Namibia  1986  8.23213853
## 4979                                      Nepal  1986 51.47485631
## 4980                                Netherlands  1986  4.18134058
## 4981                                New Zealand  1986  7.61015884
## 4983                                    Nigeria  1986 40.33067234
## 4984                                     Norway  1986  3.63244581
## 4987                                   Pakistan  1986 27.62057596
## 4989                                     Panama  1986  7.59882009
## 4990                           Papua New Guinea  1986 35.34232693
## 4993                                Philippines  1986 23.94647940
## 4997                          Republic of Korea  1986 11.54878866
## 5002                      Saint Kitts and Nevis  1986  6.94656666
## 5003                                Saint Lucia  1986 15.33455557
## 5004           Saint Vincent and the Grenadines  1986 14.58403195
## 5006                               Saudi Arabia  1986  4.92547047
## 5007                                    Senegal  1986 24.14428421
## 5009                                 Seychelles  1986  7.10632414
## 5010                               Sierra Leone  1986 37.98118240
## 5011                                  Singapore  1986  0.74401326
## 5015                                    Somalia  1986 62.36591978
## 5016                               South Africa  1986  4.96071245
## 5018                                  Sri Lanka  1986 27.45499682
## 5019                                      Sudan  1986 36.25124875
## 5020                                   Suriname  1986 10.12472487
## 5021                                     Sweden  1986  4.31272327
## 5023                       Syrian Arab Republic  1986 24.91649037
## 5024                                 Tajikistan  1986 33.05227656
## 5025                                   Thailand  1986 15.66414990
## 5028                                       Togo  1986 34.75775806
## 5029                                      Tonga  1986 38.95832850
## 5030                        Trinidad and Tobago  1986  2.95486013
## 5031                                    Tunisia  1986 14.92248062
## 5032                                     Turkey  1986 20.10440599
## 5035                                     Uganda  1986 56.60533233
## 5041                                    Uruguay  1986 12.65181948
## 5043                                    Vanuatu  1986 23.94366197
## 5044         Venezuela (Bolivarian Republic of)  1986  6.67426498
## 5048                                     Zambia  1986 13.56220667
## 5049                                   Zimbabwe  1986 17.76078278
## 5051                                    Albania  1987 33.20002472
## 5052                                    Algeria  1987 12.87465982
## 5054                                     Angola  1987 14.20100021
## 5055                        Antigua and Barbuda  1987  2.21577509
## 5056                                  Argentina  1987  8.09435846
## 5060                                    Austria  1987  3.61143718
## 5062                                    Bahamas  1987  2.08526033
## 5064                                 Bangladesh  1987 34.76872097
## 5068                                     Belize  1987 22.74624374
## 5069                                      Benin  1987 33.27995076
## 5071                                     Bhutan  1987 36.62268579
## 5072           Bolivia (Plurinational State of)  1987 17.71655153
## 5074                                   Botswana  1987  6.69928797
## 5075                                     Brazil  1987 10.00975970
## 5076                          Brunei Darussalam  1987  1.93073489
## 5077                                   Bulgaria  1987 11.41742089
## 5078                               Burkina Faso  1987 28.88169501
## 5079                                    Burundi  1987 55.11138488
## 5081                                   Cameroon  1987 24.81562876
## 5085                   Central African Republic  1987 47.30539046
## 5086                                       Chad  1987 33.11313873
## 5087                                      Chile  1987  9.90749294
## 5088                                      China  1987 26.32089964
## 5089                                   Colombia  1987 18.71662030
## 5090                                      Congo  1987 11.93728588
## 5091                                 Costa Rica  1987 13.50152510
## 5094                                       Cuba  1987 13.69715441
## 5095                                     Cyprus  1987  7.43175017
## 5097           Democratic Republic of the Congo  1987 29.72746504
## 5098                                    Denmark  1987  4.03902052
## 5100                                   Dominica  1987 29.77823220
## 5101                         Dominican Republic  1987 12.79595863
## 5102                                    Ecuador  1987 22.36169843
## 5103                                      Egypt  1987 20.49457662
## 5108                                   Eswatini  1987 16.48416113
## 5109                                   Ethiopia  1987 51.95200151
## 5110                                       Fiji  1987 23.03322520
## 5111                                    Finland  1987  6.03574865
## 5112                                     France  1987  3.47183855
## 5115                                    Georgia  1987 24.24242424
## 5117                                      Ghana  1987 50.70377887
## 5119                                    Grenada  1987 14.42672821
## 5121                                     Guinea  1987 24.65335374
## 5122                              Guinea-Bissau  1987 57.56832400
## 5123                                     Guyana  1987 29.94670320
## 5124                                   Honduras  1987 20.90748704
## 5127                                      India  1987 30.26484638
## 5129                 Iran (Islamic Republic of)  1987 16.82493478
## 5135                                     Jordan  1987  6.73533677
## 5137                                      Kenya  1987 31.54722807
## 5138                                   Kiribati  1987 27.89032908
## 5144                                    Lesotho  1987 15.91708959
## 5145                                    Liberia  1987 38.12705592
## 5149                                 Madagascar  1987 36.17469660
## 5150                                     Malawi  1987 49.02506756
## 5151                                   Malaysia  1987 19.96053524
## 5153                                       Mali  1987 38.91311424
## 5154                                      Malta  1987  4.31194353
## 5156                                 Mauritania  1987 32.31236110
## 5157                                  Mauritius  1987 15.35002502
## 5158                                     Mexico  1987  9.67887480
## 5160                                   Mongolia  1987 16.41756811
## 5162                                    Morocco  1987 13.47931254
## 5163                                 Mozambique  1987 44.14865431
## 5165                                    Namibia  1987  9.68321376
## 5166                                      Nepal  1987 50.72384549
## 5167                                Netherlands  1987  4.12809801
## 5168                                New Zealand  1987  8.04546651
## 5170                                    Nigeria  1987 37.25827967
## 5171                                     Norway  1987  3.68514140
## 5174                                   Pakistan  1987 26.24987556
## 5176                                     Panama  1987  7.67270632
## 5177                           Papua New Guinea  1987 32.90609832
## 5180                                Philippines  1987 24.00932094
## 5184                          Republic of Korea  1987 10.29365587
## 5189                      Saint Kitts and Nevis  1987  7.11414049
## 5190                                Saint Lucia  1987 10.91953706
## 5191           Saint Vincent and the Grenadines  1987 13.31136066
## 5193                               Saudi Arabia  1987  5.70589940
## 5194                                    Senegal  1987 24.86544732
## 5196                                 Seychelles  1987  6.30708757
## 5197                               Sierra Leone  1987 44.99999986
## 5198                                  Singapore  1987  0.57402338
## 5202                                    Somalia  1987 64.17994367
## 5203                               South Africa  1987  5.58180638
## 5205                                  Sri Lanka  1987 27.30228992
## 5206                                      Sudan  1987 32.81365340
## 5207                                   Suriname  1987 11.21731488
## 5208                                     Sweden  1987  4.11808568
## 5210                       Syrian Arab Republic  1987 26.58875782
## 5211                                 Tajikistan  1987 30.80645161
## 5212                                   Thailand  1987 15.73343752
## 5215                                       Togo  1987 33.48428232
## 5216                                      Tonga  1987 38.86537522
## 5217                        Trinidad and Tobago  1987  2.97998480
## 5218                                    Tunisia  1987 18.79839179
## 5219                                     Turkey  1987 18.47404548
## 5220                               Turkmenistan  1987 28.00000000
## 5222                                     Uganda  1987 56.75479748
## 5223                                    Ukraine  1987 21.66921899
## 5228                                    Uruguay  1987 13.71186351
## 5229                                 Uzbekistan  1987 27.61125888
## 5230                                    Vanuatu  1987 20.36598942
## 5231         Venezuela (Bolivarian Republic of)  1987  6.58289974
## 5235                                     Zambia  1987 12.04912057
## 5236                                   Zimbabwe  1987 14.40752832
## 5238                                    Albania  1988 31.49988182
## 5239                                    Algeria  1988 12.16765643
## 5241                                     Angola  1988 18.99049950
## 5242                        Antigua and Barbuda  1988  2.04772761
## 5243                                  Argentina  1988  8.97786822
## 5247                                    Austria  1988  3.45240803
## 5251                                 Bangladesh  1988 33.54966112
## 5255                                     Belize  1988 22.28496142
## 5256                                      Benin  1988 34.38009319
## 5258                                     Bhutan  1988 38.31603641
## 5259           Bolivia (Plurinational State of)  1988 17.16372413
## 5261                                   Botswana  1988  5.96082294
## 5262                                     Brazil  1988 10.11553876
## 5263                          Brunei Darussalam  1988  2.21614833
## 5264                                   Bulgaria  1988 10.92347773
## 5265                               Burkina Faso  1988 29.93156044
## 5266                                    Burundi  1988 54.24503787
## 5268                                   Cameroon  1988 24.66282911
## 5272                   Central African Republic  1988 48.94085781
## 5273                                       Chad  1988 36.75805277
## 5274                                      Chile  1988  9.34940829
## 5275                                      China  1988 25.23768653
## 5276                                   Colombia  1988 17.37315893
## 5277                                      Congo  1988 13.86706980
## 5278                                 Costa Rica  1988 13.02873769
## 5281                                       Cuba  1988 13.87859429
## 5282                                     Cyprus  1988  7.17470720
## 5284           Democratic Republic of the Congo  1988 29.83856492
## 5285                                    Denmark  1988  3.69266017
## 5287                                   Dominica  1988 28.45373097
## 5288                         Dominican Republic  1988 16.97746236
## 5289                                    Ecuador  1988 23.03752846
## 5290                                      Egypt  1988 18.95957733
## 5295                                   Eswatini  1988 16.10822832
## 5296                                   Ethiopia  1988 51.57352265
## 5297                                       Fiji  1988 19.53016529
## 5298                                    Finland  1988  6.04920098
## 5299                                     France  1988  3.20612124
## 5302                                    Georgia  1988 24.26470588
## 5304                                      Ghana  1988 49.71706279
## 5306                                    Grenada  1988 13.82186329
## 5308                                     Guinea  1988 23.46497426
## 5309                              Guinea-Bissau  1988 58.13395197
## 5310                                     Guyana  1988 26.00000000
## 5311                                   Honduras  1988 21.19737240
## 5314                                      India  1988 31.31933343
## 5316                 Iran (Islamic Republic of)  1988 15.74365790
## 5322                                     Jordan  1988  6.67054489
## 5324                                      Kenya  1988 29.89012658
## 5325                                   Kiribati  1988 33.73497491
## 5327                                 Kyrgyzstan  1988 31.83183183
## 5331                                    Lesotho  1988 15.52200086
## 5332                                    Liberia  1988 38.11037272
## 5336                                 Madagascar  1988 33.48612210
## 5337                                     Malawi  1988 50.02371517
## 5338                                   Malaysia  1988 20.07145177
## 5340                                       Mali  1988 41.64211071
## 5341                                      Malta  1988  3.90576963
## 5343                                 Mauritania  1988 32.69341226
## 5344                                  Mauritius  1988 13.85486597
## 5345                                     Mexico  1988  7.89950834
## 5347                                   Mongolia  1988 16.62938028
## 5349                                    Morocco  1988 16.33447289
## 5350                                 Mozambique  1988 42.87974322
## 5352                                    Namibia  1988  9.80858775
## 5353                                      Nepal  1988 50.89733293
## 5354                                Netherlands  1988  4.08455913
## 5355                                New Zealand  1988  8.24862523
## 5357                                    Nigeria  1988 41.64665856
## 5358                                     Norway  1988  3.52413135
## 5361                                   Pakistan  1988 26.02220999
## 5363                                     Panama  1988  8.12764742
## 5364                           Papua New Guinea  1988 32.00665073
## 5367                                Philippines  1988 22.96285452
## 5371                          Republic of Korea  1988 10.17688302
## 5376                      Saint Kitts and Nevis  1988  6.44124389
## 5377                                Saint Lucia  1988 13.72951143
## 5378           Saint Vincent and the Grenadines  1988 16.22265556
## 5380                               Saudi Arabia  1988  6.32187560
## 5381                                    Senegal  1988 21.16565174
## 5383                                 Seychelles  1988  5.96042869
## 5384                               Sierra Leone  1988 45.99999993
## 5385                                  Singapore  1988  0.43705899
## 5389                                    Somalia  1988 69.32535321
## 5390                               South Africa  1988  5.82236476
## 5392                                  Sri Lanka  1988 26.68362345
## 5393                                      Sudan  1988 41.52093983
## 5394                                   Suriname  1988 10.93143899
## 5395                                     Sweden  1988  3.94096310
## 5397                       Syrian Arab Republic  1988 31.79281548
## 5398                                 Tajikistan  1988 31.68604651
## 5399                                   Thailand  1988 16.17805890
## 5402                                       Togo  1988 33.57475517
## 5403                                      Tonga  1988 37.95558716
## 5404                        Trinidad and Tobago  1988  2.90316239
## 5405                                    Tunisia  1988 13.54055161
## 5406                                     Turkey  1988 17.84525228
## 5407                               Turkmenistan  1988 25.92592593
## 5409                                     Uganda  1988 56.71121457
## 5410                                    Ukraine  1988 20.94048494
## 5415                                    Uruguay  1988 12.04352629
## 5416                                 Uzbekistan  1988 29.25875915
## 5417                                    Vanuatu  1988 20.02320784
## 5418         Venezuela (Bolivarian Republic of)  1988  6.75738394
## 5422                                     Zambia  1988 17.42194500
## 5423                                   Zimbabwe  1988 16.38214621
## 5425                                    Albania  1989 32.30019770
## 5426                                    Algeria  1989 13.03901511
## 5428                                     Angola  1989 17.72900009
## 5429                        Antigua and Barbuda  1989  1.96088778
## 5430                                  Argentina  1989  9.61606510
## 5434                                    Austria  1989  3.40820828
## 5436                                    Bahamas  1989  2.34391314
## 5438                                 Bangladesh  1989 32.92929517
## 5442                                     Belize  1989 20.38819876
## 5443                                      Benin  1989 37.85688479
## 5445                                     Bhutan  1989 35.75144166
## 5446           Bolivia (Plurinational State of)  1989 16.66770186
## 5448                                   Botswana  1989  4.96668737
## 5449                                     Brazil  1989  8.51887683
## 5450                          Brunei Darussalam  1989  0.96156360
## 5451                                   Bulgaria  1989 10.61534540
## 5452                               Burkina Faso  1989 28.89774248
## 5453                                    Burundi  1989 53.67857949
## 5455                                   Cameroon  1989 26.11172765
## 5459                   Central African Republic  1989 47.70393747
## 5460                                       Chad  1989 31.65552421
## 5461                                      Chile  1989  9.13401369
## 5462                                      China  1989 24.61155196
## 5463                                   Colombia  1989 16.61764801
## 5464                                      Congo  1989 12.93454030
## 5465                                 Costa Rica  1989 12.41595644
## 5468                                       Cuba  1989 13.67876582
## 5469                                     Cyprus  1989  6.92986043
## 5471           Democratic Republic of the Congo  1989 28.57995826
## 5472                                    Denmark  1989  4.05769998
## 5473                                   Djibouti  1989  3.28962176
## 5474                                   Dominica  1989 23.97795947
## 5475                         Dominican Republic  1989 14.90818048
## 5476                                    Ecuador  1989 23.39582878
## 5477                                      Egypt  1989 19.67336262
## 5482                                   Eswatini  1989 15.30022997
## 5483                                   Ethiopia  1989 51.21277059
## 5484                                       Fiji  1989 22.15628193
## 5485                                    Finland  1989  6.06052415
## 5486                                     France  1989  3.50343645
## 5489                                    Georgia  1989 23.30827068
## 5491                                      Ghana  1989 49.41909030
## 5493                                    Grenada  1989 12.21609777
## 5495                                     Guinea  1989 24.06949632
## 5496                              Guinea-Bissau  1989 50.17133492
## 5497                                     Guyana  1989 39.91624576
## 5498                                   Honduras  1989 21.07822221
## 5501                                      India  1989 30.04540935
## 5503                 Iran (Islamic Republic of)  1989 15.97893032
## 5509                                     Jordan  1989  6.03291508
## 5511                                      Kenya  1989 30.18533490
## 5512                                   Kiribati  1989 28.08364544
## 5514                                 Kyrgyzstan  1989 33.60655738
## 5515           Lao People's Democratic Republic  1989 60.55222066
## 5518                                    Lesotho  1989 14.10736908
## 5519                                    Liberia  1989 38.72567722
## 5523                                 Madagascar  1989 32.93550001
## 5524                                     Malawi  1989 47.69029405
## 5525                                   Malaysia  1989 18.08178043
## 5527                                       Mali  1989 40.27658986
## 5528                                      Malta  1989  3.75999166
## 5530                                 Mauritania  1989 31.91295837
## 5531                                  Mauritius  1989 13.08411811
## 5532                                     Mexico  1989  7.75382549
## 5534                                   Mongolia  1989 15.51500748
## 5536                                    Morocco  1989 16.47635303
## 5537                                 Mozambique  1989 47.37887098
## 5539                                    Namibia  1989  9.11828011
## 5540                                      Nepal  1989 50.37450746
## 5541                                Netherlands  1989  4.42187804
## 5542                                New Zealand  1989  8.56489191
## 5544                                    Nigeria  1989 32.15580916
## 5545                                     Norway  1989  3.27944323
## 5548                                   Pakistan  1989 26.94916537
## 5550                                     Panama  1989  8.71502406
## 5551                           Papua New Guinea  1989 30.12277061
## 5554                                Philippines  1989 22.69278314
## 5558                          Republic of Korea  1989  9.38272970
## 5561                         Russian Federation  1989 16.81399285
## 5563                      Saint Kitts and Nevis  1989  5.08553478
## 5564                                Saint Lucia  1989 11.02186322
## 5565           Saint Vincent and the Grenadines  1989 15.16194781
## 5567                               Saudi Arabia  1989  6.34338286
## 5568                                    Senegal  1989 22.60781770
## 5570                                 Seychelles  1989  5.37454545
## 5571                               Sierra Leone  1989 46.00000005
## 5572                                  Singapore  1989  0.37593078
## 5576                                    Somalia  1989 63.59843773
## 5577                               South Africa  1989  5.40374200
## 5579                                  Sri Lanka  1989 25.95598287
## 5580                                      Sudan  1989 39.16960439
## 5581                                   Suriname  1989  9.79020979
## 5582                                     Sweden  1989  3.87203696
## 5584                       Syrian Arab Republic  1989 24.79884783
## 5585                                 Tajikistan  1989 32.02898551
## 5586                                   Thailand  1989 15.07529261
## 5589                                       Togo  1989 32.22346085
## 5590                                      Tonga  1989 36.02731124
## 5591                        Trinidad and Tobago  1989  2.63703594
## 5592                                    Tunisia  1989 14.55447057
## 5593                                     Turkey  1989 17.10160888
## 5594                               Turkmenistan  1989 28.57142857
## 5596                                     Uganda  1989 56.78619190
## 5597                                    Ukraine  1989 22.93485561
## 5602                                    Uruguay  1989 10.89759792
## 5603                                 Uzbekistan  1989 31.13557887
## 5604                                    Vanuatu  1989 20.28510080
## 5605         Venezuela (Bolivarian Republic of)  1989  6.29846632
## 5609                                     Zambia  1989 21.24495633
## 5610                                   Zimbabwe  1989 14.93031074
## 5612                                    Albania  1990 35.90078991
## 5613                                    Algeria  1990 11.35826743
## 5615                                     Angola  1990 18.35566711
## 5616                        Antigua and Barbuda  1990  2.05135729
## 5617                                  Argentina  1990  8.12367621
## 5618                                    Armenia  1990 17.37626972
## 5620                                  Australia  1990  4.58348791
## 5621                                    Austria  1990  3.48905794
## 5622                                 Azerbaijan  1990 29.02502802
## 5623                                    Bahamas  1990  2.55121066
## 5625                                 Bangladesh  1990 32.75288712
## 5626                                   Barbados  1990  3.83177570
## 5627                                    Belarus  1990 23.54502370
## 5629                                     Belize  1990 19.98050682
## 5630                                      Benin  1990 34.65494536
## 5632                                     Bhutan  1990 35.27825443
## 5633           Bolivia (Plurinational State of)  1990 16.74085274
## 5635                                   Botswana  1990  4.85331347
## 5636                                     Brazil  1990  8.10000000
## 5637                          Brunei Darussalam  1990  0.96614167
## 5638                                   Bulgaria  1990 17.02671853
## 5639                               Burkina Faso  1990 29.14138952
## 5640                                    Burundi  1990 55.87870030
## 5642                                   Cameroon  1990 24.57539141
## 5646                   Central African Republic  1990 49.27621013
## 5647                                       Chad  1990 29.27986571
## 5648                                      Chile  1990  9.14694219
## 5649                                      China  1990 26.58430812
## 5650                                   Colombia  1990 16.74809279
## 5651                                      Congo  1990 12.86089239
## 5652                                 Costa Rica  1990 12.27183637
## 5655                                       Cuba  1990 13.99482791
## 5656                                     Cyprus  1990  6.85917678
## 5658           Democratic Republic of the Congo  1990 30.96446703
## 5659                                    Denmark  1990  3.78675169
## 5660                                   Djibouti  1990  3.06195760
## 5661                                   Dominica  1990 25.00811162
## 5662                         Dominican Republic  1990 14.51116244
## 5663                                    Ecuador  1990 21.42761954
## 5664                                      Egypt  1990 19.36663924
## 5665                                El Salvador  1990 17.42424242
## 5669                                   Eswatini  1990 10.39501884
## 5670                                   Ethiopia  1990 52.04077703
## 5671                                       Fiji  1990 20.41142939
## 5672                                    Finland  1990  6.20732386
## 5673                                     France  1990  3.50414254
## 5676                                    Georgia  1990 31.69014085
## 5678                                      Ghana  1990 45.06751267
## 5680                                    Grenada  1990 10.55975252
## 5682                                     Guinea  1990 23.77756121
## 5683                              Guinea-Bissau  1990 60.80318734
## 5684                                     Guyana  1990 38.08179632
## 5685                                   Honduras  1990 22.43635821
## 5688                                      India  1990 30.09983944
## 5690                 Iran (Islamic Republic of)  1990 12.76277027
## 5693                                      Italy  1990  3.46573684
## 5696                                     Jordan  1990  7.71135192
## 5698                                      Kenya  1990 29.51857890
## 5699                                   Kiribati  1990 18.60236543
## 5701                                 Kyrgyzstan  1990 33.53643909
## 5702           Lao People's Democratic Republic  1990 61.22825659
## 5705                                    Lesotho  1990 13.59783811
## 5706                                    Liberia  1990 54.37044745
## 5710                                 Madagascar  1990 28.57762837
## 5711                                     Malawi  1990 45.00001595
## 5712                                   Malaysia  1990 15.21653328
## 5714                                       Mali  1990 39.46055509
## 5715                                      Malta  1990  3.46678566
## 5717                                 Mauritania  1990 29.61771693
## 5718                                  Mauritius  1990 12.85051624
## 5719                                     Mexico  1990  7.84787691
## 5721                                   Mongolia  1990 12.85691542
## 5723                                    Morocco  1990 17.22135358
## 5724                                 Mozambique  1990 37.11874001
## 5726                                    Namibia  1990  9.78852979
## 5727                                      Nepal  1990 51.63276998
## 5728                                Netherlands  1990  4.30001955
## 5729                                New Zealand  1990  8.17054022
## 5731                                    Nigeria  1990 31.52480402
## 5732                                     Norway  1990  3.35764233
## 5735                                   Pakistan  1990 25.97877805
## 5737                                     Panama  1990  8.34917385
## 5738                           Papua New Guinea  1990 30.85898279
## 5741                                Philippines  1990 21.90381504
## 5745                          Republic of Korea  1990  8.42484539
## 5747                                    Romania  1990 23.74064205
## 5748                         Russian Federation  1990 16.61107405
## 5750                      Saint Kitts and Nevis  1990  4.15453949
## 5751                                Saint Lucia  1990 11.60429009
## 5752           Saint Vincent and the Grenadines  1990 16.38700310
## 5754                               Saudi Arabia  1990  5.70727632
## 5755                                    Senegal  1990 19.92823983
## 5757                                 Seychelles  1990  6.30288494
## 5758                               Sierra Leone  1990 46.93988124
## 5759                                  Singapore  1990  0.33908539
## 5762                            Solomon Islands  1990 28.91132937
## 5763                                    Somalia  1990 65.45259173
## 5764                               South Africa  1990  4.61906825
## 5766                                  Sri Lanka  1990 26.68499559
## 5767                                      Sudan  1990 40.57702215
## 5768                                   Suriname  1990  8.70529526
## 5769                                     Sweden  1990  3.56273119
## 5770                                Switzerland  1990  2.30527606
## 5771                       Syrian Arab Republic  1990 29.81274968
## 5772                                 Tajikistan  1990 33.33333333
## 5773                                   Thailand  1990 12.49962783
## 5774  The former Yugoslav Republic of Macedonia  1990  8.51190742
## 5776                                       Togo  1990 33.75411482
## 5777                                      Tonga  1990 35.59276808
## 5778                        Trinidad and Tobago  1990  2.61541608
## 5779                                    Tunisia  1990 17.73547512
## 5780                                     Turkey  1990 18.09289968
## 5781                               Turkmenistan  1990 33.33333333
## 5783                                     Uganda  1990 56.57689698
## 5784                                    Ukraine  1990 25.57426300
## 5786                             United Kingdom  1990  1.37899605
## 5787                United Republic of Tanzania  1990 45.95766349
## 5789                                    Uruguay  1990  9.20845768
## 5790                                 Uzbekistan  1990 32.76472796
## 5791                                    Vanuatu  1990 20.87692806
## 5792         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 5795                                      Yemen  1990 28.53267103
## 5796                                     Zambia  1990 20.60479675
## 5797                                   Zimbabwe  1990 16.47630404
## 5799                                    Albania  1991 39.29529516
## 5800                                    Algeria  1991 10.16705800
## 5802                                     Angola  1991 25.00000000
## 5803                        Antigua and Barbuda  1991  2.04129868
## 5804                                  Argentina  1991  6.71649176
## 5805                                    Armenia  1991 24.97346072
## 5807                                  Australia  1991  3.47751136
## 5808                                    Austria  1991  3.16707632
## 5809                                 Azerbaijan  1991 32.31501686
## 5810                                    Bahamas  1991  3.31890756
## 5812                                 Bangladesh  1991 30.36516230
## 5813                                   Barbados  1991  3.89963640
## 5814                                    Belarus  1991 20.98803828
## 5816                                     Belize  1991 18.28921726
## 5817                                      Benin  1991 35.04377350
## 5819                                     Bhutan  1991 33.82891002
## 5820           Bolivia (Plurinational State of)  1991 17.08879728
## 5822                                   Botswana  1991  4.81753456
## 5823                                     Brazil  1991  7.78998059
## 5824                          Brunei Darussalam  1991  1.02205317
## 5825                                   Bulgaria  1991 16.94193423
## 5826                               Burkina Faso  1991 31.22742370
## 5827                                    Burundi  1991 54.31071310
## 5829                                   Cameroon  1991 24.79498173
## 5833                   Central African Republic  1991 45.97148974
## 5834                                       Chad  1991 36.49593846
## 5835                                      Chile  1991 10.26202172
## 5836                                      China  1991 24.03406739
## 5837                                   Colombia  1991 17.42227530
## 5838                                      Congo  1991 11.31780929
## 5839                                 Costa Rica  1991 13.02099579
## 5842                                       Cuba  1991 13.30896194
## 5843                                     Cyprus  1991  6.19134856
## 5845           Democratic Republic of the Congo  1991 41.66951194
## 5846                                    Denmark  1991  3.48314070
## 5847                                   Djibouti  1991  3.18270459
## 5848                                   Dominica  1991 23.78976826
## 5849                         Dominican Republic  1991 13.34079994
## 5850                                    Ecuador  1991 21.73425750
## 5851                                      Egypt  1991 17.57403006
## 5852                                El Salvador  1991 17.52090639
## 5856                                   Eswatini  1991 11.44563789
## 5857                                   Ethiopia  1991 61.35629685
## 5858                                       Fiji  1991 20.65041267
## 5859                                    Finland  1991  5.54197121
## 5860                                     France  1991  2.91848979
## 5863                                    Georgia  1991 28.65168539
## 5864                                    Germany  1991  1.16868069
## 5865                                      Ghana  1991 45.55955386
## 5867                                    Grenada  1991 10.51686475
## 5869                                     Guinea  1991 18.84587373
## 5870                              Guinea-Bissau  1991 54.11244886
## 5871                                     Guyana  1991 38.37665889
## 5872                                   Honduras  1991 22.74060751
## 5875                                      India  1991 30.47961223
## 5877                 Iran (Islamic Republic of)  1991 12.32198512
## 5880                                      Italy  1991  3.54797574
## 5883                                     Jordan  1991  8.14024159
## 5885                                      Kenya  1991 28.14057919
## 5886                                   Kiribati  1991 28.33037854
## 5888                                 Kyrgyzstan  1991 36.97773245
## 5889           Lao People's Democratic Republic  1991 58.23068704
## 5892                                    Lesotho  1991  8.04716161
## 5893                                    Liberia  1991 55.60344828
## 5897                                 Madagascar  1991 29.67744332
## 5898                                     Malawi  1991 43.72187589
## 5899                                   Malaysia  1991 14.35580915
## 5901                                       Mali  1991 41.31923718
## 5902                                      Malta  1991  3.29999035
## 5904                                 Mauritania  1991 37.51582320
## 5905                                  Mauritius  1991 11.70207516
## 5906                                     Mexico  1991  7.52452792
## 5908                                   Mongolia  1991 13.10414500
## 5910                                    Morocco  1991 19.94560417
## 5911                                 Mozambique  1991 37.01162000
## 5913                                    Namibia  1991 10.74334412
## 5914                                      Nepal  1991 47.21452387
## 5915                                Netherlands  1991  4.17159775
## 5916                                New Zealand  1991  9.00515552
## 5918                                    Nigeria  1991 31.22449680
## 5919                                     Norway  1991  3.28072551
## 5922                                   Pakistan  1991 25.77451802
## 5924                                     Panama  1991  7.90247159
## 5925                           Papua New Guinea  1991 27.51277683
## 5926                                   Paraguay  1991 17.01401644
## 5927                                       Peru  1991  8.53557672
## 5928                                Philippines  1991 20.98282788
## 5932                          Republic of Korea  1991  7.50978789
## 5934                                    Romania  1991 20.12873875
## 5935                         Russian Federation  1991 14.29419623
## 5937                      Saint Kitts and Nevis  1991  4.34301963
## 5938                                Saint Lucia  1991 10.18976482
## 5939           Saint Vincent and the Grenadines  1991 14.27162670
## 5941                               Saudi Arabia  1991  5.43281427
## 5942                                    Senegal  1991 20.27619356
## 5944                                 Seychelles  1991  6.12932487
## 5945                               Sierra Leone  1991 38.82373446
## 5946                                  Singapore  1991  0.26128105
## 5949                            Solomon Islands  1991 46.97434027
## 5951                               South Africa  1991  4.54997577
## 5953                                  Sri Lanka  1991 27.08797056
## 5954                                      Sudan  1991 41.77936750
## 5955                                   Suriname  1991  8.89840054
## 5956                                     Sweden  1991  3.05849256
## 5957                                Switzerland  1991  2.08019451
## 5958                       Syrian Arab Republic  1991 32.84003134
## 5959                                 Tajikistan  1991 36.63663664
## 5960                                   Thailand  1991 12.64982660
## 5961  The former Yugoslav Republic of Macedonia  1991 13.63873213
## 5963                                       Togo  1991 32.82417093
## 5964                                      Tonga  1991 36.84697699
## 5965                        Trinidad and Tobago  1991  2.65347212
## 5966                                    Tunisia  1991 19.10520066
## 5967                                     Turkey  1991 15.80402654
## 5968                               Turkmenistan  1991 32.20338983
## 5970                                     Uganda  1991 52.82168297
## 5971                                    Ukraine  1991 22.78207110
## 5973                             United Kingdom  1991  1.36020340
## 5974                United Republic of Tanzania  1991 48.13968975
## 5976                                    Uruguay  1991  8.49783072
## 5977                                 Uzbekistan  1991 36.97700295
## 5978                                    Vanuatu  1991 16.55999621
## 5979         Venezuela (Bolivarian Republic of)  1991  5.57920471
## 5982                                      Yemen  1991 27.25149877
## 5983                                     Zambia  1991 17.42768673
## 5984                                   Zimbabwe  1991 15.26726153
## 5986                                    Albania  1992 51.64187027
## 5987                                    Algeria  1992 12.12684642
## 5989                                     Angola  1992 11.53846154
## 5990                        Antigua and Barbuda  1992  2.07021499
## 5991                                  Argentina  1992  5.99078709
## 5992                                    Armenia  1992 31.04272063
## 5994                                  Australia  1992  3.34708354
## 5995                                    Austria  1992  2.76220461
## 5996                                 Azerbaijan  1992 28.50561670
## 5997                                    Bahamas  1992  3.14447422
## 5999                                 Bangladesh  1992 29.38477209
## 6000                                   Barbados  1992  3.88975649
## 6001                                    Belarus  1992 23.57232133
## 6003                                     Belize  1992 18.27473717
## 6004                                      Benin  1992 33.94190414
## 6006                                     Bhutan  1992 34.35496639
## 6007           Bolivia (Plurinational State of)  1992 16.02685120
## 6009                                   Botswana  1992  5.20492917
## 6010                                     Brazil  1992  7.71999756
## 6011                          Brunei Darussalam  1992  0.96520910
## 6012                                   Bulgaria  1992 12.93913410
## 6013                               Burkina Faso  1992 30.17491622
## 6014                                    Burundi  1992 53.53346466
## 6016                                   Cameroon  1992 27.27185284
## 6020                   Central African Republic  1992 46.86938872
## 6021                                       Chad  1992 35.34349528
## 6022                                      Chile  1992 10.27204904
## 6023                                      China  1992 21.32886138
## 6024                                   Colombia  1992 15.79826406
## 6025                                      Congo  1992 11.52756311
## 6026                                 Costa Rica  1992 13.11395034
## 6029                                       Cuba  1992 13.13330235
## 6030                                     Cyprus  1992  5.72367756
## 6032           Democratic Republic of the Congo  1992 49.41528476
## 6033                                    Denmark  1992  3.20405938
## 6034                                   Djibouti  1992  3.30511208
## 6035                                   Dominica  1992 22.39658614
## 6036                         Dominican Republic  1992 12.53562527
## 6037                                    Ecuador  1992 19.68202561
## 6038                                      Egypt  1992 16.54242047
## 6039                                El Salvador  1992 14.56377455
## 6041                                    Eritrea  1992 30.55896178
## 6043                                   Eswatini  1992  8.98980477
## 6044                                   Ethiopia  1992 65.97295606
## 6045                                       Fiji  1992 20.14181013
## 6046                                    Finland  1992  4.90168255
## 6047                                     France  1992  2.87982156
## 6050                                    Georgia  1992 52.91327913
## 6051                                    Germany  1992  1.06218002
## 6052                                      Ghana  1992 44.96376499
## 6054                                    Grenada  1992  9.09320422
## 6056                                     Guinea  1992 17.07420142
## 6057                              Guinea-Bissau  1992 49.36667299
## 6058                                     Guyana  1992 40.75412755
## 6059                                   Honduras  1992 20.37071539
## 6062                                      India  1992 29.80148425
## 6064                 Iran (Islamic Republic of)  1992 12.39112289
## 6067                                      Italy  1992  3.42377060
## 6070                                     Jordan  1992  7.89408346
## 6071                                 Kazakhstan  1992 26.70777989
## 6072                                      Kenya  1992 28.73904782
## 6073                                   Kiribati  1992 30.75693179
## 6075                                 Kyrgyzstan  1992 39.04802022
## 6076           Lao People's Democratic Republic  1992 61.80951850
## 6079                                    Lesotho  1992  9.88233081
## 6080                                    Liberia  1992 51.27516779
## 6084                                 Madagascar  1992 29.10189470
## 6085                                     Malawi  1992 38.81648426
## 6086                                   Malaysia  1992 14.57250748
## 6088                                       Mali  1992 38.97193524
## 6089                                      Malta  1992  3.04986818
## 6091                                 Mauritania  1992 37.46795157
## 6092                                  Mauritius  1992 11.62642006
## 6093                                     Mexico  1992  6.68398618
## 6095                                   Mongolia  1992 27.19231959
## 6097                                    Morocco  1992 16.18612021
## 6098                                 Mozambique  1992 32.43194154
## 6100                                    Namibia  1992  7.70239547
## 6101                                      Nepal  1992 44.86481201
## 6102                                Netherlands  1992  3.90338363
## 6103                                New Zealand  1992  8.86611534
## 6105                                    Nigeria  1992 27.26651827
## 6106                                     Norway  1992  2.97408429
## 6109                                   Pakistan  1992 26.34670757
## 6110                                      Palau  1992 18.52372925
## 6111                                     Panama  1992  7.15302194
## 6112                           Papua New Guinea  1992 25.66362891
## 6113                                   Paraguay  1992 15.82252121
## 6114                                       Peru  1992  8.59666628
## 6115                                Philippines  1992 21.82087500
## 6119                          Republic of Korea  1992  7.28155301
## 6121                                    Romania  1992 19.40593725
## 6122                         Russian Federation  1992  7.39353852
## 6124                      Saint Kitts and Nevis  1992  4.60278415
## 6125                                Saint Lucia  1992 11.00431650
## 6126           Saint Vincent and the Grenadines  1992 15.03092091
## 6128                               Saudi Arabia  1992  5.60680384
## 6129                                    Senegal  1992 18.61444122
## 6131                                 Seychelles  1992  5.04810548
## 6132                               Sierra Leone  1992 37.92910274
## 6133                                  Singapore  1992  0.20775718
## 6136                            Solomon Islands  1992 49.02992975
## 6138                               South Africa  1992  3.79634532
## 6140                                  Sri Lanka  1992 26.12236113
## 6141                                      Sudan  1992 40.26932068
## 6142                                   Suriname  1992 11.26643368
## 6143                                     Sweden  1992  2.87855162
## 6144                                Switzerland  1992  1.90933159
## 6145                       Syrian Arab Republic  1992 34.43728541
## 6146                                 Tajikistan  1992 27.40315638
## 6147                                   Thailand  1992 12.29733574
## 6148  The former Yugoslav Republic of Macedonia  1992 17.06034555
## 6150                                       Togo  1992 35.26324642
## 6151                                      Tonga  1992 38.15791132
## 6152                        Trinidad and Tobago  1992  2.70962374
## 6153                                    Tunisia  1992 18.60470990
## 6154                                     Turkey  1992 15.56318072
## 6155                               Turkmenistan  1992 10.60975610
## 6157                                     Uganda  1992 51.12051916
## 6158                                    Ukraine  1992 20.35647298
## 6160                             United Kingdom  1992  1.34143113
## 6161                United Republic of Tanzania  1992 47.99689636
## 6163                                    Uruguay  1992  8.81564371
## 6164                                 Uzbekistan  1992 34.82753262
## 6165                                    Vanuatu  1992 16.19981116
## 6166         Venezuela (Bolivarian Republic of)  1992  5.42717357
## 6169                                      Yemen  1992 28.60457463
## 6170                                     Zambia  1992 23.81226939
## 6171                                   Zimbabwe  1992  7.41379292
## 6173                                    Albania  1993 54.64097649
## 6174                                    Algeria  1993 12.09707289
## 6176                                     Angola  1993 11.52416357
## 6177                        Antigua and Barbuda  1993  2.00075918
## 6178                                  Argentina  1993  5.49202482
## 6179                                    Armenia  1993 51.36558932
## 6181                                  Australia  1993  3.54628688
## 6182                                    Austria  1993  2.47958672
## 6183                                 Azerbaijan  1993 28.48862115
## 6184                                    Bahamas  1993  2.83800374
## 6186                                 Bangladesh  1993 26.25154880
## 6187                                   Barbados  1993  3.70236941
## 6188                                    Belarus  1993 18.28834190
## 6190                                     Belize  1993 17.33915791
## 6191                                      Benin  1993 34.11946080
## 6193                                     Bhutan  1993 32.22705064
## 6194           Bolivia (Plurinational State of)  1993 16.32908927
## 6196                                   Botswana  1993  5.00920507
## 6197                                     Brazil  1993  7.55999972
## 6198                          Brunei Darussalam  1993  1.07733343
## 6199                                   Bulgaria  1993 11.30054878
## 6200                               Burkina Faso  1993 31.37245493
## 6201                                    Burundi  1993 52.61869799
## 6202                                   Cambodia  1993 46.62542393
## 6203                                   Cameroon  1993 16.09645630
## 6207                   Central African Republic  1993 46.40304907
## 6208                                       Chad  1993 32.46493321
## 6209                                      Chile  1993  9.04068032
## 6210                                      China  1993 19.30746840
## 6211                                   Colombia  1993 13.87910420
## 6212                                      Congo  1993 11.24851993
## 6213                                 Costa Rica  1993 12.93068641
## 6216                                       Cuba  1993 10.26560285
## 6217                                     Cyprus  1993  5.61272712
## 6218                             Czech Republic  1993  4.66344258
## 6219           Democratic Republic of the Congo  1993 51.72309077
## 6220                                    Denmark  1993  3.08053689
## 6221                                   Djibouti  1993  3.52424762
## 6222                                   Dominica  1993 21.47693656
## 6223                         Dominican Republic  1993 11.23150938
## 6224                                    Ecuador  1993 24.30918799
## 6225                                      Egypt  1993 16.71250684
## 6226                                El Salvador  1993 14.92215532
## 6228                                    Eritrea  1993 22.40599378
## 6230                                   Eswatini  1993 10.19160043
## 6231                                   Ethiopia  1993 62.37275609
## 6232                                       Fiji  1993 19.78215092
## 6233                                    Finland  1993  4.99913302
## 6234                                     France  1993  2.55044592
## 6237                                    Georgia  1993 58.57793647
## 6238                                    Germany  1993  1.01009910
## 6239                                      Ghana  1993 41.36654228
## 6241                                    Grenada  1993  8.58180943
## 6243                                     Guinea  1993 17.99168415
## 6244                              Guinea-Bissau  1993 55.22548057
## 6245                                     Guyana  1993 36.15238624
## 6246                                   Honduras  1993 20.58989484
## 6249                                      India  1993 29.74062999
## 6251                 Iran (Islamic Republic of)  1993 10.39080277
## 6254                                      Italy  1993  3.28068196
## 6255                                    Jamaica  1993  8.02613546
## 6257                                     Jordan  1993  5.97524665
## 6258                                 Kazakhstan  1993 17.50765637
## 6259                                      Kenya  1993 31.52343009
## 6260                                   Kiribati  1993 30.34775809
## 6262                                 Kyrgyzstan  1993 41.00977262
## 6263           Lao People's Democratic Republic  1993 57.54010593
## 6266                                    Lesotho  1993  9.00579666
## 6267                                    Liberia  1993 50.62344140
## 6271                                 Madagascar  1993 28.70655944
## 6272                                     Malawi  1993 48.90420083
## 6273                                   Malaysia  1993 13.78685545
## 6275                                       Mali  1993 41.52886436
## 6276                                      Malta  1993  3.00819349
## 6278                                 Mauritania  1993 38.00043070
## 6279                                  Mauritius  1993 10.64608251
## 6280                                     Mexico  1993  4.48475654
## 6282                                   Mongolia  1993 27.85179292
## 6284                                    Morocco  1993 15.08314476
## 6285                                 Mozambique  1993 36.25049984
## 6287                                    Namibia  1993  8.26626467
## 6288                                      Nepal  1993 42.22797927
## 6289                                Netherlands  1993  3.42471103
## 6290                                New Zealand  1993  9.36164258
## 6292                                    Nigeria  1993 33.90011911
## 6293                                     Norway  1993  2.96995582
## 6296                                   Pakistan  1993 24.99402035
## 6297                                      Palau  1993 10.64723939
## 6298                                     Panama  1993  6.87425422
## 6299                           Papua New Guinea  1993 28.72035277
## 6300                                   Paraguay  1993 17.78406455
## 6301                                       Peru  1993  9.12951599
## 6302                                Philippines  1993 21.60429229
## 6306                          Republic of Korea  1993  6.49673938
## 6308                                    Romania  1993 22.63701955
## 6309                         Russian Federation  1993  8.31108952
## 6311                      Saint Kitts and Nevis  1993  4.49520324
## 6312                                Saint Lucia  1993  8.78433099
## 6313           Saint Vincent and the Grenadines  1993 11.19423511
## 6315                               Saudi Arabia  1993  6.06950543
## 6316                                    Senegal  1993 20.58172271
## 6318                                 Seychelles  1993  5.65392465
## 6319                               Sierra Leone  1993 43.05087319
## 6320                                  Singapore  1993  0.18306577
## 6323                            Solomon Islands  1993 48.21740214
## 6325                               South Africa  1993  4.16533488
## 6327                                  Sri Lanka  1993 24.88070331
## 6328                                      Sudan  1993 41.37502790
## 6329                                   Suriname  1993 19.19107392
## 6330                                     Sweden  1993  2.72312014
## 6331                                Switzerland  1993  1.74187696
## 6332                       Syrian Arab Republic  1993 32.18284783
## 6333                                 Tajikistan  1993 23.28764973
## 6334                                   Thailand  1993  8.02785037
## 6335  The former Yugoslav Republic of Macedonia  1993 11.82088202
## 6337                                       Togo  1993 44.14364700
## 6338                                      Tonga  1993 40.80194714
## 6339                        Trinidad and Tobago  1993  2.69096702
## 6340                                    Tunisia  1993 16.96971604
## 6341                                     Turkey  1993 16.07486623
## 6342                               Turkmenistan  1993 19.44444444
## 6344                                     Uganda  1993 51.54009804
## 6345                                    Ukraine  1993 21.66971979
## 6347                             United Kingdom  1993  1.34891258
## 6348                United Republic of Tanzania  1993 48.10842650
## 6350                                    Uruguay  1993  7.36675786
## 6351                                 Uzbekistan  1993 30.44774065
## 6352                                    Vanuatu  1993 18.07408055
## 6353         Venezuela (Bolivarian Republic of)  1993  5.48626199
## 6356                                      Yemen  1993 26.73141010
## 6357                                     Zambia  1993 34.10152067
## 6358                                   Zimbabwe  1993 15.03891314
## 6360                                    Albania  1994 53.62098061
## 6361                                    Algeria  1994 10.05843690
## 6363                                     Angola  1994  6.64301838
## 6364                        Antigua and Barbuda  1994  1.81273043
## 6365                                  Argentina  1994  5.51386657
## 6366                                    Armenia  1994 44.87099732
## 6367                                      Aruba  1994  0.54894785
## 6368                                  Australia  1994  3.63883737
## 6369                                    Austria  1994  2.66586426
## 6370                                 Azerbaijan  1994 32.99219397
## 6371                                    Bahamas  1994  3.15749634
## 6373                                 Bangladesh  1994 25.62847965
## 6374                                   Barbados  1994  2.77056277
## 6375                                    Belarus  1994 14.99950370
## 6377                                     Belize  1994 17.41958750
## 6378                                      Benin  1994 32.29399457
## 6380                                     Bhutan  1994 34.86805961
## 6381           Bolivia (Plurinational State of)  1994 17.11495444
## 6382                     Bosnia and Herzegovina  1994 35.85332285
## 6383                                   Botswana  1994  4.07905484
## 6384                                     Brazil  1994  9.85026357
## 6385                          Brunei Darussalam  1994  1.19870895
## 6386                                   Bulgaria  1994 13.34325978
## 6387                               Burkina Faso  1994 35.52219498
## 6388                                    Burundi  1994 46.77810863
## 6389                                   Cambodia  1994 47.80760832
## 6390                                   Cameroon  1994 18.15512512
## 6394                   Central African Republic  1994 45.04485648
## 6395                                       Chad  1994 37.83631045
## 6396                                      Chile  1994  8.36955368
## 6397                                      China  1994 19.47428273
## 6398                                   Colombia  1994 16.07590620
## 6399                                      Congo  1994 10.31393786
## 6400                                 Costa Rica  1994 13.49953955
## 6403                                       Cuba  1994  9.58506843
## 6404                                     Cyprus  1994  5.06752182
## 6405                             Czech Republic  1994  4.66751041
## 6406           Democratic Republic of the Congo  1994 57.00000051
## 6407                                    Denmark  1994  2.99819888
## 6408                                   Djibouti  1994  3.59406266
## 6409                                   Dominica  1994 21.72610614
## 6410                         Dominican Republic  1994 10.29788892
## 6411                                    Ecuador  1994 22.96580361
## 6412                                      Egypt  1994 16.87458197
## 6413                                El Salvador  1994 15.01934902
## 6415                                    Eritrea  1994 24.36763657
## 6417                                   Eswatini  1994 13.38736503
## 6418                                   Ethiopia  1994 55.66025242
## 6419                                       Fiji  1994 20.88487835
## 6420                                    Finland  1994  4.78210518
## 6421                                     France  1994  2.68478525
## 6424                                    Georgia  1994 65.86479258
## 6425                                    Germany  1994  1.02771042
## 6426                                      Ghana  1994 41.97789065
## 6428                                    Grenada  1994  8.19440726
## 6430                                     Guinea  1994 20.87347610
## 6431                              Guinea-Bissau  1994 55.59375550
## 6432                                     Guyana  1994 36.98946762
## 6433                                   Honduras  1994 24.34393578
## 6436                                      India  1994 29.32063190
## 6438                 Iran (Islamic Republic of)  1994 10.46119865
## 6441                                      Italy  1994  3.27539268
## 6442                                    Jamaica  1994  8.75483302
## 6443                                      Japan  1994  1.94812703
## 6444                                     Jordan  1994  5.22612136
## 6445                                 Kazakhstan  1994 15.45252279
## 6446                                      Kenya  1994 33.32094939
## 6447                                   Kiribati  1994 30.24345740
## 6449                                 Kyrgyzstan  1994 40.88144549
## 6450           Lao People's Democratic Republic  1994 57.57631637
## 6452                                    Lebanon  1994  7.10842550
## 6453                                    Lesotho  1994  8.85034751
## 6454                                    Liberia  1994 52.42057489
## 6458                                 Madagascar  1994 23.81411090
## 6459                                     Malawi  1994 25.07651193
## 6460                                   Malaysia  1994 13.66110713
## 6462                                       Mali  1994 39.09848913
## 6463                                      Malta  1994  2.80207698
## 6465                                 Mauritania  1994 36.94554457
## 6466                                  Mauritius  1994  9.93781054
## 6467                                     Mexico  1994  4.30250230
## 6469                                   Mongolia  1994 29.28567982
## 6471                                    Morocco  1994 19.63163921
## 6472                                 Mozambique  1994 32.73383239
## 6474                                    Namibia  1994 11.27008208
## 6475                                      Nepal  1994 43.06739417
## 6476                                Netherlands  1994  3.46887164
## 6477                                New Zealand  1994  8.33512096
## 6478                                  Nicaragua  1994 21.33919165
## 6479                                    Nigeria  1994 38.81088240
## 6480                                     Norway  1994  2.98566024
## 6483                                   Pakistan  1994 25.55021362
## 6484                                      Palau  1994  8.27957907
## 6485                                     Panama  1994  6.73717129
## 6486                           Papua New Guinea  1994 33.86565752
## 6487                                   Paraguay  1994 19.64347376
## 6488                                       Peru  1994  9.32396741
## 6489                                Philippines  1994 22.00365992
## 6493                          Republic of Korea  1994  6.24216254
## 6495                                    Romania  1994 21.53773266
## 6496                         Russian Federation  1994  6.62948055
## 6498                      Saint Kitts and Nevis  1994  3.78970549
## 6499                                Saint Lucia  1994  7.34130204
## 6500           Saint Vincent and the Grenadines  1994  8.07912565
## 6502                               Saudi Arabia  1994  6.14957689
## 6503                                    Senegal  1994 18.98053898
## 6505                                 Seychelles  1994  4.93132068
## 6506                               Sierra Leone  1994 39.38517457
## 6507                                  Singapore  1994  0.18533927
## 6510                            Solomon Islands  1994 47.71400778
## 6512                               South Africa  1994  4.60441157
## 6514                                  Sri Lanka  1994 23.97383949
## 6515                                      Sudan  1994 35.73142029
## 6516                                   Suriname  1994 17.00720459
## 6517                                     Sweden  1994  2.78344690
## 6518                                Switzerland  1994  1.63040074
## 6519                       Syrian Arab Republic  1994 31.10085972
## 6520                                 Tajikistan  1994 23.96486120
## 6521                                   Thailand  1994  8.62903860
## 6522  The former Yugoslav Republic of Macedonia  1994 13.26364716
## 6524                                       Togo  1994 34.92287991
## 6525                                      Tonga  1994 25.22922727
## 6526                        Trinidad and Tobago  1994  2.32205803
## 6527                                    Tunisia  1994 14.44627113
## 6528                                     Turkey  1994 16.02579693
## 6529                               Turkmenistan  1994 34.00954654
## 6531                                     Uganda  1994 49.92329410
## 6532                                    Ukraine  1994 16.24320453
## 6534                             United Kingdom  1994  1.38641250
## 6535                United Republic of Tanzania  1994 44.98055591
## 6537                                    Uruguay  1994  7.92533606
## 6538                                 Uzbekistan  1994 37.42615998
## 6539                                    Vanuatu  1994 16.28335227
## 6540         Venezuela (Bolivarian Republic of)  1994  5.26468994
## 6543                                      Yemen  1994 28.72305504
## 6544                                     Zambia  1994 13.56260604
## 6545                                   Zimbabwe  1994 18.97339632
## 6547                                    Albania  1995 55.81214471
## 6548                                    Algeria  1995 10.49781796
## 6550                                     Angola  1995  7.31225296
## 6551                        Antigua and Barbuda  1995  1.90295873
## 6552                                  Argentina  1995  5.78700381
## 6553                                    Armenia  1995 42.25531295
## 6554                                      Aruba  1995  0.55684455
## 6555                                  Australia  1995  3.30867837
## 6556                                    Austria  1995  2.40036197
## 6557                                 Azerbaijan  1995 27.28842832
## 6558                                    Bahamas  1995  3.34474486
## 6560                                 Bangladesh  1995 26.38432643
## 6561                                   Barbados  1995  3.60451321
## 6562                                    Belarus  1995 17.46044053
## 6563                                    Belgium  1995  1.44045815
## 6564                                     Belize  1995 18.34338498
## 6565                                      Benin  1995 33.09015959
## 6567                                     Bhutan  1995 32.01103676
## 6568           Bolivia (Plurinational State of)  1995 16.88361355
## 6569                     Bosnia and Herzegovina  1995 20.69999851
## 6570                                   Botswana  1995  4.90982773
## 6571                                     Brazil  1995  5.77125039
## 6572                          Brunei Darussalam  1995  1.16152757
## 6573                                   Bulgaria  1995 14.69914709
## 6574                               Burkina Faso  1995 35.83498799
## 6575                                    Burundi  1995 48.14459886
## 6576                                   Cambodia  1995 50.07138935
## 6577                                   Cameroon  1995 19.42774339
## 6581                   Central African Republic  1995 46.51164756
## 6582                                       Chad  1995 35.83829683
## 6583                                      Chile  1995  7.79363972
## 6584                                      China  1995 19.59651961
## 6585                                   Colombia  1995 15.28357035
## 6586                                      Congo  1995 10.45256580
## 6587                                 Costa Rica  1995 14.01662715
## 6589                                    Croatia  1995  7.18340894
## 6590                                       Cuba  1995  8.76664142
## 6591                                     Cyprus  1995  5.23332131
## 6592                             Czech Republic  1995  4.36401326
## 6593           Democratic Republic of the Congo  1995 56.99999950
## 6594                                    Denmark  1995  3.29395901
## 6595                                   Djibouti  1995  3.23542317
## 6596                                   Dominica  1995 18.88431733
## 6597                         Dominican Republic  1995 10.00591168
## 6598                                    Ecuador  1995 22.62255984
## 6599                                      Egypt  1995 16.77922622
## 6600                                El Salvador  1995 14.47783818
## 6602                                    Eritrea  1995 20.93939941
## 6603                                    Estonia  1995  5.73370290
## 6604                                   Eswatini  1995 12.01311886
## 6605                                   Ethiopia  1995 55.03858231
## 6606                                       Fiji  1995 20.05493498
## 6607                                    Finland  1995  4.33342598
## 6608                                     France  1995  2.73402260
## 6611                                    Georgia  1995 52.15358321
## 6612                                    Germany  1995  1.04457411
## 6613                                      Ghana  1995 42.70310968
## 6614                                     Greece  1995  8.10610764
## 6615                                    Grenada  1995  8.23607731
## 6617                                     Guinea  1995 19.23793943
## 6618                              Guinea-Bissau  1995 55.05516334
## 6619                                     Guyana  1995 41.23121506
## 6620                                   Honduras  1995 21.53497211
## 6621                                    Hungary  1995  8.36135506
## 6623                                      India  1995 27.23028174
## 6625                 Iran (Islamic Republic of)  1995 12.46770756
## 6626                                    Ireland  1995  6.40687711
## 6627                                     Israel  1995  1.95593071
## 6628                                      Italy  1995  3.27841548
## 6629                                    Jamaica  1995  9.02320048
## 6630                                      Japan  1995  1.70203452
## 6631                                     Jordan  1995  4.32305554
## 6632                                 Kazakhstan  1995 12.89298086
## 6633                                      Kenya  1995 31.13312868
## 6634                                   Kiribati  1995 29.53405321
## 6636                                 Kyrgyzstan  1995 43.90206406
## 6637           Lao People's Democratic Republic  1995 55.67544165
## 6638                                     Latvia  1995  8.89591930
## 6639                                    Lebanon  1995  7.59752524
## 6640                                    Lesotho  1995  9.45480778
## 6641                                    Liberia  1995 81.82492582
## 6643                                  Lithuania  1995 11.05479030
## 6644                                 Luxembourg  1995  1.00907860
## 6645                                 Madagascar  1995 26.68614373
## 6646                                     Malawi  1995 30.39802877
## 6647                                   Malaysia  1995 12.94994426
## 6648                                   Maldives  1995 11.46382104
## 6649                                       Mali  1995 40.28730852
## 6650                                      Malta  1995  2.79642503
## 6652                                 Mauritania  1995 37.42555442
## 6653                                  Mauritius  1995 10.37815289
## 6654                                     Mexico  1995  4.36766275
## 6655           Micronesia (Federated States of)  1995 25.32121669
## 6656                                   Mongolia  1995 34.36384000
## 6658                                    Morocco  1995 15.36258284
## 6659                                 Mozambique  1995 33.74888076
## 6661                                    Namibia  1995 10.61380400
## 6662                                      Nepal  1995 41.75849381
## 6663                                Netherlands  1995  3.38415730
## 6664                                New Zealand  1995  8.17652405
## 6665                                  Nicaragua  1995 22.59098864
## 6666                                    Nigeria  1995 32.06099353
## 6667                                     Norway  1995  2.98622012
## 6668                              Not Available  1995  8.00850535
## 6670                                   Pakistan  1995 26.13875669
## 6671                                      Palau  1995  5.85540962
## 6672                                     Panama  1995  6.76069916
## 6673                           Papua New Guinea  1995 35.48846193
## 6674                                   Paraguay  1995 20.10906609
## 6675                                       Peru  1995  8.92621354
## 6676                                Philippines  1995 21.62684140
## 6677                                     Poland  1995  5.46819054
## 6678                                   Portugal  1995  5.43579524
## 6680                          Republic of Korea  1995  5.88950894
## 6681                        Republic of Moldova  1995 33.02171038
## 6682                                    Romania  1995 19.15312245
## 6683                         Russian Federation  1995  7.16051232
## 6685                      Saint Kitts and Nevis  1995  3.43270269
## 6686                                Saint Lucia  1995  7.46098057
## 6687           Saint Vincent and the Grenadines  1995 10.60622423
## 6689                               Saudi Arabia  1995  5.88614794
## 6690                                    Senegal  1995 21.00881610
## 6691                                     Serbia  1995 20.92398117
## 6692                                 Seychelles  1995  4.76819941
## 6693                               Sierra Leone  1995 42.89177475
## 6694                                  Singapore  1995  0.15518915
## 6695                                   Slovakia  1995  5.63260881
## 6696                                   Slovenia  1995  4.28857428
## 6697                            Solomon Islands  1995 44.65607834
## 6699                               South Africa  1995  3.86438143
## 6700                                      Spain  1995  4.20672737
## 6701                                  Sri Lanka  1995 23.14012307
## 6702                                      Sudan  1995 38.67450455
## 6703                                   Suriname  1995 14.87544384
## 6704                                     Sweden  1995  2.80177672
## 6705                                Switzerland  1995  1.52152723
## 6706                       Syrian Arab Republic  1995 31.57512878
## 6707                                 Tajikistan  1995 38.43111127
## 6708                                   Thailand  1995  9.08275281
## 6709  The former Yugoslav Republic of Macedonia  1995 13.21259539
## 6711                                       Togo  1995 37.76285037
## 6712                                      Tonga  1995 24.83674591
## 6713                        Trinidad and Tobago  1995  2.41530298
## 6714                                    Tunisia  1995 13.03850604
## 6715                                     Turkey  1995 16.28944767
## 6716                               Turkmenistan  1995 17.17861206
## 6718                                     Uganda  1995 49.39077445
## 6719                                    Ukraine  1995 15.40075658
## 6721                             United Kingdom  1995  1.43193049
## 6722                United Republic of Tanzania  1995 47.14437784
## 6724                                    Uruguay  1995  8.61611136
## 6725                                 Uzbekistan  1995 32.29463652
## 6726                                    Vanuatu  1995 16.44358006
## 6727         Venezuela (Bolivarian Republic of)  1995  5.52552075
## 6730                                      Yemen  1995 23.51762103
## 6731                                     Zambia  1995 16.00057803
## 6732                                   Zimbabwe  1995 15.23519220
## 6734                                    Albania  1996 37.47960473
## 6735                                    Algeria  1996 11.76669856
## 6737                                     Angola  1996  7.02686917
## 6738                        Antigua and Barbuda  1996  1.87989671
## 6739                                  Argentina  1996  6.08125464
## 6740                                    Armenia  1996 36.82596272
## 6741                                      Aruba  1996  0.53357048
## 6742                                  Australia  1996  3.71362437
## 6743                                    Austria  1996  2.21714781
## 6744                                 Azerbaijan  1996 27.52966260
## 6745                                    Bahamas  1996  3.12805554
## 6747                                 Bangladesh  1996 24.47159924
## 6748                                   Barbados  1996  3.73169468
## 6749                                    Belarus  1996 17.02530861
## 6750                                    Belgium  1996  1.47005925
## 6751                                     Belize  1996 18.34410355
## 6752                                      Benin  1996 35.70530039
## 6753                                    Bermuda  1996  0.84450145
## 6754                                     Bhutan  1996 31.16388685
## 6755           Bolivia (Plurinational State of)  1996 16.37743045
## 6756                     Bosnia and Herzegovina  1996 25.21315478
## 6757                                   Botswana  1996  3.94775267
## 6758                                     Brazil  1996  5.45419024
## 6759                          Brunei Darussalam  1996  1.12211285
## 6760                                   Bulgaria  1996 12.88177588
## 6761                               Burkina Faso  1996 39.39431008
## 6762                                    Burundi  1996 57.22159775
## 6763                                   Cambodia  1996 46.92872009
## 6764                                   Cameroon  1996 19.28331839
## 6768                   Central African Republic  1996 51.72400489
## 6769                                       Chad  1996 39.00421791
## 6770                                      Chile  1996  6.00309301
## 6771                                      China  1996 19.32548555
## 6772                                   Colombia  1996 13.82056547
## 6773                                      Congo  1996  8.98668924
## 6774                                 Costa Rica  1996 13.36596607
## 6776                                    Croatia  1996  6.95228065
## 6777                                       Cuba  1996  7.24214556
## 6778                                     Cyprus  1996  4.99198408
## 6779                             Czech Republic  1996  3.99234518
## 6780           Democratic Republic of the Congo  1996 33.55157880
## 6781                                    Denmark  1996  3.24449285
## 6782                                   Djibouti  1996  3.57261792
## 6783                                   Dominica  1996 19.90548661
## 6784                         Dominican Republic  1996  9.27138359
## 6785                                    Ecuador  1996 21.39172116
## 6786                                      Egypt  1996 17.25984546
## 6787                                El Salvador  1996 14.01893630
## 6789                                    Eritrea  1996 17.99476809
## 6790                                    Estonia  1996  5.39049676
## 6791                                   Eswatini  1996 14.22359390
## 6792                                   Ethiopia  1996 54.30215987
## 6793                                       Fiji  1996 20.05119454
## 6794                                    Finland  1996  3.94859315
## 6795                                     France  1996  2.69930853
## 6798                                    Georgia  1996 34.13637971
## 6799                                    Germany  1996  1.09463287
## 6800                                      Ghana  1996 43.87820990
## 6801                                     Greece  1996  7.27399011
## 6802                                    Grenada  1996  7.00278436
## 6804                                     Guinea  1996 18.02058138
## 6805                              Guinea-Bissau  1996 57.60061414
## 6806                                     Guyana  1996 38.89348047
## 6807                                   Honduras  1996 22.32264334
## 6808                                    Hungary  1996  8.40986050
## 6810                                      India  1996 28.13360613
## 6812                 Iran (Islamic Republic of)  1996 10.32266954
## 6813                                    Ireland  1996  5.45709868
## 6814                                     Israel  1996  1.78973932
## 6815                                      Italy  1996  3.26242769
## 6816                                    Jamaica  1996  8.38556726
## 6817                                      Japan  1996  1.70405647
## 6818                                     Jordan  1996  3.82686731
## 6819                                 Kazakhstan  1996 12.78813880
## 6820                                      Kenya  1996 30.73917820
## 6821                                   Kiribati  1996 27.37005871
## 6823                                 Kyrgyzstan  1996 49.74640259
## 6824           Lao People's Democratic Republic  1996 53.34752249
## 6825                                     Latvia  1996  7.66130147
## 6826                                    Lebanon  1996  6.89111065
## 6827                                    Lesotho  1996  8.11141922
## 6828                                    Liberia  1996 93.97741531
## 6830                                  Lithuania  1996 12.16688689
## 6831                                 Luxembourg  1996  0.89296975
## 6832                                 Madagascar  1996 27.19903115
## 6833                                     Malawi  1996 34.69009901
## 6834                                   Malaysia  1996 11.68048051
## 6835                                   Maldives  1996 10.73674212
## 6836                                       Mali  1996 40.18385482
## 6837                                      Malta  1996  2.78772662
## 6839                                 Mauritania  1996 36.23662907
## 6840                                  Mauritius  1996 10.18870880
## 6841                                     Mexico  1996  4.71983866
## 6842           Micronesia (Federated States of)  1996 24.55521948
## 6843                                   Mongolia  1996 40.98308158
## 6845                                    Morocco  1996 20.69498185
## 6846                                 Mozambique  1996 35.00630919
## 6848                                    Namibia  1996 10.41989267
## 6849                                      Nepal  1996 41.50503735
## 6850                                Netherlands  1996  3.13736326
## 6851                                New Zealand  1996  8.29102491
## 6852                                  Nicaragua  1996 24.14758289
## 6853                                    Nigeria  1996 31.13372236
## 6854                                     Norway  1996  2.56706455
## 6855                              Not Available  1996  7.63166308
## 6857                                   Pakistan  1996 25.48283815
## 6858                                      Palau  1996  3.92878837
## 6859                                     Panama  1996  6.70841768
## 6860                           Papua New Guinea  1996 33.30803191
## 6861                                   Paraguay  1996 19.87899059
## 6862                                       Peru  1996  9.40144462
## 6863                                Philippines  1996 20.61782145
## 6864                                     Poland  1996  5.13919416
## 6865                                   Portugal  1996  5.19549724
## 6867                          Republic of Korea  1996  5.53463285
## 6868                        Republic of Moldova  1996 31.39659239
## 6869                                    Romania  1996 18.42833681
## 6870                         Russian Federation  1996  7.17246646
## 6872                      Saint Kitts and Nevis  1996  3.32102256
## 6873                                Saint Lucia  1996  6.87095215
## 6874           Saint Vincent and the Grenadines  1996  9.42564471
## 6876                               Saudi Arabia  1996  5.41274054
## 6877                                    Senegal  1996 19.91566307
## 6878                                     Serbia  1996 21.34125715
## 6879                                 Seychelles  1996  4.43958248
## 6880                               Sierra Leone  1996 47.46463763
## 6881                                  Singapore  1996  0.15977899
## 6882                                   Slovakia  1996  5.29629749
## 6883                                   Slovenia  1996  4.03154151
## 6884                            Solomon Islands  1996 41.12456928
## 6886                               South Africa  1996  4.20801646
## 6887                                      Spain  1996  4.76333327
## 6888                                  Sri Lanka  1996 22.53906328
## 6889                                      Sudan  1996 43.76211485
## 6890                                   Suriname  1996 16.38966131
## 6891                                     Sweden  1996  2.49825487
## 6892                                Switzerland  1996  1.35877166
## 6893                       Syrian Arab Republic  1996 29.94585922
## 6894                                 Tajikistan  1996 38.98366917
## 6895                                   Thailand  1996  9.06507452
## 6896  The former Yugoslav Republic of Macedonia  1996 13.24514155
## 6898                                       Togo  1996 40.83710311
## 6899                                      Tonga  1996 23.77517165
## 6900                        Trinidad and Tobago  1996  2.17377548
## 6901                                    Tunisia  1996 15.69321817
## 6902                                     Turkey  1996 17.39455624
## 6903                               Turkmenistan  1996 13.33115460
## 6905                                     Uganda  1996 45.14211767
## 6906                                    Ukraine  1996 13.82873947
## 6908                             United Kingdom  1996  1.24445995
## 6909                United Republic of Tanzania  1996 48.03031606
## 6911                                    Uruguay  1996  8.01605821
## 6912                                 Uzbekistan  1996 26.13553228
## 6913                                    Vanuatu  1996 17.60067175
## 6914         Venezuela (Bolivarian Republic of)  1996  4.49074719
## 6917                                      Yemen  1996 18.91418057
## 6918                                     Zambia  1996 15.10412944
## 6919                                   Zimbabwe  1996 21.77110726
## 6921                                    Albania  1997 32.70015991
## 6922                                    Algeria  1997  9.48232016
## 6924                                     Angola  1997  9.00201794
## 6925                        Antigua and Barbuda  1997  1.98931796
## 6926                                  Argentina  1997  5.67336684
## 6927                                    Armenia  1997 31.96867744
## 6928                                      Aruba  1997  0.47751691
## 6929                                  Australia  1997  3.55238261
## 6930                                    Austria  1997  2.13922684
## 6931                                 Azerbaijan  1997 21.73458154
## 6932                                    Bahamas  1997  3.37487481
## 6934                                 Bangladesh  1997 24.45855696
## 6935                                   Barbados  1997  3.02606972
## 6936                                    Belarus  1997 15.37783815
## 6937                                    Belgium  1997  1.48397520
## 6938                                     Belize  1997 17.96645081
## 6939                                      Benin  1997 35.78193016
## 6940                                    Bermuda  1997  0.84251429
## 6941                                     Bhutan  1997 31.20219953
## 6942           Bolivia (Plurinational State of)  1997 17.24065452
## 6943                     Bosnia and Herzegovina  1997 21.33744927
## 6944                                   Botswana  1997  3.81125120
## 6945                                     Brazil  1997  5.33078855
## 6946                          Brunei Darussalam  1997  1.22734353
## 6947                                   Bulgaria  1997 22.58919780
## 6948                               Burkina Faso  1997 36.77055174
## 6949                                    Burundi  1997 47.72701889
## 6950                                   Cambodia  1997 46.93093269
## 6951                                   Cameroon  1997 19.91090421
## 6955                   Central African Republic  1997 54.77925218
## 6956                                       Chad  1997 39.94404154
## 6957                                      Chile  1997  5.97598778
## 6958                                      China  1997 17.89527674
## 6959                                   Colombia  1997 13.70903140
## 6960                                      Congo  1997  9.13919009
## 6961                                 Costa Rica  1997 13.77850391
## 6963                                    Croatia  1997  6.51749886
## 6964                                       Cuba  1997  7.28340324
## 6965                                     Cyprus  1997  4.25057658
## 6966                             Czech Republic  1997  3.64217263
## 6967           Democratic Republic of the Congo  1997 48.13721701
## 6968                                    Denmark  1997  3.07147154
## 6969                                   Djibouti  1997  3.53375119
## 6970                                   Dominica  1997 19.39426717
## 6971                         Dominican Republic  1997  9.06355334
## 6972                                    Ecuador  1997 20.90989665
## 6973                                      Egypt  1997 16.95435335
## 6974                                El Salvador  1997 14.38551921
## 6976                                    Eritrea  1997 16.85999278
## 6977                                    Estonia  1997  5.15890663
## 6978                                   Eswatini  1997 12.99060506
## 6979                                   Ethiopia  1997 57.72290526
## 6980                                       Fiji  1997 17.33348841
## 6981                                    Finland  1997  3.94840939
## 6982                                     France  1997  2.63047963
## 6985                                    Georgia  1997 29.23739659
## 6986                                    Germany  1997  1.08322381
## 6987                                      Ghana  1997 40.05234564
## 6988                                     Greece  1997  6.92199658
## 6989                                    Grenada  1997  6.57380648
## 6991                                     Guinea  1997 21.03650960
## 6992                              Guinea-Bissau  1997 54.60478466
## 6993                                     Guyana  1997 35.44860888
## 6994                                   Honduras  1997 23.00928280
## 6995                                    Hungary  1997  7.23970282
## 6996                                    Iceland  1997  9.81254628
## 6997                                      India  1997 26.84718426
## 6999                 Iran (Islamic Republic of)  1997  9.84095697
## 7000                                    Ireland  1997  4.39311625
## 7001                                     Israel  1997  1.67410129
## 7002                                      Italy  1997  3.14942286
## 7003                                    Jamaica  1997  7.92972823
## 7004                                      Japan  1997  1.55934716
## 7005                                     Jordan  1997  3.33251097
## 7006                                 Kazakhstan  1997 11.95654068
## 7007                                      Kenya  1997 30.90534270
## 7008                                   Kiribati  1997 25.57755155
## 7010                                 Kyrgyzstan  1997 44.61260364
## 7011           Lao People's Democratic Republic  1997 52.80481927
## 7012                                     Latvia  1997  5.73225757
## 7013                                    Lebanon  1997  7.48446490
## 7014                                    Lesotho  1997  7.52440029
## 7015                                    Liberia  1997 76.95167286
## 7017                                  Lithuania  1997 10.74899611
## 7018                                 Luxembourg  1997  0.82142568
## 7019                                 Madagascar  1997 31.54900669
## 7020                                     Malawi  1997 32.58981611
## 7021                                   Malaysia  1997 11.10168740
## 7022                                   Maldives  1997  9.85129740
## 7023                                       Mali  1997 39.35068136
## 7024                                      Malta  1997  2.78465761
## 7026                                 Mauritania  1997 33.37874201
## 7027                                  Mauritius  1997  9.42632544
## 7028                                     Mexico  1997  4.37469987
## 7029           Micronesia (Federated States of)  1997 24.40817666
## 7030                                   Mongolia  1997 34.72669844
## 7032                                    Morocco  1997 16.52223677
## 7033                                 Mozambique  1997 34.15243925
## 7035                                    Namibia  1997  9.52601962
## 7036                                      Nepal  1997 41.43227669
## 7037                                Netherlands  1997  3.24893372
## 7038                                New Zealand  1997  7.84404567
## 7039                                  Nicaragua  1997 22.70290061
## 7040                                    Nigeria  1997 34.03135991
## 7041                                     Norway  1997  2.37671762
## 7042                              Not Available  1997  7.53750624
## 7044                                   Pakistan  1997 26.70256627
## 7045                                      Palau  1997  3.02228362
## 7046                                     Panama  1997  6.55433188
## 7047                           Papua New Guinea  1997 36.96604763
## 7048                                   Paraguay  1997 17.81747075
## 7049                                       Peru  1997  8.90054972
## 7050                                Philippines  1997 18.87233218
## 7051                                     Poland  1997  4.53674890
## 7052                                   Portugal  1997  4.34469204
## 7054                          Republic of Korea  1997  5.02066741
## 7055                        Republic of Moldova  1997 30.20600976
## 7056                                    Romania  1997 18.72162009
## 7057                         Russian Federation  1997  6.43937620
## 7059                      Saint Kitts and Nevis  1997  3.64917042
## 7060                                Saint Lucia  1997  5.39612439
## 7061           Saint Vincent and the Grenadines  1997  7.43679992
## 7063                               Saudi Arabia  1997  5.37380508
## 7064                                    Senegal  1997 19.76938453
## 7065                                     Serbia  1997 20.45826489
## 7066                                 Seychelles  1997  3.93955102
## 7067                               Sierra Leone  1997 58.64878566
## 7068                                  Singapore  1997  0.14159211
## 7069                                   Slovakia  1997  5.10252145
## 7070                                   Slovenia  1997  4.05953786
## 7071                            Solomon Islands  1997 41.62342846
## 7073                               South Africa  1997  4.02805661
## 7074                                      Spain  1997  4.68671431
## 7075                                  Sri Lanka  1997 21.94860064
## 7076                                      Sudan  1997 46.80177846
## 7077                                   Suriname  1997 12.60313800
## 7078                                     Sweden  1997  2.41641171
## 7079                                Switzerland  1997  1.34334739
## 7080                       Syrian Arab Republic  1997 27.88019270
## 7081                                 Tajikistan  1997 35.40138571
## 7082                                   Thailand  1997  9.06683419
## 7083  The former Yugoslav Republic of Macedonia  1997 12.77567733
## 7085                                       Togo  1997 42.19238597
## 7086                                      Tonga  1997 23.84390109
## 7087                        Trinidad and Tobago  1997  2.26999974
## 7088                                    Tunisia  1997 12.60625031
## 7089                                     Turkey  1997 14.96561964
## 7090                               Turkmenistan  1997 21.57865940
## 7092                                     Uganda  1997 41.98402345
## 7093                                    Ukraine  1997 14.41400323
## 7095                             United Kingdom  1997  1.10534253
## 7096                United Republic of Tanzania  1997 46.79939742
## 7097                   United States of America  1997  1.38252590
## 7098                                    Uruguay  1997  7.70598206
## 7099                                 Uzbekistan  1997 32.18285021
## 7100                                    Vanuatu  1997 16.74536256
## 7101         Venezuela (Bolivarian Republic of)  1997  4.92962281
## 7104                                      Yemen  1997 18.16724685
## 7105                                     Zambia  1997 15.91910159
## 7106                                   Zimbabwe  1997 18.93408221
## 7108                                    Albania  1998 30.47521816
## 7109                                    Algeria  1998 12.53328136
## 7111                                     Angola  1998 13.03375828
## 7112                        Antigua and Barbuda  1998  1.92087140
## 7113                                  Argentina  1998  5.70293391
## 7114                                    Armenia  1998 33.99572797
## 7115                                      Aruba  1998  0.43755059
## 7116                                  Australia  1998  3.31497621
## 7117                                    Austria  1998  2.01122381
## 7118                                 Azerbaijan  1998 18.92896334
## 7119                                    Bahamas  1998  2.99272131
## 7121                                 Bangladesh  1998 23.75577585
## 7122                                   Barbados  1998  2.31576359
## 7123                                    Belarus  1998 13.87224290
## 7124                                    Belgium  1998  1.39033041
## 7125                                     Belize  1998 17.30450541
## 7126                                      Benin  1998 36.57664979
## 7127                                    Bermuda  1998  0.73660078
## 7128                                     Bhutan  1998 29.53181590
## 7129           Bolivia (Plurinational State of)  1998 14.66998845
## 7130                     Bosnia and Herzegovina  1998 19.44020701
## 7131                                   Botswana  1998  3.42497222
## 7132                                     Brazil  1998  5.39864821
## 7133                          Brunei Darussalam  1998  1.41028319
## 7134                                   Bulgaria  1998 15.41101661
## 7135                               Burkina Faso  1998 39.56794507
## 7136                                    Burundi  1998 48.03144784
## 7137                                   Cambodia  1998 46.85502866
## 7138                                   Cameroon  1998 19.29523689
## 7142                   Central African Republic  1998 55.67640829
## 7143                                       Chad  1998 40.81711133
## 7144                                      Chile  1998  6.30795245
## 7145                                      China  1998 17.15903476
## 7146                                   Colombia  1998 14.26281430
## 7147                                      Congo  1998 10.95556908
## 7148                                 Costa Rica  1998 13.85890380
## 7150                                    Croatia  1998  6.82341327
## 7151                                       Cuba  1998  6.20452438
## 7152                                     Cyprus  1998  4.66694901
## 7153                             Czech Republic  1998  3.72513947
## 7154           Democratic Republic of the Congo  1998 47.48193554
## 7155                                    Denmark  1998  2.51688395
## 7156                                   Djibouti  1998  3.48132888
## 7157                                   Dominica  1998 18.84828388
## 7158                         Dominican Republic  1998  8.71720851
## 7159                                    Ecuador  1998 18.32287554
## 7160                                      Egypt  1998 17.11367707
## 7161                                El Salvador  1998 12.90288059
## 7163                                    Eritrea  1998 25.52899258
## 7164                                    Estonia  1998  5.97769779
## 7165                                   Eswatini  1998 13.17838386
## 7166                                   Ethiopia  1998 52.48803109
## 7167                                       Fiji  1998 16.76672232
## 7168                                    Finland  1998  3.33686795
## 7169                                     France  1998  2.64989741
## 7172                                    Georgia  1998 27.56313467
## 7173                                    Germany  1998  1.02756852
## 7174                                      Ghana  1998 40.23304031
## 7175                                     Greece  1998  6.58766378
## 7176                                    Grenada  1998  6.12334359
## 7178                                     Guinea  1998 22.11206077
## 7179                              Guinea-Bissau  1998 62.38272748
## 7180                                     Guyana  1998 34.60667108
## 7181                                   Honduras  1998 19.13331558
## 7182                                    Hungary  1998  6.89997298
## 7183                                    Iceland  1998  9.71542491
## 7184                                      India  1998 26.74759499
## 7186                 Iran (Islamic Republic of)  1998 11.57510451
## 7187                                    Ireland  1998  3.85263199
## 7188                                     Israel  1998  1.87409375
## 7189                                      Italy  1998  3.07139395
## 7190                                    Jamaica  1998  8.06846403
## 7191                                      Japan  1998  1.63088764
## 7192                                     Jordan  1998  3.06536864
## 7193                                 Kazakhstan  1998  9.11073111
## 7194                                      Kenya  1998 31.23148551
## 7195                                   Kiribati  1998 25.49658887
## 7197                                 Kyrgyzstan  1998 39.53307842
## 7198           Lao People's Democratic Republic  1998 53.30301757
## 7199                                     Latvia  1998  4.46673157
## 7200                                    Lebanon  1998  6.91062204
## 7201                                    Lesotho  1998  8.88347575
## 7202                                    Liberia  1998 78.64293660
## 7204                                  Lithuania  1998  8.74157553
## 7205                                 Luxembourg  1998  0.89756054
## 7206                                 Madagascar  1998 30.57605585
## 7207                                     Malawi  1998 35.58186046
## 7208                                   Malaysia  1998 13.31255031
## 7209                                   Maldives  1998  9.54817437
## 7210                                       Mali  1998 37.75989486
## 7211                                      Malta  1998  2.74112936
## 7213                                 Mauritania  1998 33.09379259
## 7214                                  Mauritius  1998  9.25711112
## 7215                                     Mexico  1998  4.20636588
## 7216           Micronesia (Federated States of)  1998 26.97357752
## 7217                                   Mongolia  1998 35.09476751
## 7219                                    Morocco  1998 18.07555162
## 7220                                 Mozambique  1998 30.03368779
## 7222                                    Namibia  1998  9.61951407
## 7223                                      Nepal  1998 39.90571191
## 7224                                Netherlands  1998  2.79444084
## 7225                                New Zealand  1998  7.54027754
## 7226                                  Nicaragua  1998 22.00436403
## 7227                                    Nigeria  1998 39.04784950
## 7228                                     Norway  1998  2.61990880
## 7229                              Not Available  1998  6.67452616
## 7231                                   Pakistan  1998 27.31006367
## 7232                                      Palau  1998  2.98546368
## 7233                                     Panama  1998  6.68772081
## 7234                           Papua New Guinea  1998 35.47507893
## 7235                                   Paraguay  1998 16.71029937
## 7236                                       Peru  1998  9.27076599
## 7237                                Philippines  1998 14.75983601
## 7238                                     Poland  1998  4.12374574
## 7239                                   Portugal  1998  4.04225091
## 7241                          Republic of Korea  1998  4.68631820
## 7242                        Republic of Moldova  1998 31.76186036
## 7243                                    Romania  1998 15.94480816
## 7244                         Russian Federation  1998  5.61600268
## 7246                      Saint Kitts and Nevis  1998  2.71884682
## 7247                                Saint Lucia  1998  6.71548938
## 7248           Saint Vincent and the Grenadines  1998  8.11057033
## 7250                               Saudi Arabia  1998  6.15924782
## 7251                                    Senegal  1998 19.36849186
## 7252                                     Serbia  1998 18.42150177
## 7253                                 Seychelles  1998  2.95169319
## 7254                               Sierra Leone  1998 61.80183354
## 7255                                  Singapore  1998  0.11736710
## 7256                                   Slovakia  1998  5.22205872
## 7257                                   Slovenia  1998  3.91174778
## 7258                            Solomon Islands  1998 37.50115945
## 7260                               South Africa  1998  3.78370513
## 7261                                      Spain  1998  4.55343827
## 7262                                  Sri Lanka  1998 21.16449052
## 7263                                      Sudan  1998 46.34830874
## 7264                                   Suriname  1998  9.63495527
## 7265                                     Sweden  1998  2.26107903
## 7266                                Switzerland  1998  1.30184838
## 7267                       Syrian Arab Republic  1998 30.60503009
## 7268                                 Tajikistan  1998 27.16547788
## 7269                                   Thailand  1998 10.26244699
## 7270  The former Yugoslav Republic of Macedonia  1998 13.24111032
## 7272                                       Togo  1998 34.96374082
## 7273                                      Tonga  1998 24.79657737
## 7274                        Trinidad and Tobago  1998  2.18149208
## 7275                                    Tunisia  1998 11.96617336
## 7276                                     Turkey  1998 13.52859242
## 7277                               Turkmenistan  1998 26.17454654
## 7279                                     Uganda  1998 42.07154065
## 7280                                    Ukraine  1998 14.23627081
## 7282                             United Kingdom  1998  1.00576551
## 7283                United Republic of Tanzania  1998 33.76268592
## 7284                   United States of America  1998  1.25653523
## 7285                                    Uruguay  1998  7.97466445
## 7286                                 Uzbekistan  1998 31.30841121
## 7287                                    Vanuatu  1998 29.25366132
## 7288         Venezuela (Bolivarian Republic of)  1998  5.42015946
## 7291                                      Yemen  1998 22.05697847
## 7292                                     Zambia  1998 18.03400006
## 7293                                   Zimbabwe  1998 21.78853057
## 7295                                    Albania  1999 27.11773207
## 7296                                    Algeria  1999 11.94138967
## 7298                                     Angola  1999  6.29025683
## 7299                        Antigua and Barbuda  1999  1.90928466
## 7300                                  Argentina  1999  4.81532950
## 7301                                    Armenia  1999 29.46402128
## 7302                                      Aruba  1999  0.41839819
## 7303                                  Australia  1999  3.32566500
## 7304                                    Austria  1999  1.93764404
## 7305                                 Azerbaijan  1999 19.15607160
## 7306                                    Bahamas  1999  2.66672771
## 7308                                 Bangladesh  1999 23.79209994
## 7309                                   Barbados  1999  2.70539322
## 7310                                    Belarus  1999 14.64210214
## 7311                                    Belgium  1999  1.19573160
## 7312                                     Belize  1999 17.84180446
## 7313                                      Benin  1999 26.49962035
## 7314                                    Bermuda  1999  0.73858821
## 7315                                     Bhutan  1999 27.27185573
## 7316           Bolivia (Plurinational State of)  1999 15.10590424
## 7317                     Bosnia and Herzegovina  1999 16.15335580
## 7318                                   Botswana  1999  3.25435917
## 7319                                     Brazil  1999  5.36501054
## 7320                          Brunei Darussalam  1999  1.23498012
## 7321                                   Bulgaria  1999 14.72195556
## 7322                               Burkina Faso  1999 32.61298455
## 7323                                    Burundi  1999 47.88993034
## 7324                                   Cambodia  1999 43.73294655
## 7325                                   Cameroon  1999 19.88376055
## 7329                   Central African Republic  1999 51.73117818
## 7330                                       Chad  1999 39.74719883
## 7331                                      Chile  1999  6.20136103
## 7332                                      China  1999 16.06478847
## 7333                                   Colombia  1999 13.96067682
## 7334                                      Congo  1999  8.35575795
## 7335                                 Costa Rica  1999 12.25697383
## 7337                                    Croatia  1999  6.91670577
## 7338                                       Cuba  1999  6.20913643
## 7339                                     Cyprus  1999  4.20909410
## 7340                             Czech Republic  1999  3.43889415
## 7341           Democratic Republic of the Congo  1999 52.69546646
## 7342                                    Denmark  1999  2.27508967
## 7343                                   Djibouti  1999  3.48971213
## 7344                                   Dominica  1999 18.71893710
## 7345                         Dominican Republic  1999  8.02517856
## 7346                                    Ecuador  1999 18.32826619
## 7347                                      Egypt  1999 17.31736085
## 7348                                El Salvador  1999 11.20893076
## 7350                                    Eritrea  1999 24.88204328
## 7351                                    Estonia  1999  4.38893578
## 7352                                   Eswatini  1999 13.40284505
## 7353                                   Ethiopia  1999 48.62737685
## 7354                                       Fiji  1999 19.06401389
## 7355                                    Finland  1999  3.31688323
## 7356                                     France  1999  2.50747236
## 7359                                    Georgia  1999 26.23589905
## 7360                                    Germany  1999  1.01233219
## 7361                                      Ghana  1999 39.92778974
## 7362                                     Greece  1999  6.45015792
## 7363                                    Grenada  1999  6.27381259
## 7365                                     Guinea  1999 22.46524098
## 7366                              Guinea-Bissau  1999 58.69346754
## 7367                                     Guyana  1999 34.64008705
## 7368                                   Honduras  1999 15.93910325
## 7369                                    Hungary  1999  6.10431070
## 7370                                    Iceland  1999  9.14096354
## 7371                                      India  1999 25.41109292
## 7373                 Iran (Islamic Republic of)  1999  9.96197622
## 7374                                    Ireland  1999  2.89552040
## 7375                                     Israel  1999  1.61243104
## 7376                                      Italy  1999  3.03102974
## 7377                                    Jamaica  1999  7.54645227
## 7378                                      Japan  1999  1.59431375
## 7379                                     Jordan  1999  2.38229177
## 7380                                 Kazakhstan  1999 10.47616455
## 7381                                      Kenya  1999 32.38384385
## 7382                                   Kiribati  1999 25.63380014
## 7384                                 Kyrgyzstan  1999 37.67884220
## 7385           Lao People's Democratic Republic  1999 53.71351225
## 7386                                     Latvia  1999  4.33292529
## 7387                                    Lebanon  1999  7.16521892
## 7388                                    Lesotho  1999  9.31175700
## 7389                                    Liberia  1999 76.18832051
## 7391                                  Lithuania  1999  7.26081059
## 7392                                 Luxembourg  1999  0.80640966
## 7393                                 Madagascar  1999 30.02559888
## 7394                                     Malawi  1999 37.84101416
## 7395                                   Malaysia  1999 10.84231595
## 7396                                   Maldives  1999  9.19523204
## 7397                                       Mali  1999 39.02224618
## 7398                                      Malta  1999  2.57270367
## 7400                                 Mauritania  1999 35.51519512
## 7401                                  Mauritius  1999  6.09865343
## 7402                                     Mexico  1999  3.95379677
## 7403           Micronesia (Federated States of)  1999 25.41183814
## 7404                                   Mongolia  1999 34.76497891
## 7406                                    Morocco  1999 15.55363367
## 7407                                 Mozambique  1999 27.44564228
## 7409                                    Namibia  1999  9.92335694
## 7410                                      Nepal  1999 41.29172126
## 7411                                Netherlands  1999  2.53977219
## 7412                                New Zealand  1999  7.88274605
## 7413                                  Nicaragua  1999 19.44814507
## 7414                                    Nigeria  1999 35.30644453
## 7415                                     Norway  1999  2.36454835
## 7416                              Not Available  1999  5.95964337
## 7418                                   Pakistan  1999 27.03159386
## 7419                                      Palau  1999  4.06322984
## 7420                                     Panama  1999  6.26700533
## 7421                           Papua New Guinea  1999 36.14816408
## 7422                                   Paraguay  1999 16.37419283
## 7423                                       Peru  1999  9.09497308
## 7424                                Philippines  1999 15.21112017
## 7425                                     Poland  1999  3.61389182
## 7426                                   Portugal  1999  3.76850036
## 7428                          Republic of Korea  1999  4.78888936
## 7429                        Republic of Moldova  1999 27.87354754
## 7430                                    Romania  1999 14.10624697
## 7431                         Russian Federation  1999  7.31454382
## 7433                      Saint Kitts and Nevis  1999  2.08124814
## 7434                                Saint Lucia  1999  5.90513207
## 7435           Saint Vincent and the Grenadines  1999  8.02148195
## 7437                               Saudi Arabia  1999  5.67955272
## 7438                                    Senegal  1999 18.97525673
## 7439                                     Serbia  1999 20.99158984
## 7440                                 Seychelles  1999  3.42891318
## 7441                               Sierra Leone  1999 61.96892169
## 7442                                  Singapore  1999  0.11831609
## 7443                                   Slovakia  1999  4.46539776
## 7444                                   Slovenia  1999  3.29605755
## 7445                            Solomon Islands  1999 35.92681491
## 7447                               South Africa  1999  3.55671412
## 7448                                      Spain  1999  4.20642078
## 7449                                  Sri Lanka  1999 20.72848094
## 7450                                      Sudan  1999 45.22696892
## 7451                                   Suriname  1999  9.75583404
## 7452                                     Sweden  1999  2.10926519
## 7453                                Switzerland  1999  1.20723181
## 7454                       Syrian Arab Republic  1999 25.18055991
## 7455                                 Tajikistan  1999 27.38436071
## 7456                                   Thailand  1999  8.89582304
## 7457  The former Yugoslav Republic of Macedonia  1999 12.89501233
## 7459                                       Togo  1999 36.93322318
## 7460                                      Tonga  1999 25.78661805
## 7461                        Trinidad and Tobago  1999  2.02793634
## 7462                                    Tunisia  1999 11.98545104
## 7463                                     Turkey  1999 11.48382820
## 7464                               Turkmenistan  1999 26.18934973
## 7466                                     Uganda  1999 38.45645113
## 7467                                    Ukraine  1999 14.28110450
## 7469                             United Kingdom  1999  0.94472887
## 7470                United Republic of Tanzania  1999 34.12771120
## 7471                   United States of America  1999  1.19055064
## 7472                                    Uruguay  1999  6.77821024
## 7473                                 Uzbekistan  1999 33.52397903
## 7474                                    Vanuatu  1999 28.53585657
## 7475         Venezuela (Bolivarian Republic of)  1999  4.72581715
## 7478                                      Yemen  1999 18.17157109
## 7479                                     Zambia  1999 20.55077743
## 7480                                   Zimbabwe  1999 19.17667758
## 7482                                    Albania  2000 26.49046231
## 7483                                    Algeria  2000  8.97820202
## 7484                                    Andorra  2000  0.54154715
## 7485                                     Angola  2000  5.66468956
## 7486                        Antigua and Barbuda  2000  1.76861639
## 7487                                  Argentina  2000  5.05302149
## 7488                                    Armenia  2000 25.54787016
## 7489                                      Aruba  2000  0.44430370
## 7490                                  Australia  2000  3.38438253
## 7491                                    Austria  2000  1.84589823
## 7492                                 Azerbaijan  2000 17.14337347
## 7493                                    Bahamas  2000  2.85029299
## 7495                                 Bangladesh  2000 23.77274134
## 7496                                   Barbados  2000  2.29947833
## 7497                                    Belarus  2000 14.15322736
## 7498                                    Belgium  2000  1.30847950
## 7499                                     Belize  2000 17.36807483
## 7500                                      Benin  2000 25.80426476
## 7501                                    Bermuda  2000  0.70624074
## 7502                                     Bhutan  2000 27.38942128
## 7503           Bolivia (Plurinational State of)  2000 15.00764887
## 7504                     Bosnia and Herzegovina  2000 10.58301492
## 7505                                   Botswana  2000  3.04982151
## 7506                                     Brazil  2000  5.52327780
## 7507                          Brunei Darussalam  2000  1.02441349
## 7508                                   Bulgaria  2000 12.57954989
## 7509                               Burkina Faso  2000 32.80850728
## 7510                                    Burundi  2000 48.05965423
## 7511                                   Cambodia  2000 38.28448009
## 7512                                   Cameroon  2000 18.16915124
## 7516                   Central African Republic  2000 52.10210734
## 7517                                       Chad  2000 42.31419695
## 7518                                      Chile  2000  5.91657393
## 7519                                      China  2000 14.67624166
## 7520                                   Colombia  2000  8.94956312
## 7521                                      Congo  2000  5.30425300
## 7522                                 Costa Rica  2000 10.25935388
## 7524                                    Croatia  2000  6.40508152
## 7525                                       Cuba  2000  6.68781364
## 7526                                     Cyprus  2000  4.00316922
## 7527                             Czech Republic  2000  3.42073931
## 7528           Democratic Republic of the Congo  2000 32.33075007
## 7529                                    Denmark  2000  2.49780645
## 7530                                   Djibouti  2000  3.54419784
## 7531                                   Dominica  2000 13.32277318
## 7532                         Dominican Republic  2000  7.24516484
## 7533                                    Ecuador  2000 16.33739326
## 7534                                      Egypt  2000 16.74074262
## 7535                                El Salvador  2000 10.47978358
## 7537                                    Eritrea  2000 13.43563017
## 7538                                    Estonia  2000  4.83889710
## 7539                                   Eswatini  2000 12.84036183
## 7540                                   Ethiopia  2000 47.75863921
## 7541                                       Fiji  2000 17.06107252
## 7542                                    Finland  2000  3.38087248
## 7543                                     France  2000  2.34310709
## 7546                                    Georgia  2000 21.93349287
## 7547                                    Germany  2000  1.05665247
## 7548                                      Ghana  2000 39.41371832
## 7549                                     Greece  2000  6.08420904
## 7550                                    Grenada  2000  5.98680789
## 7552                                     Guinea  2000 22.37536701
## 7553                              Guinea-Bissau  2000 42.73795229
## 7554                                     Guyana  2000 31.08820788
## 7555                                   Honduras  2000 15.87897961
## 7556                                    Hungary  2000  5.71361028
## 7557                                    Iceland  2000  8.37925329
## 7558                                      India  2000 23.87575713
## 7560                 Iran (Islamic Republic of)  2000  9.12624975
## 7561                                    Ireland  2000  2.81745372
## 7562                                     Israel  2000  1.41361795
## 7563                                      Italy  2000  2.84906760
## 7564                                    Jamaica  2000  7.03990728
## 7565                                      Japan  2000  1.53360929
## 7566                                     Jordan  2000  2.34583584
## 7567                                 Kazakhstan  2000  8.68781855
## 7568                                      Kenya  2000 32.36397421
## 7569                                   Kiribati  2000 22.49227454
## 7571                                 Kyrgyzstan  2000 36.74896846
## 7572           Lao People's Democratic Republic  2000 45.16643428
## 7573                                     Latvia  2000  5.11820928
## 7574                                    Lebanon  2000  7.11031280
## 7575                                    Lesotho  2000  8.29934664
## 7576                                    Liberia  2000 76.07384807
## 7578                                  Lithuania  2000  6.27747175
## 7579                                 Luxembourg  2000  0.69719711
## 7580                                 Madagascar  2000 29.20998685
## 7581                                     Malawi  2000 39.53955421
## 7582                                   Malaysia  2000  8.59930247
## 7583                                   Maldives  2000  8.76095309
## 7584                                       Mali  2000 35.88559002
## 7585                                      Malta  2000  2.23436582
## 7587                                 Mauritania  2000 36.67665443
## 7588                                  Mauritius  2000  6.96576527
## 7589                                     Mexico  2000  3.53531325
## 7590           Micronesia (Federated States of)  2000 25.89368108
## 7591                                   Mongolia  2000 30.87545764
## 7592                                 Montenegro  2000 12.45553221
## 7593                                    Morocco  2000 13.28701195
## 7594                                 Mozambique  2000 22.96314401
## 7595                                    Myanmar  2000 57.23864526
## 7596                                    Namibia  2000 11.82363738
## 7597                                      Nepal  2000 40.81953519
## 7598                                Netherlands  2000  2.49681586
## 7599                                New Zealand  2000  9.56062167
## 7600                                  Nicaragua  2000 20.26713639
## 7601                                    Nigeria  2000 26.03397777
## 7602                                     Norway  2000  2.06692884
## 7603                              Not Available  2000  5.48493358
## 7605                                   Pakistan  2000 25.92936031
## 7606                                      Palau  2000  4.88885705
## 7607                                     Panama  2000  6.49707986
## 7608                           Papua New Guinea  2000 35.77192679
## 7609                                   Paraguay  2000 15.81585450
## 7610                                       Peru  2000  8.85469836
## 7611                                Philippines  2000 13.96678221
## 7612                                     Poland  2000  3.48680211
## 7613                                   Portugal  2000  3.54674015
## 7614                                      Qatar  2000  0.37279955
## 7615                          Republic of Korea  2000  4.39291603
## 7616                        Republic of Moldova  2000 29.02938240
## 7617                                    Romania  2000 12.02005831
## 7618                         Russian Federation  2000  6.43452162
## 7620                      Saint Kitts and Nevis  2000  1.73000262
## 7621                                Saint Lucia  2000  5.85063208
## 7622           Saint Vincent and the Grenadines  2000  8.57330831
## 7624                               Saudi Arabia  2000  4.92105478
## 7625                                    Senegal  2000 19.14266365
## 7626                                     Serbia  2000 19.94422836
## 7627                                 Seychelles  2000  3.43583707
## 7628                               Sierra Leone  2000 58.36204147
## 7629                                  Singapore  2000  0.09884413
## 7630                                   Slovakia  2000  4.41709122
## 7631                                   Slovenia  2000  3.31265495
## 7632                            Solomon Islands  2000 34.67779979
## 7634                               South Africa  2000  3.28620097
## 7635                                      Spain  2000  4.12060970
## 7636                                  Sri Lanka  2000 19.92731504
## 7637                                      Sudan  2000 42.17040829
## 7638                                   Suriname  2000 11.16406766
## 7639                                     Sweden  2000  1.90276821
## 7640                                Switzerland  2000  1.20820072
## 7641                       Syrian Arab Republic  2000 23.75023709
## 7642                                 Tajikistan  2000 27.42246896
## 7643                                   Thailand  2000  8.50290040
## 7644  The former Yugoslav Republic of Macedonia  2000 11.97751919
## 7645                                Timor-Leste  2000 29.40511674
## 7646                                       Togo  2000 35.14112169
## 7647                                      Tonga  2000 22.80942254
## 7648                        Trinidad and Tobago  2000  1.41295780
## 7649                                    Tunisia  2000 11.33392597
## 7650                                     Turkey  2000 11.25937373
## 7651                               Turkmenistan  2000 24.36762575
## 7652                                     Tuvalu  2000 20.44115949
## 7653                                     Uganda  2000 29.38455705
## 7654                                    Ukraine  2000 17.08280767
## 7656                             United Kingdom  2000  0.87178762
## 7657                United Republic of Tanzania  2000 33.48265835
## 7658                   United States of America  2000  1.18921934
## 7659                                    Uruguay  2000  6.96293598
## 7660                                 Uzbekistan  2000 34.35904837
## 7661                                    Vanuatu  2000 26.18148599
## 7662         Venezuela (Bolivarian Republic of)  2000  4.21001828
## 7665                                      Yemen  2000 15.06970354
## 7666                                     Zambia  2000 18.27865120
## 7667                                   Zimbabwe  2000 18.26159725
## 7669                                    Albania  2001 24.45305458
## 7670                                    Algeria  2001 10.50199730
## 7671                                    Andorra  2001  0.50555252
## 7672                                     Angola  2001  8.15637702
## 7673                        Antigua and Barbuda  2001  1.82106086
## 7674                                  Argentina  2001  4.89280607
## 7675                                    Armenia  2001 28.32815471
## 7676                                      Aruba  2001  0.43817433
## 7677                                  Australia  2001  3.83435226
## 7678                                    Austria  2001  1.86948628
## 7679                                 Azerbaijan  2001 16.10301355
## 7680                                    Bahamas  2001  2.62012244
## 7682                                 Bangladesh  2001 22.99528298
## 7683                                   Barbados  2001  2.46645319
## 7684                                    Belarus  2001 11.87493737
## 7685                                    Belgium  2001  1.22942832
## 7686                                     Belize  2001 15.78809433
## 7687                                      Benin  2001 25.34142640
## 7688                                    Bermuda  2001  0.72888970
## 7689                                     Bhutan  2001 26.13075667
## 7690           Bolivia (Plurinational State of)  2001 15.21536297
## 7691                     Bosnia and Herzegovina  2001 10.76126758
## 7692                                   Botswana  2001  2.80789293
## 7693                                     Brazil  2001  5.63796498
## 7694                          Brunei Darussalam  2001  1.13456724
## 7695                                   Bulgaria  2001 12.05726869
## 7696                               Burkina Faso  2001 37.04837406
## 7697                                    Burundi  2001 46.43665432
## 7698                                   Cambodia  2001 36.46804773
## 7699                                   Cameroon  2001 19.01091871
## 7703                   Central African Republic  2001 53.41252682
## 7704                                       Chad  2001 41.81033232
## 7705                                      Chile  2001  4.83983883
## 7706                                      China  2001 13.98346135
## 7707                                   Colombia  2001  8.97541825
## 7708                                      Congo  2001  5.79993165
## 7709                                 Costa Rica  2001  9.32160015
## 7711                                    Croatia  2001  6.41984323
## 7712                                       Cuba  2001  6.46176078
## 7713                                     Cyprus  2001  4.26216095
## 7714                             Czech Republic  2001  3.29507207
## 7715           Democratic Republic of the Congo  2001 33.73721820
## 7716                                    Denmark  2001  2.71666337
## 7717                                   Djibouti  2001  3.53836767
## 7718                                   Dominica  2001 12.60733517
## 7719                         Dominican Republic  2001  7.46196436
## 7720                                    Ecuador  2001 13.74486796
## 7721                                      Egypt  2001 16.55871103
## 7722                                El Salvador  2001 10.12014464
## 7724                                    Eritrea  2001 16.24869322
## 7725                                    Estonia  2001  4.73803231
## 7726                                   Eswatini  2001 12.68655639
## 7727                                   Ethiopia  2001 45.64146015
## 7728                                       Fiji  2001 14.85260021
## 7729                                    Finland  2001  3.14528247
## 7730                                     France  2001  2.34478890
## 7731                                      Gabon  2001  6.69304756
## 7733                                    Georgia  2001 22.42663560
## 7734                                    Germany  2001  1.15009163
## 7735                                      Ghana  2001 39.32504243
## 7736                                     Greece  2001  5.84496547
## 7737                                    Grenada  2001  6.16215388
## 7738                                  Guatemala  2001 15.08679471
## 7739                                     Guinea  2001 23.22819402
## 7740                              Guinea-Bissau  2001 38.34293779
## 7741                                     Guyana  2001 30.30351674
## 7742                                   Honduras  2001 14.58880158
## 7743                                    Hungary  2001  5.60915143
## 7744                                    Iceland  2001  8.86727287
## 7745                                      India  2001 23.77251825
## 7747                 Iran (Islamic Republic of)  2001  8.39172521
## 7748                                    Ireland  2001  2.24216492
## 7749                                     Israel  2001  1.64064381
## 7750                                      Italy  2001  2.75384349
## 7751                                    Jamaica  2001  6.94645740
## 7752                                      Japan  2001  1.38889742
## 7753                                     Jordan  2001  2.27284004
## 7754                                 Kazakhstan  2001  9.37250204
## 7755                                      Kenya  2001 31.33007599
## 7756                                   Kiribati  2001 22.58387404
## 7758                                 Kyrgyzstan  2001 37.29128665
## 7759           Lao People's Democratic Republic  2001 43.95812359
## 7760                                     Latvia  2001  5.01533363
## 7761                                    Lebanon  2001  6.68265936
## 7762                                    Lesotho  2001  8.77611977
## 7763                                    Liberia  2001 76.53276392
## 7765                                  Lithuania  2001  5.46938350
## 7766                                 Luxembourg  2001  0.66341828
## 7767                                 Madagascar  2001 27.89273834
## 7768                                     Malawi  2001 38.78214102
## 7769                                   Malaysia  2001  8.01097059
## 7770                                   Maldives  2001  6.96134898
## 7771                                       Mali  2001 35.91831437
## 7772                                      Malta  2001  2.57575758
## 7774                                 Mauritania  2001 35.78594924
## 7775                                  Mauritius  2001  7.31351658
## 7776                                     Mexico  2001  3.66546995
## 7777           Micronesia (Federated States of)  2001 24.73220599
## 7778                                   Mongolia  2001 26.35049338
## 7779                                 Montenegro  2001 11.94860675
## 7780                                    Morocco  2001 14.77198297
## 7781                                 Mozambique  2001 21.38642377
## 7782                                    Myanmar  2001 57.06919164
## 7783                                    Namibia  2001 10.51454576
## 7784                                      Nepal  2001 37.64258831
## 7785                                Netherlands  2001  2.43568125
## 7786                                New Zealand  2001  9.74894142
## 7787                                  Nicaragua  2001 18.97300650
## 7788                                    Nigeria  2001 33.75378840
## 7789                                     Norway  2001  1.79841954
## 7790                              Not Available  2001  5.80791574
## 7792                                   Pakistan  2001 24.09488168
## 7793                                      Palau  2001  4.41264025
## 7794                                     Panama  2001  6.93999193
## 7795                           Papua New Guinea  2001 36.26714516
## 7796                                   Paraguay  2001 14.75043545
## 7797                                       Peru  2001  8.63214527
## 7798                                Philippines  2001 13.20227225
## 7799                                     Poland  2001  3.62382185
## 7800                                   Portugal  2001  3.36961470
## 7801                                      Qatar  2001  0.37593985
## 7802                          Republic of Korea  2001  4.12644339
## 7803                        Republic of Moldova  2001 25.96192571
## 7804                                    Romania  2001 14.49417566
## 7805                         Russian Federation  2001  6.58868076
## 7807                      Saint Kitts and Nevis  2001  1.92278781
## 7808                                Saint Lucia  2001  4.75894530
## 7809           Saint Vincent and the Grenadines  2001  7.25152130
## 7811                               Saudi Arabia  2001  5.17120896
## 7812                                    Senegal  2001 18.51240411
## 7813                                     Serbia  2001 19.98221414
## 7814                                 Seychelles  2001  3.42128187
## 7815                               Sierra Leone  2001 48.73695362
## 7816                                  Singapore  2001  0.08789280
## 7817                                   Slovakia  2001  4.95303196
## 7818                                   Slovenia  2001  2.97210131
## 7819                            Solomon Islands  2001 24.01403090
## 7821                               South Africa  2001  3.52574312
## 7822                                      Spain  2001  4.00942804
## 7823                                  Sri Lanka  2001 20.06660520
## 7824                                      Sudan  2001 42.89220007
## 7825                                   Suriname  2001 11.55350904
## 7826                                     Sweden  2001  1.90239803
## 7827                                Switzerland  2001  1.03719130
## 7828                       Syrian Arab Republic  2001 27.04020942
## 7829                                 Tajikistan  2001 26.15768119
## 7830                                   Thailand  2001  8.58250485
## 7831  The former Yugoslav Republic of Macedonia  2001 11.50471041
## 7832                                Timor-Leste  2001 24.07317006
## 7833                                       Togo  2001 37.71936035
## 7834                                      Tonga  2001 20.97287179
## 7835                        Trinidad and Tobago  2001  1.33942851
## 7836                                    Tunisia  2001 10.67895306
## 7837                                     Turkey  2001  9.92770257
## 7838                               Turkmenistan  2001 24.35657464
## 7839                                     Tuvalu  2001 21.23651271
## 7840                                     Uganda  2001 29.69154468
## 7841                                    Ukraine  2001 16.37209818
## 7843                             United Kingdom  2001  0.83288961
## 7844                United Republic of Tanzania  2001 32.86714119
## 7845                   United States of America  2001  1.16484834
## 7846                                    Uruguay  2001  6.51869298
## 7847                                 Uzbekistan  2001 34.00571349
## 7848                                    Vanuatu  2001 26.92577779
## 7849         Venezuela (Bolivarian Republic of)  2001  4.54421732
## 7852                                      Yemen  2001 15.57406431
## 7853                                     Zambia  2001 17.64738381
## 7854                                   Zimbabwe  2001 17.30703093
## 7855                                Afghanistan  2002 38.47194003
## 7856                                    Albania  2002 24.23593287
## 7857                                    Algeria  2002 10.06508937
## 7858                                    Andorra  2002  0.44808396
## 7860                        Antigua and Barbuda  2002  1.96608287
## 7861                                  Argentina  2002 10.82208718
## 7862                                    Armenia  2002 25.96189882
## 7863                                      Aruba  2002  0.43471231
## 7864                                  Australia  2002  4.30621039
## 7865                                    Austria  2002  1.75107544
## 7866                                 Azerbaijan  2002 15.17167667
## 7867                                    Bahamas  2002  3.12388915
## 7869                                 Bangladesh  2002 21.66846646
## 7870                                   Barbados  2002  2.17826926
## 7871                                    Belarus  2002 11.77527610
## 7872                                    Belgium  2002  1.14521802
## 7873                                     Belize  2002 15.33867375
## 7874                                      Benin  2002 26.88604380
## 7875                                    Bermuda  2002  0.83539900
## 7876                                     Bhutan  2002 26.34049001
## 7877           Bolivia (Plurinational State of)  2002 14.89878572
## 7878                     Bosnia and Herzegovina  2002 10.08915339
## 7879                                   Botswana  2002  2.59210383
## 7880                                     Brazil  2002  6.41742258
## 7881                          Brunei Darussalam  2002  1.09356961
## 7882                                   Bulgaria  2002 10.91042130
## 7883                               Burkina Faso  2002 38.55286306
## 7884                                    Burundi  2002 45.78611742
## 7885                                   Cambodia  2002 33.18670534
## 7886                                   Cameroon  2002 17.88726215
## 7890                   Central African Republic  2002 53.62457241
## 7891                                       Chad  2002 39.44327228
## 7892                                      Chile  2002  4.87765601
## 7893                                      China  2002 13.30148771
## 7894                                   Colombia  2002  9.20023973
## 7895                                      Congo  2002  6.26158012
## 7896                                 Costa Rica  2002  9.36376699
## 7898                                    Croatia  2002  6.31367967
## 7899                                       Cuba  2002  6.00273507
## 7900                                     Cyprus  2002  4.20317006
## 7901                             Czech Republic  2002  2.80374518
## 7902           Democratic Republic of the Congo  2002 27.33446168
## 7903                                    Denmark  2002  2.07317989
## 7904                                   Djibouti  2002  3.58182858
## 7905                                   Dominica  2002 12.06934640
## 7906                         Dominican Republic  2002  7.20984732
## 7907                                    Ecuador  2002 12.21924278
## 7908                                      Egypt  2002 16.46219947
## 7909                                El Salvador  2002  9.14370610
## 7911                                    Eritrea  2002 15.05953567
## 7912                                    Estonia  2002  4.23429854
## 7913                                   Eswatini  2002 13.16434481
## 7914                                   Ethiopia  2002 41.66034075
## 7915                                       Fiji  2002 15.31736120
## 7916                                    Finland  2002  3.05181471
## 7917                                     France  2002  2.23443583
## 7918                                      Gabon  2002  6.24843309
## 7920                                    Georgia  2002 20.61035136
## 7921                                    Germany  2002  0.94623348
## 7922                                      Ghana  2002 39.21139752
## 7923                                     Greece  2002  5.59130301
## 7924                                    Grenada  2002  7.23208758
## 7925                                  Guatemala  2002 15.17490806
## 7926                                     Guinea  2002 23.41864733
## 7927                              Guinea-Bissau  2002 43.21258260
## 7928                                     Guyana  2002 30.82318462
## 7929                                   Honduras  2002 13.45202051
## 7930                                    Hungary  2002  4.81289004
## 7931                                    Iceland  2002  8.78754230
## 7932                                      India  2002 21.46336794
## 7934                 Iran (Islamic Republic of)  2002  7.89839651
## 7935                                    Ireland  2002  1.95942838
## 7936                                     Israel  2002  1.68795812
## 7937                                      Italy  2002  2.62030818
## 7938                                    Jamaica  2002  6.25583432
## 7939                                      Japan  2002  1.39216807
## 7940                                     Jordan  2002  2.54615164
## 7941                                 Kazakhstan  2002  8.61601025
## 7942                                      Kenya  2002 29.13061411
## 7943                                   Kiribati  2002 24.43050226
## 7945                                 Kyrgyzstan  2002 37.68295945
## 7946           Lao People's Democratic Republic  2002 42.69267344
## 7947                                     Latvia  2002  5.12310872
## 7948                                    Lebanon  2002  6.66693851
## 7949                                    Lesotho  2002  6.78896676
## 7950                                    Liberia  2002 79.04232044
## 7951                                      Libya  2002  5.20490854
## 7952                                  Lithuania  2002  5.36072067
## 7953                                 Luxembourg  2002  0.80177480
## 7954                                 Madagascar  2002 31.67835872
## 7955                                     Malawi  2002 40.90167184
## 7956                                   Malaysia  2002  8.98484390
## 7957                                   Maldives  2002  6.74122743
## 7958                                       Mali  2002 36.10733599
## 7959                                      Malta  2002  2.50423335
## 7961                                 Mauritania  2002 35.13361293
## 7962                                  Mauritius  2002  6.28828678
## 7963                                     Mexico  2002  3.57639671
## 7964           Micronesia (Federated States of)  2002 24.94898087
## 7965                                   Mongolia  2002 21.49947726
## 7966                                 Montenegro  2002 12.19422530
## 7967                                    Morocco  2002 14.77543398
## 7968                                 Mozambique  2002 26.07119772
## 7969                                    Myanmar  2002 54.52833273
## 7970                                    Namibia  2002 10.94147235
## 7971                                      Nepal  2002 38.58995300
## 7972                                Netherlands  2002  2.26455429
## 7973                                New Zealand  2002  7.47484237
## 7974                                  Nicaragua  2002 18.59910582
## 7975                                    Nigeria  2002 48.56594018
## 7976                                     Norway  2002  1.72456755
## 7977                              Not Available  2002  5.15054303
## 7979                                   Pakistan  2002 23.35388324
## 7980                                      Palau  2002  4.32904885
## 7981                                     Panama  2002  6.92863672
## 7982                           Papua New Guinea  2002 39.95163939
## 7983                                   Paraguay  2002 14.92239183
## 7984                                       Peru  2002  8.22660909
## 7985                                Philippines  2002 13.14558732
## 7986                                     Poland  2002  3.05453803
## 7987                                   Portugal  2002  3.11010170
## 7988                                      Qatar  2002  0.25679587
## 7989                          Republic of Korea  2002  3.76357392
## 7990                        Republic of Moldova  2002 24.08240094
## 7991                                    Romania  2002 12.55772154
## 7992                         Russian Federation  2002  6.29875895
## 7994                      Saint Kitts and Nevis  2002  1.99233172
## 7995                                Saint Lucia  2002  5.50362687
## 7996           Saint Vincent and the Grenadines  2002  7.35637896
## 7998                               Saudi Arabia  2002  5.07733794
## 7999                                    Senegal  2002 15.52713823
## 8000                                     Serbia  2002 15.04887329
## 8001                                 Seychelles  2002  3.51751102
## 8002                               Sierra Leone  2002 49.61836952
## 8003                                  Singapore  2002  0.07525492
## 8004                                   Slovakia  2002  5.01877387
## 8005                                   Slovenia  2002  3.20401633
## 8006                            Solomon Islands  2002 30.98258258
## 8008                               South Africa  2002  3.70517935
## 8009                                      Spain  2002  3.79422023
## 8010                                  Sri Lanka  2002 14.27932254
## 8011                                      Sudan  2002 41.88590733
## 8012                                   Suriname  2002  7.43539423
## 8013                                     Sweden  2002  1.84220170
## 8014                                Switzerland  2002  1.02319473
## 8015                       Syrian Arab Republic  2002 26.83239329
## 8016                                 Tajikistan  2002 24.66404896
## 8017                                   Thailand  2002  8.69602595
## 8018  The former Yugoslav Republic of Macedonia  2002 12.33519228
## 8019                                Timor-Leste  2002 28.05026030
## 8020                                       Togo  2002 38.19171067
## 8021                                      Tonga  2002 21.13058910
## 8022                        Trinidad and Tobago  2002  1.46077779
## 8023                                    Tunisia  2002  9.32597357
## 8024                                     Turkey  2002 11.63358614
## 8025                               Turkmenistan  2002 22.01301720
## 8026                                     Tuvalu  2002 19.75781466
## 8027                                     Uganda  2002 24.90403166
## 8028                                    Ukraine  2002 14.62170840
## 8030                             United Kingdom  2002  0.80879063
## 8031                United Republic of Tanzania  2002 32.45784134
## 8032                   United States of America  2002  1.00219956
## 8033                                    Uruguay  2002  8.68545571
## 8034                                 Uzbekistan  2002 34.25172744
## 8035                                    Vanuatu  2002 27.46895420
## 8036         Venezuela (Bolivarian Republic of)  2002  4.10333702
## 8039                                      Yemen  2002 14.91267487
## 8040                                     Zambia  2002 17.26753720
## 8041                                   Zimbabwe  2002 14.02900653
## 8042                                Afghanistan  2003 37.76544351
## 8043                                    Albania  2003 24.33269860
## 8044                                    Algeria  2003 10.62600800
## 8045                                    Andorra  2003  0.48575663
## 8047                        Antigua and Barbuda  2003  1.99082086
## 8048                                  Argentina  2003 11.04233015
## 8049                                    Armenia  2003 23.68209805
## 8050                                      Aruba  2003  0.43510833
## 8051                                  Australia  2003  3.17915161
## 8052                                    Austria  2003  1.66912854
## 8053                                 Azerbaijan  2003 13.46151444
## 8054                                    Bahamas  2003  2.76547370
## 8056                                 Bangladesh  2003 20.92435400
## 8057                                   Barbados  2003  2.29943329
## 8058                                    Belarus  2003 10.20404206
## 8059                                    Belgium  2003  1.14088066
## 8060                                     Belize  2003 16.80569768
## 8061                                      Benin  2003 25.59450240
## 8062                                    Bermuda  2003  0.86243220
## 8063                                     Bhutan  2003 25.18818182
## 8064           Bolivia (Plurinational State of)  2003 15.41800023
## 8065                     Bosnia and Herzegovina  2003  8.96352599
## 8066                                   Botswana  2003  2.97299280
## 8067                                     Brazil  2003  7.20396922
## 8068                          Brunei Darussalam  2003  1.22219652
## 8069                                   Bulgaria  2003 10.40492276
## 8070                               Burkina Faso  2003 37.07569451
## 8071                                    Burundi  2003 46.36023027
## 8072                                   Cambodia  2003 33.92010865
## 8073                                   Cameroon  2003 17.28756840
## 8077                   Central African Republic  2003 56.92451832
## 8078                                       Chad  2003 33.59690649
## 8079                                      Chile  2003  4.86398969
## 8080                                      China  2003 12.34899897
## 8081                                   Colombia  2003  9.03971689
## 8082                                      Congo  2003  6.27522394
## 8083                                 Costa Rica  2003  9.78384147
## 8085                                    Croatia  2003  5.17524247
## 8086                                       Cuba  2003  5.80503895
## 8087                                     Cyprus  2003  3.77943379
## 8088                             Czech Republic  2003  2.58563220
## 8089           Democratic Republic of the Congo  2003 26.88718374
## 8090                                    Denmark  2003  1.87267766
## 8091                                   Djibouti  2003  3.61300079
## 8092                                   Dominica  2003 12.38333183
## 8093                         Dominican Republic  2003  6.41908407
## 8094                                    Ecuador  2003 11.65610192
## 8095                                      Egypt  2003 16.33866623
## 8096                                El Salvador  2003  8.95873530
## 8098                                    Eritrea  2003 12.87451124
## 8099                                    Estonia  2003  4.03737355
## 8100                                   Eswatini  2003 13.02427306
## 8101                                   Ethiopia  2003 40.11962165
## 8102                                       Fiji  2003 14.76314364
## 8103                                    Finland  2003  2.90979485
## 8104                                     France  2003  2.05581820
## 8105                                      Gabon  2003  6.53608865
## 8107                                    Georgia  2003 20.55453116
## 8108                                    Germany  2003  0.86700474
## 8109                                      Ghana  2003 40.23845900
## 8110                                     Greece  2003  5.57265608
## 8111                                    Grenada  2003  6.80503334
## 8112                                  Guatemala  2003 14.39390657
## 8113                                     Guinea  2003 22.32895807
## 8114                              Guinea-Bissau  2003 43.16640527
## 8115                                     Guyana  2003 31.43654454
## 8116                                   Honduras  2003 12.75924058
## 8117                                    Hungary  2003  4.47781608
## 8118                                    Iceland  2003  7.39818796
## 8119                                      India  2003 21.51212494
## 8121                 Iran (Islamic Republic of)  2003  7.53590506
## 8122                                    Ireland  2003  1.67261030
## 8123                                     Israel  2003  1.57732269
## 8124                                      Italy  2003  2.59825212
## 8125                                    Jamaica  2003  5.94508578
## 8126                                      Japan  2003  1.31372125
## 8127                                     Jordan  2003  2.83012032
## 8128                                 Kazakhstan  2003  8.43468244
## 8129                                      Kenya  2003 29.02905490
## 8130                                   Kiribati  2003 26.08310480
## 8132                                 Kyrgyzstan  2003 37.06427879
## 8133           Lao People's Democratic Republic  2003 41.03005854
## 8134                                     Latvia  2003  4.52819747
## 8135                                    Lebanon  2003  6.58004199
## 8136                                    Lesotho  2003  6.89479047
## 8137                                    Liberia  2003 72.24007212
## 8138                                      Libya  2003  4.33574103
## 8139                                  Lithuania  2003  4.93005431
## 8140                                 Luxembourg  2003  0.56180590
## 8141                                 Madagascar  2003 29.20142869
## 8142                                     Malawi  2003 38.90913828
## 8143                                   Malaysia  2003  9.30608522
## 8144                                   Maldives  2003  5.85113408
## 8145                                       Mali  2003 33.23322195
## 8146                                      Malta  2003  2.36231577
## 8148                                 Mauritania  2003 37.06890697
## 8149                                  Mauritius  2003  6.28194858
## 8150                                     Mexico  2003  3.58614160
## 8151           Micronesia (Federated States of)  2003 25.06248458
## 8152                                   Mongolia  2003 20.76199594
## 8153                                 Montenegro  2003 11.60590957
## 8154                                    Morocco  2003 15.45680641
## 8155                                 Mozambique  2003 26.09955188
## 8156                                    Myanmar  2003 50.62056086
## 8157                                    Namibia  2003 10.94022640
## 8158                                      Nepal  2003 37.53912996
## 8159                                Netherlands  2003  2.23890484
## 8160                                New Zealand  2003  7.15408512
## 8161                                  Nicaragua  2003 17.69950587
## 8162                                    Nigeria  2003 42.70726998
## 8163                                     Norway  2003  1.47689851
## 8164                              Not Available  2003  4.91806978
## 8166                                   Pakistan  2003 23.36270554
## 8167                                      Palau  2003  4.27566876
## 8168                                     Panama  2003  7.13855494
## 8169                           Papua New Guinea  2003 40.05736164
## 8170                                   Paraguay  2003 18.28047870
## 8171                                       Peru  2003  8.02188127
## 8172                                Philippines  2003 12.70429548
## 8173                                     Poland  2003  2.93016109
## 8174                                   Portugal  2003  3.02892651
## 8175                                      Qatar  2003  0.23464039
## 8176                          Republic of Korea  2003  3.51403957
## 8177                        Republic of Moldova  2003 21.51933201
## 8178                                    Romania  2003 12.92051280
## 8179                         Russian Federation  2003  6.25522890
## 8181                      Saint Kitts and Nevis  2003  2.05018636
## 8182                                Saint Lucia  2003  4.55219982
## 8183           Saint Vincent and the Grenadines  2003  6.41342936
## 8185                               Saudi Arabia  2003  4.50450502
## 8186                                    Senegal  2003 17.21151838
## 8187                                     Serbia  2003 13.44692930
## 8188                                 Seychelles  2003  3.44786784
## 8189                               Sierra Leone  2003 49.61874475
## 8190                                  Singapore  2003  0.06492840
## 8191                                   Slovakia  2003  4.44372001
## 8192                                   Slovenia  2003  2.41153777
## 8193                            Solomon Islands  2003 39.92300446
## 8195                               South Africa  2003  3.34886654
## 8196                                      Spain  2003  3.73389585
## 8197                                  Sri Lanka  2003 13.23051488
## 8198                                      Sudan  2003 38.25254034
## 8199                                   Suriname  2003  7.22514394
## 8200                                     Sweden  2003  1.82140395
## 8201                                Switzerland  2003  0.94647137
## 8202                       Syrian Arab Republic  2003 25.70256647
## 8203                                 Tajikistan  2003 27.10732657
## 8204                                   Thailand  2003  9.44456985
## 8205  The former Yugoslav Republic of Macedonia  2003 13.35311701
## 8206                                Timor-Leste  2003 29.14857965
## 8207                                       Togo  2003 35.79569812
## 8208                                      Tonga  2003 22.49532681
## 8209                        Trinidad and Tobago  2003  0.98045624
## 8210                                    Tunisia  2003 10.38113979
## 8211                                     Turkey  2003 11.27811728
## 8212                               Turkmenistan  2003 20.29228900
## 8213                                     Tuvalu  2003 19.63754722
## 8214                                     Uganda  2003 26.14874394
## 8215                                    Ukraine  2003 12.09697898
## 8217                             United Kingdom  2003  0.85159417
## 8218                United Republic of Tanzania  2003 32.52526417
## 8219                   United States of America  2003  1.16820422
## 8220                                    Uruguay  2003 11.14299230
## 8221                                 Uzbekistan  2003 33.11788746
## 8222                                    Vanuatu  2003 25.74321350
## 8223         Venezuela (Bolivarian Republic of)  2003  4.55554646
## 8226                                      Yemen  2003 14.31794439
## 8227                                     Zambia  2003 17.45460527
## 8228                                   Zimbabwe  2003 16.59340143
## 8229                                Afghanistan  2004 30.27167447
## 8230                                    Albania  2004 22.93252108
## 8231                                    Algeria  2004 10.17906250
## 8232                                    Andorra  2004  0.48289998
## 8234                        Antigua and Barbuda  2004  1.86617490
## 8235                                  Argentina  2004  9.83632207
## 8236                                    Armenia  2004 24.66220000
## 8237                                      Aruba  2004  0.42577782
## 8238                                  Australia  2004  3.37680029
## 8239                                    Austria  2004  1.65582492
## 8240                                 Azerbaijan  2004 11.84267051
## 8241                                    Bahamas  2004  2.34278816
## 8243                                 Bangladesh  2004 20.31253911
## 8244                                   Barbados  2004  1.91581905
## 8245                                    Belarus  2004 10.32874371
## 8246                                    Belgium  2004  1.13726492
## 8247                                     Belize  2004 16.59974239
## 8248                                      Benin  2004 27.77229815
## 8249                                    Bermuda  2004  0.88688856
## 8250                                     Bhutan  2004 24.92327690
## 8251           Bolivia (Plurinational State of)  2004 15.37465590
## 8252                     Bosnia and Herzegovina  2004 10.73575207
## 8253                                   Botswana  2004  2.53784553
## 8254                                     Brazil  2004  6.67347781
## 8255                          Brunei Darussalam  2004  1.12745345
## 8256                                   Bulgaria  2004  9.83448950
## 8257                               Burkina Faso  2004 34.52063888
## 8258                                    Burundi  2004 45.44476975
## 8259                                   Cambodia  2004 31.47952354
## 8260                                   Cameroon  2004 16.77166027
## 8264                   Central African Republic  2004 55.70589350
## 8265                                       Chad  2004 23.46974651
## 8266                                      Chile  2004  4.42740414
## 8267                                      China  2004 12.91664817
## 8268                                   Colombia  2004  8.61862064
## 8269                                      Congo  2004  5.50940630
## 8270                                 Costa Rica  2004  9.79447930
## 8272                                    Croatia  2004  5.53693386
## 8273                                       Cuba  2004  5.53163352
## 8274                                     Cyprus  2004  3.50516641
## 8275                             Czech Republic  2004  2.54729032
## 8276           Democratic Republic of the Congo  2004 24.91696192
## 8277                                    Denmark  2004  1.89224686
## 8278                                   Djibouti  2004  3.61825823
## 8279                                   Dominica  2004 12.76628627
## 8280                         Dominican Republic  2004  6.98803711
## 8281                                    Ecuador  2004 10.37024940
## 8282                                      Egypt  2004 15.17611233
## 8283                                El Salvador  2004  9.54376069
## 8285                                    Eritrea  2004 11.57568215
## 8286                                    Estonia  2004  3.89331532
## 8287                                   Eswatini  2004 10.07959682
## 8288                                   Ethiopia  2004 42.30117869
## 8289                                       Fiji  2004 14.52800095
## 8290                                    Finland  2004  2.72284363
## 8291                                     France  2004  2.02906139
## 8292                                      Gabon  2004  5.86287421
## 8293                                     Gambia  2004 28.68071186
## 8294                                    Georgia  2004 17.91729001
## 8295                                    Germany  2004  1.00202855
## 8296                                      Ghana  2004 41.54731740
## 8297                                     Greece  2004  4.73879794
## 8298                                    Grenada  2004  5.76897363
## 8299                                  Guatemala  2004 13.96624918
## 8300                                     Guinea  2004 25.05072100
## 8301                              Guinea-Bissau  2004 43.30514175
## 8302                                     Guyana  2004 31.30532154
## 8303                                   Honduras  2004 13.36179267
## 8304                                    Hungary  2004  5.01791908
## 8305                                    Iceland  2004  6.26982979
## 8306                                      India  2004 19.73431131
## 8308                 Iran (Islamic Republic of)  2004  6.91497506
## 8309                                    Ireland  2004  1.79287802
## 8310                                     Israel  2004  1.48777831
## 8311                                      Italy  2004  2.59708074
## 8312                                    Jamaica  2004  5.71028872
## 8313                                      Japan  2004  1.24173731
## 8314                                     Jordan  2004  2.80862570
## 8315                                 Kazakhstan  2004  7.57914672
## 8316                                      Kenya  2004 28.04234626
## 8317                                   Kiribati  2004 27.33694427
## 8319                                 Kyrgyzstan  2004 33.27358723
## 8320           Lao People's Democratic Republic  2004 39.02911562
## 8321                                     Latvia  2004  4.78096259
## 8322                                    Lebanon  2004  4.33080854
## 8323                                    Lesotho  2004  6.69723457
## 8324                                    Liberia  2004 65.04697704
## 8325                                      Libya  2004  2.99195936
## 8326                                  Lithuania  2004  4.60791506
## 8327                                 Luxembourg  2004  0.62323568
## 8328                                 Madagascar  2004 28.79989270
## 8329                                     Malawi  2004 38.67575255
## 8330                                   Malaysia  2004  9.27119348
## 8331                                   Maldives  2004  6.22688529
## 8332                                       Mali  2004 33.65985346
## 8333                                      Malta  2004  2.31749982
## 8335                                 Mauritania  2004 35.52534506
## 8336                                  Mauritius  2004  6.44900644
## 8337                                     Mexico  2004  3.57519330
## 8338           Micronesia (Federated States of)  2004 23.71082530
## 8339                                   Mongolia  2004 22.60746796
## 8340                                 Montenegro  2004 10.87958827
## 8341                                    Morocco  2004 14.55783876
## 8342                                 Mozambique  2004 25.50681590
## 8343                                    Myanmar  2004 48.16509019
## 8344                                    Namibia  2004  9.74243973
## 8345                                      Nepal  2004 37.17303210
## 8346                                Netherlands  2004  2.01587461
## 8347                                New Zealand  2004  6.85001220
## 8348                                  Nicaragua  2004 18.17744254
## 8349                                    Nigeria  2004 34.21028658
## 8350                                     Norway  2004  1.56237162
## 8351                              Not Available  2004  5.35210043
## 8353                                   Pakistan  2004 22.18350653
## 8354                                      Palau  2004  4.29011865
## 8355                                     Panama  2004  6.68043657
## 8356                           Papua New Guinea  2004 37.79632351
## 8357                                   Paraguay  2004 20.38249035
## 8358                                       Peru  2004  7.62256580
## 8359                                Philippines  2004 13.30543689
## 8360                                     Poland  2004  3.69287995
## 8361                                   Portugal  2004  2.96847646
## 8362                                      Qatar  2004  0.18179929
## 8363                          Republic of Korea  2004  3.53002884
## 8364                        Republic of Moldova  2004 20.47193218
## 8365                                    Romania  2004 13.98451448
## 8366                         Russian Federation  2004  5.62017487
## 8368                      Saint Kitts and Nevis  2004  2.06627960
## 8369                                Saint Lucia  2004  4.44060935
## 8370           Saint Vincent and the Grenadines  2004  6.01007111
## 8372                               Saudi Arabia  2004  3.90112988
## 8373                                    Senegal  2004 15.65021207
## 8374                                     Serbia  2004 13.93473859
## 8375                                 Seychelles  2004  4.28196159
## 8376                               Sierra Leone  2004 51.82832199
## 8377                                  Singapore  2004  0.05891746
## 8378                                   Slovakia  2004  4.06978232
## 8379                                   Slovenia  2004  2.60115882
## 8380                            Solomon Islands  2004 37.65155653
## 8382                               South Africa  2004  3.06362851
## 8383                                      Spain  2004  3.41126498
## 8384                                  Sri Lanka  2004 12.54380414
## 8385                                      Sudan  2004 34.56967482
## 8386                                   Suriname  2004  5.79063085
## 8387                                     Sweden  2004  1.79567541
## 8388                                Switzerland  2004  1.01594832
## 8389                       Syrian Arab Republic  2004 21.79926865
## 8390                                 Tajikistan  2004 21.60442128
## 8391                                   Thailand  2004  9.29417332
## 8392  The former Yugoslav Republic of Macedonia  2004 13.31308862
## 8393                                Timor-Leste  2004 31.51912931
## 8394                                       Togo  2004 36.23331063
## 8395                                      Tonga  2004 23.66017183
## 8396                        Trinidad and Tobago  2004  0.80483303
## 8397                                    Tunisia  2004 11.00561441
## 8398                                     Turkey  2004 10.78120615
## 8399                               Turkmenistan  2004 19.44073803
## 8400                                     Tuvalu  2004 20.71613577
## 8401                                     Uganda  2004 22.91541417
## 8402                                    Ukraine  2004 11.92764003
## 8404                             United Kingdom  2004  0.86206165
## 8405                United Republic of Tanzania  2004 33.32772150
## 8406                   United States of America  2004  1.29452574
## 8407                                    Uruguay  2004 12.87584105
## 8408                                 Uzbekistan  2004 30.77324627
## 8409                                    Vanuatu  2004 26.65245793
## 8410         Venezuela (Bolivarian Republic of)  2004  4.03746819
## 8413                                      Yemen  2004 12.93194501
## 8414                                     Zambia  2004 17.29544049
## 8415                                   Zimbabwe  2004 19.57504786
## 8416                                Afghanistan  2005 31.75099054
## 8417                                    Albania  2005 21.23432791
## 8418                                    Algeria  2005  8.22889944
## 8419                                    Andorra  2005  0.44329871
## 8421                        Antigua and Barbuda  2005  2.01625957
## 8422                                  Argentina  2005  9.33408693
## 8423                                    Armenia  2005 20.89251738
## 8424                                      Aruba  2005  0.42131823
## 8425                                  Australia  2005  3.16045763
## 8426                                    Austria  2005  1.41655081
## 8427                                 Azerbaijan  2005  9.89547339
## 8428                                    Bahamas  2005  2.19414531
## 8430                                 Bangladesh  2005 19.59986784
## 8431                                   Barbados  2005  1.84942167
## 8432                                    Belarus  2005  9.90698572
## 8433                                    Belgium  2005  0.93610365
## 8434                                     Belize  2005 15.38706486
## 8435                                      Benin  2005 27.52527473
## 8436                                    Bermuda  2005  0.84163085
## 8437                                     Bhutan  2005 23.18325097
## 8438           Bolivia (Plurinational State of)  2005 14.37801317
## 8439                     Bosnia and Herzegovina  2005 10.09853266
## 8440                                   Botswana  2005  2.03228308
## 8441                                     Brazil  2005  5.47846042
## 8442                          Brunei Darussalam  2005  0.94659333
## 8443                                   Bulgaria  2005  8.51037437
## 8444                               Burkina Faso  2005 39.03079602
## 8445                                    Burundi  2005 44.49652934
## 8446                                   Cambodia  2005 32.74097669
## 8447                                   Cameroon  2005 15.17081449
## 8451                   Central African Republic  2005 54.93913659
## 8452                                       Chad  2005 54.84459297
## 8453                                      Chile  2005  4.51724534
## 8454                                      China  2005 11.64149560
## 8455                                   Colombia  2005  8.44221138
## 8456                                      Congo  2005  4.54418040
## 8457                                 Costa Rica  2005  9.55664242
## 8459                                    Croatia  2005  5.00356429
## 8460                                       Cuba  2005  4.41480500
## 8461                                     Cyprus  2005  3.13487020
## 8462                             Czech Republic  2005  2.44747081
## 8463           Democratic Republic of the Congo  2005 22.38211480
## 8464                                    Denmark  2005  1.34827292
## 8465                                   Djibouti  2005  3.53352507
## 8466                                   Dominica  2005 13.32547170
## 8467                         Dominican Republic  2005  7.45391854
## 8468                                    Ecuador  2005 10.03785881
## 8469                                      Egypt  2005 14.87537634
## 8470                                El Salvador  2005 10.61211059
## 8472                                    Eritrea  2005 24.20911283
## 8473                                    Estonia  2005  3.50131593
## 8474                                   Eswatini  2005 11.41856074
## 8475                                   Ethiopia  2005 44.70227594
## 8476                                       Fiji  2005 14.06289762
## 8477                                    Finland  2005  2.61243133
## 8478                                     France  2005  1.87292852
## 8479                                      Gabon  2005  5.27630780
## 8480                                     Gambia  2005 28.61744015
## 8481                                    Georgia  2005 16.68900504
## 8482                                    Germany  2005  0.75875828
## 8483                                      Ghana  2005 40.93535116
## 8484                                     Greece  2005  4.77349365
## 8485                                    Grenada  2005  3.43492298
## 8486                                  Guatemala  2005 13.38353660
## 8487                                     Guinea  2005 24.15815584
## 8488                              Guinea-Bissau  2005 45.62349279
## 8489                                     Guyana  2005 34.60289320
## 8490                                   Honduras  2005 13.65237125
## 8491                                    Hungary  2005  4.26502489
## 8492                                    Iceland  2005  5.76105402
## 8493                                      India  2005 19.50824595
## 8495                 Iran (Islamic Republic of)  2005  6.40405588
## 8496                                    Ireland  2005  1.17851838
## 8497                                     Israel  2005  1.75104763
## 8498                                      Italy  2005  2.24963485
## 8499                                    Jamaica  2005  5.93728237
## 8500                                      Japan  2005  1.12211356
## 8501                                     Jordan  2005  3.11275310
## 8502                                 Kazakhstan  2005  6.78789842
## 8503                                      Kenya  2005 27.19868287
## 8504                                   Kiribati  2005 23.70312254
## 8506                                 Kyrgyzstan  2005 31.94579994
## 8507           Lao People's Democratic Republic  2005 36.18082162
## 8508                                     Latvia  2005  4.28465391
## 8509                                    Lebanon  2005  3.96067220
## 8510                                    Lesotho  2005  6.42118761
## 8511                                    Liberia  2005 66.03356364
## 8512                                      Libya  2005  2.33932825
## 8513                                  Lithuania  2005  4.77713993
## 8514                                 Luxembourg  2005  0.40019584
## 8515                                 Madagascar  2005 28.28890375
## 8516                                     Malawi  2005 37.10714183
## 8517                                   Malaysia  2005  8.26233665
## 8518                                   Maldives  2005  8.67977210
## 8519                                       Mali  2005 36.05567211
## 8520                                      Malta  2005  2.23048327
## 8522                                 Mauritania  2005 30.51723945
## 8523                                  Mauritius  2005  6.03707220
## 8524                                     Mexico  2005  3.37019049
## 8525           Micronesia (Federated States of)  2005 24.42120005
## 8526                                   Mongolia  2005 22.05895900
## 8527                                 Montenegro  2005 10.45713752
## 8528                                    Morocco  2005 13.08833989
## 8529                                 Mozambique  2005 25.61852240
## 8530                                    Myanmar  2005 46.68724040
## 8531                                    Namibia  2005 11.32671129
## 8532                                      Nepal  2005 36.34885184
## 8533                                Netherlands  2005  2.00780012
## 8534                                New Zealand  2005  6.06082659
## 8535                                  Nicaragua  2005 18.55739545
## 8536                                    Nigeria  2005 32.75542177
## 8537                                     Norway  2005  1.57391122
## 8538                              Not Available  2005  4.41268817
## 8540                                   Pakistan  2005 21.46540471
## 8541                                      Palau  2005  4.42594998
## 8542                                     Panama  2005  6.26619784
## 8544                                   Paraguay  2005 19.56036899
## 8545                                       Peru  2005  7.52825230
## 8546                                Philippines  2005 12.66480278
## 8547                                     Poland  2005  3.29787246
## 8548                                   Portugal  2005  2.64664809
## 8549                                      Qatar  2005  0.13325848
## 8550                          Republic of Korea  2005  3.14743745
## 8551                        Republic of Moldova  2005 19.53082382
## 8552                                    Romania  2005  9.48073914
## 8553                         Russian Federation  2005  4.96657343
## 8554                                     Rwanda  2005 38.40277778
## 8555                      Saint Kitts and Nevis  2005  1.93433254
## 8556                                Saint Lucia  2005  3.46057076
## 8557           Saint Vincent and the Grenadines  2005  6.29175495
## 8559                               Saudi Arabia  2005  3.22082662
## 8560                                    Senegal  2005 16.81008629
## 8561                                     Serbia  2005 11.95861152
## 8562                                 Seychelles  2005  3.92760769
## 8563                               Sierra Leone  2005 52.46110072
## 8564                                  Singapore  2005  0.05765686
## 8565                                   Slovakia  2005  3.62817905
## 8566                                   Slovenia  2005  2.60045708
## 8567                            Solomon Islands  2005 34.45556864
## 8569                               South Africa  2005  2.66614213
## 8570                                      Spain  2005  3.02524312
## 8571                                  Sri Lanka  2005 11.81947682
## 8572                                      Sudan  2005 31.52750878
## 8573                                   Suriname  2005  5.41938385
## 8574                                     Sweden  2005  1.14089366
## 8575                                Switzerland  2005  0.89541551
## 8576                       Syrian Arab Republic  2005 19.48961261
## 8577                                 Tajikistan  2005 23.95460984
## 8578                                   Thailand  2005  9.19807433
## 8579  The former Yugoslav Republic of Macedonia  2005 11.33899950
## 8580                                Timor-Leste  2005 29.45996003
## 8581                                       Togo  2005 39.40855815
## 8582                                      Tonga  2005 20.77616231
## 8583                        Trinidad and Tobago  2005  0.48953718
## 8584                                    Tunisia  2005 10.09783552
## 8585                                     Turkey  2005 10.59807902
## 8586                               Turkmenistan  2005 18.80724562
## 8587                                     Tuvalu  2005 22.58770655
## 8588                                     Uganda  2005 26.70464209
## 8589                                    Ukraine  2005 10.39983538
## 8591                             United Kingdom  2005  0.64264367
## 8592                United Republic of Tanzania  2005 30.46426895
## 8593                   United States of America  2005  1.17902686
## 8594                                    Uruguay  2005 10.08534728
## 8595                                 Uzbekistan  2005 27.96856667
## 8596                                    Vanuatu  2005 25.31075529
## 8597         Venezuela (Bolivarian Republic of)  2005  4.02286823
## 8600                                      Yemen  2005 11.54985260
## 8601                                     Zambia  2005 16.13852965
## 8602                                   Zimbabwe  2005 18.57727874
## 8603                                Afghanistan  2006 29.24973678
## 8604                                    Albania  2006 20.22234444
## 8605                                    Algeria  2006  8.00595363
## 8606                                    Andorra  2006  0.41541817
## 8608                        Antigua and Barbuda  2006  1.90869486
## 8609                                  Argentina  2006  8.17026375
## 8610                                    Armenia  2006 20.45109791
## 8611                                      Aruba  2006  0.43133636
## 8612                                  Australia  2006  2.97621250
## 8613                                    Austria  2006  1.45989554
## 8614                                 Azerbaijan  2006  7.50091836
## 8615                                    Bahamas  2006  2.45184752
## 8617                                 Bangladesh  2006 19.00839958
## 8618                                   Barbados  2006  1.59708200
## 8619                                    Belarus  2006  9.90401981
## 8620                                    Belgium  2006  1.01121971
## 8621                                     Belize  2006 14.74960315
## 8622                                      Benin  2006 28.25733916
## 8623                                    Bermuda  2006  0.89556561
## 8624                                     Bhutan  2006 22.13542151
## 8625           Bolivia (Plurinational State of)  2006 13.87611045
## 8626                     Bosnia and Herzegovina  2006 10.14110970
## 8627                                   Botswana  2006  2.25496245
## 8628                                     Brazil  2006  5.13807221
## 8629                          Brunei Darussalam  2006  0.70614184
## 8630                                   Bulgaria  2006  7.21399411
## 8631                               Burkina Faso  2006 36.72400318
## 8632                                    Burundi  2006 44.34355215
## 8633                                   Cambodia  2006 31.98221638
## 8634                                   Cameroon  2006 14.32704410
## 8637                             Cayman Islands  2006  0.27587658
## 8638                   Central African Republic  2006 55.18123140
## 8639                                       Chad  2006 56.71846458
## 8640                                      Chile  2006  4.20539132
## 8641                                      China  2006 10.62576053
## 8642                                   Colombia  2006  8.08593649
## 8643                                      Congo  2006  3.96032256
## 8644                                 Costa Rica  2006  9.38411558
## 8646                                    Croatia  2006  5.13936934
## 8647                                       Cuba  2006  3.44353515
## 8648                                     Cyprus  2006  2.61337324
## 8649                             Czech Republic  2006  2.28179860
## 8650           Democratic Republic of the Congo  2006 22.33853594
## 8651                                    Denmark  2006  1.37206070
## 8652                                   Djibouti  2006  3.50676208
## 8653                                   Dominica  2006 12.53188258
## 8654                         Dominican Republic  2006  7.05810957
## 8655                                    Ecuador  2006  9.89546588
## 8656                                      Egypt  2006 14.06986666
## 8657                                El Salvador  2006 10.72947027
## 8658                          Equatorial Guinea  2006  1.52360624
## 8659                                    Eritrea  2006 26.10861624
## 8660                                    Estonia  2006  3.09268419
## 8661                                   Eswatini  2006 11.61761230
## 8662                                   Ethiopia  2006 45.87827516
## 8663                                       Fiji  2006 14.49801550
## 8664                                    Finland  2006  2.29938528
## 8665                                     France  2006  1.69795973
## 8666                                      Gabon  2006  5.15347386
## 8667                                     Gambia  2006 23.30175556
## 8668                                    Georgia  2006 12.81950085
## 8669                                    Germany  2006  0.78019485
## 8670                                      Ghana  2006 31.11526617
## 8671                                     Greece  2006  3.61272832
## 8672                                    Grenada  2006  4.52574374
## 8673                                  Guatemala  2006 12.18525464
## 8674                                     Guinea  2006 16.44407751
## 8675                              Guinea-Bissau  2006 43.65183312
## 8676                                     Guyana  2006 23.88085819
## 8677                                   Honduras  2006 12.98327585
## 8678                                    Hungary  2006  4.02737879
## 8679                                    Iceland  2006  5.74981179
## 8680                                      India  2006 18.96655429
## 8682                 Iran (Islamic Republic of)  2006  6.99040964
## 8683                                    Ireland  2006  1.04779635
## 8684                                     Israel  2006  1.68337478
## 8685                                      Italy  2006  2.16532254
## 8686                                    Jamaica  2006  5.92392769
## 8687                                      Japan  2006  1.09397449
## 8688                                     Jordan  2006  2.94603391
## 8689                                 Kazakhstan  2006  5.87909358
## 8690                                      Kenya  2006 23.15672280
## 8691                                   Kiribati  2006 23.21427761
## 8693                                 Kyrgyzstan  2006 32.76990224
## 8694           Lao People's Democratic Republic  2006 35.26320765
## 8695                                     Latvia  2006  3.72430529
## 8696                                    Lebanon  2006  4.81645319
## 8697                                    Lesotho  2006  5.51709967
## 8698                                    Liberia  2006 63.81880072
## 8699                                      Libya  2006  1.98600519
## 8700                                  Lithuania  2006  4.27667324
## 8701                                 Luxembourg  2006  0.37883003
## 8702                                 Madagascar  2006 27.47988558
## 8703                                     Malawi  2006 34.40955786
## 8704                                   Malaysia  2006  8.60997964
## 8705                                   Maldives  2006  7.40870766
## 8706                                       Mali  2006 33.01594040
## 8707                                      Malta  2006  2.23214286
## 8708                           Marshall Islands  2006  9.30906259
## 8709                                 Mauritania  2006 22.93543758
## 8710                                  Mauritius  2006  5.50740112
## 8711                                     Mexico  2006  3.19520469
## 8712           Micronesia (Federated States of)  2006 24.45100592
## 8713                                   Mongolia  2006 19.61759812
## 8714                                 Montenegro  2006 10.16569328
## 8715                                    Morocco  2006 15.08677534
## 8716                                 Mozambique  2006 26.67830933
## 8717                                    Myanmar  2006 43.91895847
## 8718                                    Namibia  2006 10.46898964
## 8719                                      Nepal  2006 34.64208222
## 8720                                Netherlands  2006  2.11284802
## 8721                                New Zealand  2006  6.68617825
## 8722                                  Nicaragua  2006 17.56189116
## 8723                                    Nigeria  2006 31.99879550
## 8724                                     Norway  2006  1.57493821
## 8725                              Not Available  2006  4.08385279
## 8727                                   Pakistan  2006 23.00929641
## 8728                                      Palau  2006  4.86991263
## 8729                                     Panama  2006  5.95139510
## 8730                           Papua New Guinea  2006 21.21926438
## 8731                                   Paraguay  2006 19.09225953
## 8732                                       Peru  2006  7.21863408
## 8733                                Philippines  2006 12.36913455
## 8734                                     Poland  2006  3.04577407
## 8735                                   Portugal  2006  2.60265454
## 8736                                      Qatar  2006  0.12183511
## 8737                          Republic of Korea  2006  2.98878590
## 8738                        Republic of Moldova  2006 17.37826660
## 8739                                    Romania  2006  8.74257844
## 8740                         Russian Federation  2006  4.52340039
## 8741                                     Rwanda  2006 37.20930233
## 8742                      Saint Kitts and Nevis  2006  1.40920923
## 8743                                Saint Lucia  2006  3.32306703
## 8744           Saint Vincent and the Grenadines  2006  6.15037757
## 8746                               Saudi Arabia  2006  2.94858416
## 8747                                    Senegal  2006 14.95985826
## 8748                                     Serbia  2006 11.43656006
## 8749                                 Seychelles  2006  3.50202279
## 8750                               Sierra Leone  2006 52.88889683
## 8751                                  Singapore  2006  0.05116383
## 8752                                   Slovakia  2006  3.56489639
## 8753                                   Slovenia  2006  2.26602479
## 8754                            Solomon Islands  2006 35.65362540
## 8756                               South Africa  2006  2.61134159
## 8757                                      Spain  2006  2.63839696
## 8758                                  Sri Lanka  2006 11.33628023
## 8759                                      Sudan  2006 29.80847144
## 8760                                   Suriname  2006 11.02598768
## 8761                                     Sweden  2006  1.35362105
## 8762                                Switzerland  2006  0.84759833
## 8763                       Syrian Arab Republic  2006 19.22480670
## 8764                                 Tajikistan  2006 24.19797049
## 8765                                   Thailand  2006  9.40612369
## 8766  The former Yugoslav Republic of Macedonia  2006 10.33991172
## 8767                                Timor-Leste  2006 32.80146955
## 8768                                       Togo  2006 35.88370520
## 8769                                      Tonga  2006 18.59666340
## 8770                        Trinidad and Tobago  2006  0.57102895
## 8771                                    Tunisia  2006 10.16816441
## 8772                                     Turkey  2006  9.33215369
## 8773                               Turkmenistan  2006 17.44215358
## 8774                                     Tuvalu  2006 24.93613959
## 8775                                     Uganda  2006 25.59061497
## 8776                                    Ukraine  2006  8.68065882
## 8778                             United Kingdom  2006  0.62392877
## 8779                United Republic of Tanzania  2006 30.96585500
## 8780                   United States of America  2006  1.05763275
## 8781                                    Uruguay  2006 10.40161625
## 8782                                 Uzbekistan  2006 27.90433102
## 8783                                    Vanuatu  2006 23.79463973
## 8784         Venezuela (Bolivarian Republic of)  2006  3.97764983
## 8786                                      World  2006 13.53399602
## 8787                                      Yemen  2006 11.15164762
## 8788                                     Zambia  2006 14.49361350
## 8789                                   Zimbabwe  2006 20.28181966
## 8790                                Afghanistan  2007 30.62285367
## 8791                                    Albania  2007 19.87479759
## 8792                                    Algeria  2007  8.02763965
## 8793                                    Andorra  2007  0.43669912
## 8795                        Antigua and Barbuda  2007  1.89796918
## 8796                                  Argentina  2007  8.83232310
## 8797                                    Armenia  2007 20.28206022
## 8798                                      Aruba  2007  0.44952176
## 8799                                  Australia  2007  2.40131251
## 8800                                    Austria  2007  1.58602764
## 8801                                 Azerbaijan  2007  7.00218571
## 8802                                    Bahamas  2007  2.32673473
## 8804                                 Bangladesh  2007 18.70609422
## 8805                                   Barbados  2007  1.48392415
## 8806                                    Belarus  2007  9.67487396
## 8807                                    Belgium  2007  0.99061599
## 8808                                     Belize  2007 13.39347521
## 8809                                      Benin  2007 27.61541214
## 8810                                    Bermuda  2007  0.79929611
## 8811                                     Bhutan  2007 19.23212392
## 8812           Bolivia (Plurinational State of)  2007 12.87696208
## 8813                     Bosnia and Herzegovina  2007  9.71670304
## 8814                                   Botswana  2007  2.49489335
## 8815                                     Brazil  2007  5.18001938
## 8816                          Brunei Darussalam  2007  0.68965517
## 8817                                   Bulgaria  2007  5.42867242
## 8818                               Burkina Faso  2007 32.66645169
## 8819                                    Burundi  2007 37.33609897
## 8820                                   Cambodia  2007 32.26308190
## 8821                                   Cameroon  2007 14.40515699
## 8822                                     Canada  2007  1.50722365
## 8823                                 Cape Verde  2007 10.62168925
## 8824                             Cayman Islands  2007  0.29009005
## 8825                   Central African Republic  2007 54.28411227
## 8826                                       Chad  2007 56.00224585
## 8827                                      Chile  2007  4.02685509
## 8828                                      China  2007 10.28299697
## 8829                                   Colombia  2007  7.82987888
## 8830                                      Congo  2007  4.32729847
## 8831                                 Costa Rica  2007  8.86754776
## 8833                                    Croatia  2007  4.83191070
## 8834                                       Cuba  2007  3.95262988
## 8835                                     Cyprus  2007  2.34448059
## 8836                             Czech Republic  2007  2.16955886
## 8837           Democratic Republic of the Congo  2007 22.84530142
## 8838                                    Denmark  2007  1.38446050
## 8839                                   Djibouti  2007  3.85527653
## 8840                                   Dominica  2007 12.70278043
## 8841                         Dominican Republic  2007  7.07843676
## 8842                                    Ecuador  2007  9.83719474
## 8843                                      Egypt  2007 14.07024006
## 8844                                El Salvador  2007 11.86587908
## 8845                          Equatorial Guinea  2007  1.37863039
## 8846                                    Eritrea  2007 25.38333623
## 8847                                    Estonia  2007  3.45532897
## 8848                                   Eswatini  2007 11.16811984
## 8849                                   Ethiopia  2007 45.46158956
## 8850                                       Fiji  2007 13.90617857
## 8851                                    Finland  2007  2.68309971
## 8852                                     France  2007  1.80029894
## 8853                                      Gabon  2007  5.30087841
## 8854                                     Gambia  2007 22.10587178
## 8855                                    Georgia  2007 10.69548306
## 8856                                    Germany  2007  0.82547670
## 8857                                      Ghana  2007 29.73705893
## 8858                                     Greece  2007  3.44319587
## 8859                                    Grenada  2007  4.13156945
## 8860                                  Guatemala  2007 12.40600453
## 8861                                     Guinea  2007 18.05561210
## 8862                              Guinea-Bissau  2007 44.32557678
## 8863                                     Guyana  2007 21.38958563
## 8864                                   Honduras  2007 13.00737326
## 8865                                    Hungary  2007  3.95602154
## 8866                                    Iceland  2007  5.23695224
## 8867                                      India  2007 18.93341592
## 8869                 Iran (Islamic Republic of)  2007  7.15083556
## 8870                                    Ireland  2007  1.17448863
## 8871                                     Israel  2007  1.61747348
## 8872                                      Italy  2007  2.10492744
## 8873                                    Jamaica  2007  5.33008103
## 8874                                      Japan  2007  1.06059435
## 8875                                     Jordan  2007  2.84224163
## 8876                                 Kazakhstan  2007  6.09658892
## 8877                                      Kenya  2007 23.26753427
## 8878                                   Kiribati  2007 23.48319762
## 8880                                 Kyrgyzstan  2007 31.07579524
## 8881           Lao People's Democratic Republic  2007 36.06026429
## 8882                                     Latvia  2007  3.74490709
## 8883                                    Lebanon  2007  5.34989182
## 8884                                    Lesotho  2007  5.33628656
## 8885                                    Liberia  2007 65.59786974
## 8886                                      Libya  2007  2.08267281
## 8887                                  Lithuania  2007  3.86654147
## 8888                                 Luxembourg  2007  0.45682532
## 8889                                 Madagascar  2007 25.68786349
## 8890                                     Malawi  2007 30.55513291
## 8891                                   Malaysia  2007  9.98674649
## 8892                                   Maldives  2007  6.92500884
## 8893                                       Mali  2007 34.43062786
## 8894                                      Malta  2007  1.98434045
## 8895                           Marshall Islands  2007  9.46246154
## 8896                                 Mauritania  2007 25.57429647
## 8897                                  Mauritius  2007  4.92716027
## 8898                                     Mexico  2007  3.32006056
## 8899           Micronesia (Federated States of)  2007 27.03735144
## 8900                                   Mongolia  2007 20.45809624
## 8901                                 Montenegro  2007  9.10835927
## 8902                                    Morocco  2007 12.19904304
## 8903                                 Mozambique  2007 26.67808923
## 8904                                    Myanmar  2007 43.32276601
## 8905                                    Namibia  2007  9.22420357
## 8906                                      Nepal  2007 33.56069831
## 8907                                Netherlands  2007  1.96523219
## 8908                                New Zealand  2007  8.75324961
## 8909                                  Nicaragua  2007 18.18607798
## 8910                                    Nigeria  2007 32.71417898
## 8911                                     Norway  2007  1.39674070
## 8912                              Not Available  2007  3.71342337
## 8914                                   Pakistan  2007 23.05827560
## 8915                                      Palau  2007  4.44220148
## 8916                                     Panama  2007  5.34293500
## 8917                           Papua New Guinea  2007 20.29547283
## 8918                                   Paraguay  2007 21.22632395
## 8919                                       Peru  2007  7.31198199
## 8920                                Philippines  2007 12.49673559
## 8921                                     Poland  2007  3.44481257
## 8922                                   Portugal  2007  2.30116827
## 8923                                      Qatar  2007  0.10994237
## 8924                          Republic of Korea  2007  2.70925464
## 8925                        Republic of Moldova  2007 12.00980310
## 8926                                    Romania  2007  5.46716886
## 8927                         Russian Federation  2007  4.41079224
## 8928                                     Rwanda  2007 32.98755187
## 8929                      Saint Kitts and Nevis  2007  1.35931645
## 8930                                Saint Lucia  2007  2.90249561
## 8931           Saint Vincent and the Grenadines  2007  6.29801434
## 8933                               Saudi Arabia  2007  2.77015987
## 8934                                    Senegal  2007 13.77404186
## 8935                                     Serbia  2007  9.97740172
## 8936                                 Seychelles  2007  3.16503361
## 8937                               Sierra Leone  2007 54.76290721
## 8938                                  Singapore  2007  0.04559496
## 8939                                   Slovakia  2007  3.99893171
## 8940                                   Slovenia  2007  2.13980703
## 8943                               South Africa  2007  2.95863106
## 8944                                      Spain  2007  2.71119540
## 8945                                  Sri Lanka  2007 11.68316433
## 8946                                      Sudan  2007 26.67806623
## 8947                                   Suriname  2007 11.26399568
## 8948                                     Sweden  2007  1.58565905
## 8949                                Switzerland  2007  0.83401175
## 8950                       Syrian Arab Republic  2007 17.93915830
## 8951                                 Tajikistan  2007 22.21594212
## 8952                                   Thailand  2007  9.35060923
## 8953  The former Yugoslav Republic of Macedonia  2007 10.36411951
## 8954                                Timor-Leste  2007 30.34825985
## 8955                                       Togo  2007 35.82352891
## 8956                                      Tonga  2007 19.87149151
## 8957                        Trinidad and Tobago  2007  0.38672669
## 8958                                    Tunisia  2007  9.39965493
## 8959                                     Turkey  2007  8.48401659
## 8960                               Turkmenistan  2007 19.07323872
## 8961                                     Tuvalu  2007 25.43021680
## 8962                                     Uganda  2007 23.62934773
## 8963                                    Ukraine  2007  7.46048326
## 8965                             United Kingdom  2007  0.63235095
## 8966                United Republic of Tanzania  2007 28.78427579
## 8967                   United States of America  2007  1.08691532
## 8968                                    Uruguay  2007  9.88104814
## 8969                                 Uzbekistan  2007 25.85853641
## 8970                                    Vanuatu  2007 23.69219591
## 8971         Venezuela (Bolivarian Republic of)  2007  4.12501855
## 8973                                      World  2007 16.26889203
## 8974                                      Yemen  2007 10.85342481
## 8975                                     Zambia  2007 13.23450525
## 8976                                   Zimbabwe  2007 21.59790742
## 8977                                Afghanistan  2008 25.39474053
## 8978                                    Albania  2008 19.42053473
## 8979                                    Algeria  2008  7.00124083
## 8980                                    Andorra  2008  0.47977795
## 8982                        Antigua and Barbuda  2008  1.80356335
## 8983                                  Argentina  2008  8.72898127
## 8984                                    Armenia  2008 18.39812089
## 8985                                      Aruba  2008  0.42798823
## 8986                                  Australia  2008  2.52035865
## 8987                                    Austria  2008  1.50256018
## 8988                                 Azerbaijan  2008  5.97085071
## 8989                                    Bahamas  2008  2.29318764
## 8991                                 Bangladesh  2008 18.47223669
## 8992                                   Barbados  2008  1.34456177
## 8993                                    Belarus  2008 10.13811012
## 8994                                    Belgium  2008  0.79067206
## 8995                                     Belize  2008 12.65130154
## 8996                                      Benin  2008 27.18074342
## 8997                                    Bermuda  2008  0.82107163
## 8998                                     Bhutan  2008 18.96873295
## 8999           Bolivia (Plurinational State of)  2008 13.46940499
## 9000                     Bosnia and Herzegovina  2008  8.85675385
## 9001                                   Botswana  2008  2.83379722
## 9002                                     Brazil  2008  5.40845748
## 9003                          Brunei Darussalam  2008  0.63584977
## 9004                                   Bulgaria  2008  6.98748401
## 9005                               Burkina Faso  2008 40.20187111
## 9006                                    Burundi  2008 40.59095317
## 9007                                   Cambodia  2008 35.23077825
## 9008                                   Cameroon  2008 13.99853865
## 9009                                     Canada  2008  1.70272360
## 9010                                 Cape Verde  2008  9.85705019
## 9011                             Cayman Islands  2008  0.30523114
## 9012                   Central African Republic  2008 55.71650013
## 9013                                       Chad  2008 55.91664674
## 9014                                      Chile  2008  4.05459282
## 9015                                      China  2008 10.25089863
## 9016                                   Colombia  2008  7.51554339
## 9017                                      Congo  2008  3.67695949
## 9018                                 Costa Rica  2008  7.80918868
## 9020                                    Croatia  2008  4.95550220
## 9021                                       Cuba  2008  3.87411868
## 9022                                     Cyprus  2008  2.42378095
## 9023                             Czech Republic  2008  2.13379787
## 9024           Democratic Republic of the Congo  2008 24.16850942
## 9025                                    Denmark  2008  0.99990165
## 9027                                   Dominica  2008 14.08835119
## 9028                         Dominican Republic  2008  6.80016555
## 9029                                    Ecuador  2008  9.29867024
## 9030                                      Egypt  2008 13.22384683
## 9031                                El Salvador  2008 12.54014549
## 9032                          Equatorial Guinea  2008  0.89199536
## 9033                                    Eritrea  2008 17.38247062
## 9034                                    Estonia  2008  2.74288136
## 9035                                   Eswatini  2008 10.43764333
## 9036                                   Ethiopia  2008 48.43371358
## 9037                                       Fiji  2008 12.69720550
## 9038                                    Finland  2008  2.46381745
## 9039                                     France  2008  1.68671278
## 9040                                      Gabon  2008  4.45457720
## 9041                                     Gambia  2008 26.73415962
## 9042                                    Georgia  2008  9.38793563
## 9043                                    Germany  2008  0.89449009
## 9044                                      Ghana  2008 31.72496426
## 9045                                     Greece  2008  3.17711672
## 9046                                    Grenada  2008  4.34398404
## 9047                                  Guatemala  2008 11.97225796
## 9048                                     Guinea  2008 17.24893036
## 9049                              Guinea-Bissau  2008 47.54775686
## 9050                                     Guyana  2008 22.42392160
## 9051                                   Honduras  2008 13.11058889
## 9052                                    Hungary  2008  3.92636897
## 9053                                    Iceland  2008  5.85720097
## 9054                                      India  2008 18.44397514
## 9056                 Iran (Islamic Republic of)  2008  6.11306908
## 9057                                    Ireland  2008  0.94949540
## 9058                                     Israel  2008  1.66980686
## 9059                                      Italy  2008  2.06859968
## 9060                                    Jamaica  2008  5.63867522
## 9061                                      Japan  2008  1.06021362
## 9062                                     Jordan  2008  2.69695338
## 9063                                 Kazakhstan  2008  5.71651138
## 9064                                      Kenya  2008 24.92250549
## 9065                                   Kiribati  2008 25.06274910
## 9067                                 Kyrgyzstan  2008 27.03691275
## 9068           Lao People's Democratic Republic  2008 34.86810947
## 9069                                     Latvia  2008  3.30268210
## 9070                                    Lebanon  2008  4.81556107
## 9071                                    Lesotho  2008  5.54064163
## 9072                                    Liberia  2008 65.17460050
## 9073                                      Libya  2008  1.86515638
## 9074                                  Lithuania  2008  3.65434950
## 9075                                 Luxembourg  2008  0.34807344
## 9076                                 Madagascar  2008 24.83837028
## 9077                                     Malawi  2008 32.33579273
## 9078                                   Malaysia  2008  9.96861085
## 9079                                   Maldives  2008  7.59573034
## 9080                                       Mali  2008 36.06688976
## 9081                                      Malta  2008  1.39291286
## 9082                           Marshall Islands  2008 10.64363224
## 9083                                 Mauritania  2008 25.19351773
## 9084                                  Mauritius  2008  4.57730199
## 9085                                     Mexico  2008  3.29099253
## 9086           Micronesia (Federated States of)  2008 28.01155116
## 9087                                   Mongolia  2008 21.41278009
## 9088                                 Montenegro  2008  9.25721534
## 9089                                    Morocco  2008 13.29518848
## 9090                                 Mozambique  2008 29.07158215
## 9091                                    Myanmar  2008 40.27509564
## 9092                                    Namibia  2008  8.23337256
## 9093                                      Nepal  2008 32.72938880
## 9094                                Netherlands  2008  1.76900157
## 9095                                New Zealand  2008  7.82262934
## 9096                                  Nicaragua  2008 17.84700059
## 9097                                    Nigeria  2008 32.85021918
## 9098                                     Norway  2008  1.25237791
## 9099                              Not Available  2008  3.68715820
## 9101                                   Pakistan  2008 23.11412901
## 9102                                      Palau  2008  4.76629638
## 9103                                     Panama  2008  4.91942300
## 9104                           Papua New Guinea  2008 20.83224115
## 9105                                   Paraguay  2008 23.54543910
## 9106                                       Peru  2008  7.79623245
## 9107                                Philippines  2008 13.24346023
## 9108                                     Poland  2008  2.90206875
## 9109                                   Portugal  2008  2.24810520
## 9110                                      Qatar  2008  0.12464757
## 9111                          Republic of Korea  2008  2.50769505
## 9112                        Republic of Moldova  2008 10.70820139
## 9113                                    Romania  2008  6.56414959
## 9114                         Russian Federation  2008  4.40347403
## 9115                                     Rwanda  2008 30.75980392
## 9116                      Saint Kitts and Nevis  2008  1.48723361
## 9117                                Saint Lucia  2008  3.93949505
## 9118           Saint Vincent and the Grenadines  2008  6.74385615
## 9119                      Sao Tome and Principe  2008 10.46904390
## 9120                               Saudi Arabia  2008  2.31685407
## 9121                                    Senegal  2008 15.93516949
## 9122                                     Serbia  2008 10.33343575
## 9123                                 Seychelles  2008  2.99343945
## 9124                               Sierra Leone  2008 56.34541181
## 9125                                  Singapore  2008  0.04391880
## 9126                                   Slovakia  2008  4.08133653
## 9127                                   Slovenia  2008  1.88973360
## 9130                               South Africa  2008  3.16972286
## 9131                                      Spain  2008  2.49218784
## 9132                                  Sri Lanka  2008 13.37920077
## 9133                                      Sudan  2008 25.80120701
## 9134                                   Suriname  2008  9.80522355
## 9135                                     Sweden  2008  1.60363822
## 9136                                Switzerland  2008  0.86885456
## 9138                                 Tajikistan  2008 22.73868221
## 9139                                   Thailand  2008 10.07543887
## 9140  The former Yugoslav Republic of Macedonia  2008 13.29357413
## 9141                                Timor-Leste  2008 25.79029391
## 9142                                       Togo  2008 40.70809912
## 9143                                      Tonga  2008 17.70551039
## 9144                        Trinidad and Tobago  2008  0.37831952
## 9145                                    Tunisia  2008  8.45027081
## 9146                                     Turkey  2008  8.40651179
## 9147                               Turkmenistan  2008 10.88684299
## 9148                                     Tuvalu  2008 24.23359437
## 9149                                     Uganda  2008 22.73781940
## 9150                                    Ukraine  2008  7.90462231
## 9152                             United Kingdom  2008  0.70027076
## 9153                United Republic of Tanzania  2008 30.83358546
## 9154                   United States of America  2008  1.15277101
## 9155                                    Uruguay  2008 10.53807968
## 9156                                 Uzbekistan  2008 21.85093635
## 9157                                    Vanuatu  2008 23.37774604
## 9158         Venezuela (Bolivarian Republic of)  2008  4.44421264
## 9160                                      World  2008 17.45346528
## 9161                                      Yemen  2008 10.62172860
## 9162                                     Zambia  2008 12.52152896
## 9163                                   Zimbabwe  2008 19.39888576
## 9164                                Afghanistan  2009 30.20560247
## 9165                                    Albania  2009 19.40978082
## 9166                                    Algeria  2009 10.06624389
## 9167                                    Andorra  2009  0.47105441
## 9169                        Antigua and Barbuda  2009  1.71628942
## 9170                                  Argentina  2009  6.28831704
## 9171                                    Armenia  2009 18.91389230
## 9172                                      Aruba  2009  0.50625244
## 9173                                  Australia  2009  2.46517379
## 9174                                    Austria  2009  1.28699401
## 9175                                 Azerbaijan  2009  6.64653950
## 9176                                    Bahamas  2009  2.05517736
## 9178                                 Bangladesh  2009 17.86878314
## 9179                                   Barbados  2009  1.56544841
## 9180                                    Belarus  2009  9.74016740
## 9181                                    Belgium  2009  0.72464046
## 9182                                     Belize  2009 12.79046380
## 9183                                      Benin  2009 26.89697092
## 9184                                    Bermuda  2009  0.76995963
## 9185                                     Bhutan  2009 18.74897932
## 9186           Bolivia (Plurinational State of)  2009 13.82934375
## 9187                     Bosnia and Herzegovina  2009  8.53640194
## 9188                                   Botswana  2009  3.21003726
## 9189                                     Brazil  2009  5.23594602
## 9190                          Brunei Darussalam  2009  0.90895697
## 9191                                   Bulgaria  2009  4.88227551
## 9192                               Burkina Faso  2009 35.57352982
## 9193                                    Burundi  2009 40.53228661
## 9194                                   Cambodia  2009 36.07120067
## 9195                                   Cameroon  2009 14.64189657
## 9196                                     Canada  2009  1.47193120
## 9197                                 Cape Verde  2009 10.12710144
## 9198                             Cayman Islands  2009  0.35365840
## 9199                   Central African Republic  2009 54.63428071
## 9200                                       Chad  2009 47.85547182
## 9201                                      Chile  2009  4.06055751
## 9202                                      China  2009  9.78618898
## 9203                                   Colombia  2009  7.46625504
## 9204                                      Congo  2009  4.50589048
## 9205                                 Costa Rica  2009  7.74380068
## 9207                                    Croatia  2009  5.04938963
## 9208                                       Cuba  2009  3.97057866
## 9209                                     Cyprus  2009  2.26194464
## 9210                             Czech Republic  2009  1.81615960
## 9211           Democratic Republic of the Congo  2009 25.16498593
## 9212                                    Denmark  2009  0.96677242
## 9214                                   Dominica  2009 15.23525221
## 9215                         Dominican Republic  2009  6.59365517
## 9216                                    Ecuador  2009 10.50300123
## 9217                                      Egypt  2009 13.62747397
## 9218                                El Salvador  2009 12.36905357
## 9219                          Equatorial Guinea  2009  1.06629961
## 9220                                    Eritrea  2009 14.52884276
## 9221                                    Estonia  2009  2.44390444
## 9222                                   Eswatini  2009  9.66449827
## 9223                                   Ethiopia  2009 48.63701309
## 9224                                       Fiji  2009 11.83394029
## 9225                                    Finland  2009  2.54376437
## 9226                                     France  2009  1.46452204
## 9227                                      Gabon  2009  5.46443183
## 9228                                     Gambia  2009 27.97936120
## 9229                                    Georgia  2009  9.37281586
## 9230                                    Germany  2009  0.73612427
## 9231                                      Ghana  2009 32.90638226
## 9232                                     Greece  2009  3.13701118
## 9233                                    Grenada  2009  5.27920537
## 9234                                  Guatemala  2009 12.42888803
## 9235                                     Guinea  2009 17.60544581
## 9236                              Guinea-Bissau  2009 45.29711195
## 9237                                     Guyana  2009 34.49741306
## 9238                                   Honduras  2009 11.67196008
## 9239                                    Hungary  2009  3.48903413
## 9240                                    Iceland  2009  6.67746454
## 9241                                      India  2009 18.39450669
## 9243                 Iran (Islamic Republic of)  2009  6.98277883
## 9244                                    Ireland  2009  0.61932874
## 9245                                     Israel  2009  1.94791177
## 9246                                      Italy  2009  1.98006361
## 9247                                    Jamaica  2009  6.27664752
## 9248                                      Japan  2009  1.08382229
## 9249                                     Jordan  2009  3.05224489
## 9250                                 Kazakhstan  2009  6.44324824
## 9251                                      Kenya  2009 26.14393823
## 9252                                   Kiribati  2009 24.86922740
## 9254                                 Kyrgyzstan  2009 21.08163228
## 9255           Lao People's Democratic Republic  2009 35.04168640
## 9256                                     Latvia  2009  3.67514211
## 9257                                    Lebanon  2009  4.43372350
## 9258                                    Lesotho  2009  6.15589247
## 9259                                    Liberia  2009 58.03571042
## 9261                                  Lithuania  2009  2.80750810
## 9262                                 Luxembourg  2009  0.28263976
## 9263                                 Madagascar  2009 29.14151624
## 9264                                     Malawi  2009 32.81321678
## 9265                                   Malaysia  2009  9.21906927
## 9266                                   Maldives  2009  5.82951964
## 9267                                       Mali  2009 35.13940320
## 9268                                      Malta  2009  1.69874368
## 9269                           Marshall Islands  2009 12.77548941
## 9270                                 Mauritania  2009 25.77895489
## 9271                                  Mauritius  2009  4.33764851
## 9272                                     Mexico  2009  3.52347031
## 9273           Micronesia (Federated States of)  2009 26.77185448
## 9274                                   Mongolia  2009 19.62670338
## 9275                                 Montenegro  2009  9.95950055
## 9276                                    Morocco  2009 14.67630468
## 9277                                 Mozambique  2009 30.07164414
## 9278                                    Myanmar  2009 38.10812061
## 9279                                    Namibia  2009  8.95833342
## 9280                                      Nepal  2009 34.03446623
## 9281                                Netherlands  2009  1.66013773
## 9282                                New Zealand  2009  8.50137208
## 9283                                  Nicaragua  2009 17.59029849
## 9284                                    Nigeria  2009 37.05016484
## 9285                                     Norway  2009  1.45526438
## 9286                              Not Available  2009  3.33889773
## 9288                                   Pakistan  2009 23.90812983
## 9289                                      Palau  2009  4.61606153
## 9290                                     Panama  2009  4.21986126
## 9291                           Papua New Guinea  2009 22.38772213
## 9292                                   Paraguay  2009 18.91695742
## 9293                                       Peru  2009  8.07474821
## 9294                                Philippines  2009 13.08068275
## 9295                                     Poland  2009  2.79493942
## 9296                                   Portugal  2009  2.19212774
## 9297                                      Qatar  2009  0.12331946
## 9298                          Republic of Korea  2009  2.58800430
## 9299                        Republic of Moldova  2009 10.10546674
## 9300                                    Romania  2009  6.03938328
## 9301                         Russian Federation  2009  4.68518744
## 9302                                     Rwanda  2009 31.82948490
## 9303                      Saint Kitts and Nevis  2009  1.35912956
## 9304                                Saint Lucia  2009  3.83173809
## 9305           Saint Vincent and the Grenadines  2009  7.06841059
## 9306                      Sao Tome and Principe  2009 11.57075199
## 9307                               Saudi Arabia  2009  2.85411191
## 9308                                    Senegal  2009 17.32083051
## 9309                                     Serbia  2009  9.60120505
## 9310                                 Seychelles  2009  2.66548567
## 9311                               Sierra Leone  2009 57.31912515
## 9312                                  Singapore  2009  0.04309625
## 9313                                   Slovakia  2009  3.33529573
## 9314                                   Slovenia  2009  1.89191905
## 9317                               South Africa  2009  2.98812636
## 9318                                      Spain  2009  2.34063849
## 9319                                  Sri Lanka  2009 12.69197130
## 9320                                      Sudan  2009 26.26215415
## 9321                                   Suriname  2009 10.94277818
## 9322                                     Sweden  2009  1.47524833
## 9323                                Switzerland  2009  0.78173900
## 9325                                 Tajikistan  2009 20.86468215
## 9326                                   Thailand  2009  9.79023375
## 9327  The former Yugoslav Republic of Macedonia  2009 11.99796857
## 9328                                Timor-Leste  2009 21.54748106
## 9329                                       Togo  2009 32.91183395
## 9330                                      Tonga  2009 17.59419288
## 9331                        Trinidad and Tobago  2009  0.62152234
## 9332                                    Tunisia  2009  9.06199105
## 9333                                     Turkey  2009  9.11635898
## 9334                               Turkmenistan  2009 10.68349406
## 9335                                     Tuvalu  2009 26.22838234
## 9336                                     Uganda  2009 28.24626240
## 9337                                    Ukraine  2009  8.25606637
## 9339                             United Kingdom  2009  0.60505375
## 9340                United Republic of Tanzania  2009 32.36575682
## 9341                   United States of America  2009  1.05626864
## 9342                                    Uruguay  2009  8.98283203
## 9343                                 Uzbekistan  2009 20.62253146
## 9344                                    Vanuatu  2009 22.60478516
## 9345         Venezuela (Bolivarian Republic of)  2009  6.12873799
## 9347                                      World  2009 16.62965566
## 9348                                      Yemen  2009 10.43653196
## 9349                                     Zambia  2009 12.37817840
## 9350                                   Zimbabwe  2009 13.90653133
## 9351                                Afghanistan  2010 27.09154001
## 9352                                    Albania  2010 20.65818885
## 9353                                    Algeria  2010  9.02943836
## 9354                                    Andorra  2010  0.54299807
## 9356                        Antigua and Barbuda  2010  1.89416864
## 9357                                  Argentina  2010  8.50220170
## 9358                                    Armenia  2010 19.15305157
## 9359                                      Aruba  2010  0.49838433
## 9360                                  Australia  2010  2.37538447
## 9361                                    Austria  2010  1.42242171
## 9362                                 Azerbaijan  2010  5.92097653
## 9363                                    Bahamas  2010  2.31220641
## 9364                                    Bahrain  2010  0.30082010
## 9365                                 Bangladesh  2010 17.81049845
## 9366                                   Barbados  2010  1.47009188
## 9367                                    Belarus  2010 10.13236237
## 9368                                    Belgium  2010  0.85246944
## 9369                                     Belize  2010 13.22475634
## 9370                                      Benin  2010 25.83182491
## 9371                                    Bermuda  2010  0.77435145
## 9372                                     Bhutan  2010 17.49648751
## 9373           Bolivia (Plurinational State of)  2010 12.85313726
## 9374                     Bosnia and Herzegovina  2010  8.27877919
## 9375                                   Botswana  2010  2.78434559
## 9376                                     Brazil  2010  4.84228724
## 9377                          Brunei Darussalam  2010  0.73301231
## 9378                                   Bulgaria  2010  4.78226307
## 9379                               Burkina Faso  2010 35.61687223
## 9380                                    Burundi  2010 40.44849519
## 9381                                   Cambodia  2010 36.45553776
## 9382                                   Cameroon  2010 15.06576059
## 9383                                     Canada  2010  1.42328663
## 9384                                 Cape Verde  2010  9.73713656
## 9385                             Cayman Islands  2010  0.35644756
## 9386                   Central African Republic  2010 54.20116411
## 9387                                       Chad  2010 53.37254716
## 9388                                      Chile  2010  3.92650207
## 9389                                      China  2010  9.53019294
## 9390                                   Colombia  2010  7.09848037
## 9391                                      Congo  2010  3.83040701
## 9392                                 Costa Rica  2010  7.18894938
## 9394                                    Croatia  2010  4.86923240
## 9395                                       Cuba  2010  3.65164127
## 9396                                     Cyprus  2010  2.38890784
## 9397                             Czech Republic  2010  1.68037817
## 9398           Democratic Republic of the Congo  2010 23.33755578
## 9399                                    Denmark  2010  1.39280739
## 9401                                   Dominica  2010 13.90843767
## 9402                         Dominican Republic  2010  6.44849224
## 9403                                    Ecuador  2010 10.18039244
## 9404                                      Egypt  2010 13.99018382
## 9405                                El Salvador  2010 12.55829629
## 9406                          Equatorial Guinea  2010  1.06501453
## 9408                                    Estonia  2010  3.19282427
## 9409                                   Eswatini  2010 10.62901929
## 9410                                   Ethiopia  2010 44.74109707
## 9411                                       Fiji  2010 11.18990965
## 9412                                    Finland  2010  2.73071752
## 9413                                     France  2010  1.78191675
## 9414                                      Gabon  2010  4.27619800
## 9415                                     Gambia  2010 30.67872714
## 9416                                    Georgia  2010  8.38140050
## 9417                                    Germany  2010  0.71930206
## 9418                                      Ghana  2010 30.82817552
## 9419                                     Greece  2010  3.26522508
## 9420                                    Grenada  2010  5.22751471
## 9421                                  Guatemala  2010 11.79324365
## 9422                                     Guinea  2010 18.73667137
## 9423                              Guinea-Bissau  2010 46.95187484
## 9424                                     Guyana  2010 35.61744601
## 9425                                   Honduras  2010 12.49121425
## 9426                                    Hungary  2010  3.52605178
## 9427                                    Iceland  2010  7.49820026
## 9428                                      India  2010 18.88068634
## 9429                                  Indonesia  2010 14.30528883
## 9430                 Iran (Islamic Republic of)  2010  6.55852972
## 9431                                    Ireland  2010  1.05619991
## 9432                                     Israel  2010  1.68710623
## 9433                                      Italy  2010  1.96894294
## 9434                                    Jamaica  2010  6.13511805
## 9435                                      Japan  2010  1.10494891
## 9436                                     Jordan  2010  3.41626612
## 9437                                 Kazakhstan  2010  4.76533195
## 9438                                      Kenya  2010 27.83118698
## 9439                                   Kiribati  2010 24.78546848
## 9440                                     Kuwait  2010  0.41732893
## 9441                                 Kyrgyzstan  2010 19.44041794
## 9442           Lao People's Democratic Republic  2010 31.44900959
## 9443                                     Latvia  2010  4.43244415
## 9444                                    Lebanon  2010  4.28067167
## 9445                                    Lesotho  2010  5.64312306
## 9446                                    Liberia  2010 44.79999994
## 9448                                  Lithuania  2010  3.32504860
## 9449                                 Luxembourg  2010  0.27486667
## 9450                                 Madagascar  2010 28.05742909
## 9451                                     Malawi  2010 31.92307308
## 9452                                   Malaysia  2010 10.08991593
## 9453                                   Maldives  2010  6.07387650
## 9454                                       Mali  2010 36.20103866
## 9455                                      Malta  2010  1.65952891
## 9456                           Marshall Islands  2010 15.91029219
## 9457                                 Mauritania  2010 21.65239908
## 9458                                  Mauritius  2010  4.09306569
## 9459                                     Mexico  2010  3.46027398
## 9460           Micronesia (Federated States of)  2010 26.53616679
## 9461                                   Mongolia  2010 13.06997385
## 9462                                 Montenegro  2010  9.19875697
## 9463                                    Morocco  2010 14.43996406
## 9464                                 Mozambique  2010 29.52324950
## 9465                                    Myanmar  2010 36.85307575
## 9466                                    Namibia  2010  9.27409063
## 9467                                      Nepal  2010 36.52847708
## 9468                                Netherlands  2010  1.90715394
## 9469                                New Zealand  2010  9.37861788
## 9470                                  Nicaragua  2010 18.72706922
## 9471                                    Nigeria  2010 23.89370409
## 9472                                     Norway  2010  1.75966942
## 9473                              Not Available  2010  3.39255554
## 9474                                       Oman  2010  1.35376506
## 9475                                   Pakistan  2010 24.29211203
## 9476                                      Palau  2010  4.55392423
## 9477                                     Panama  2010  3.99426991
## 9478                           Papua New Guinea  2010 20.23216806
## 9479                                   Paraguay  2010 22.52722341
## 9480                                       Peru  2010  7.45873947
## 9481                                Philippines  2010 12.31432780
## 9482                                     Poland  2010  2.91668895
## 9483                                   Portugal  2010  2.18750308
## 9484                                      Qatar  2010  0.11790661
## 9485                          Republic of Korea  2010  2.47112082
## 9486                        Republic of Moldova  2010 14.44815639
## 9487                                    Romania  2010  6.27128017
## 9488                         Russian Federation  2010  3.86740135
## 9489                                     Rwanda  2010 30.55376690
## 9490                      Saint Kitts and Nevis  2010  1.59486384
## 9491                                Saint Lucia  2010  2.53046210
## 9492           Saint Vincent and the Grenadines  2010  7.18345958
## 9493                      Sao Tome and Principe  2010 12.13900988
## 9494                               Saudi Arabia  2010  2.64027702
## 9495                                    Senegal  2010 17.46336614
## 9496                                     Serbia  2010 10.22577816
## 9497                                 Seychelles  2010  2.71701805
## 9498                               Sierra Leone  2010 55.15418958
## 9499                                  Singapore  2010  0.03889261
## 9500                                   Slovakia  2010  2.81335870
## 9501                                   Slovenia  2010  1.98210542
## 9504                               South Africa  2010  2.62960647
## 9505                                      Spain  2010  2.55110958
## 9506                                  Sri Lanka  2010  9.46347307
## 9507                                      Sudan  2010 24.61371703
## 9508                                   Suriname  2010 10.44173101
## 9509                                     Sweden  2010  1.62437673
## 9510                                Switzerland  2010  0.72594344
## 9512                                 Tajikistan  2010 22.07166118
## 9513                                   Thailand  2010 10.52516753
## 9514  The former Yugoslav Republic of Macedonia  2010 11.73326688
## 9515                                Timor-Leste  2010 21.15491394
## 9516                                       Togo  2010 31.03244507
## 9517                                      Tonga  2010 18.60576158
## 9518                        Trinidad and Tobago  2010  0.54424510
## 9519                                    Tunisia  2010  8.19963273
## 9520                                     Turkey  2010 10.26596249
## 9521                               Turkmenistan  2010 11.49978678
## 9522                                     Tuvalu  2010 28.70132682
## 9523                                     Uganda  2010 28.25674046
## 9524                                    Ukraine  2010  8.42193380
## 9525                       United Arab Emirates  2010  0.77796107
## 9526                             United Kingdom  2010  0.73254535
## 9527                United Republic of Tanzania  2010 31.95960859
## 9528                   United States of America  2010  1.17409139
## 9529                                    Uruguay  2010  8.23919227
## 9530                                 Uzbekistan  2010 19.80893361
## 9531                                    Vanuatu  2010 23.08701714
## 9532         Venezuela (Bolivarian Republic of)  2010  5.79132990
## 9533                                   Viet Nam  2010 21.01530299
## 9534                                      World  2010 16.24033086
## 9535                                      Yemen  2010 10.28511331
## 9536                                     Zambia  2010  9.97284301
## 9537                                   Zimbabwe  2010 13.13816634
## 9538                                Afghanistan  2011 24.50744042
## 9539                                    Albania  2011 20.95812415
## 9540                                    Algeria  2011  8.61502395
## 9541                                    Andorra  2011  0.58777047
## 9543                        Antigua and Barbuda  2011  2.24402449
## 9544                                  Argentina  2011  8.32951228
## 9545                                    Armenia  2011 22.81541556
## 9546                                      Aruba  2011  0.51241843
## 9547                                  Australia  2011  2.46218596
## 9548                                    Austria  2011  1.57296566
## 9549                                 Azerbaijan  2011  5.39345369
## 9550                                    Bahamas  2011  2.33707342
## 9551                                    Bahrain  2011  0.29063190
## 9552                                 Bangladesh  2011 17.71316726
## 9553                                   Barbados  2011  1.32970053
## 9554                                    Belarus  2011  9.07046327
## 9555                                    Belgium  2011  0.71872250
## 9556                                     Belize  2011 13.13404521
## 9557                                      Benin  2011 25.63837234
## 9558                                    Bermuda  2011  0.81518051
## 9559                                     Bhutan  2011 17.11552217
## 9560           Bolivia (Plurinational State of)  2011 12.51438825
## 9561                     Bosnia and Herzegovina  2011  8.24495504
## 9562                                   Botswana  2011  2.71642759
## 9563                                     Brazil  2011  5.10751221
## 9564                          Brunei Darussalam  2011  0.57503326
## 9565                                   Bulgaria  2011  5.25454969
## 9566                               Burkina Faso  2011 33.84527261
## 9567                                    Burundi  2011 40.34738068
## 9568                                   Cambodia  2011 37.11401608
## 9569                                   Cameroon  2011 14.37961739
## 9570                                     Canada  2011  1.71383290
## 9571                                 Cape Verde  2011  9.57753399
## 9572                             Cayman Islands  2011  0.36703955
## 9573                   Central African Republic  2011 54.49983817
## 9574                                       Chad  2011 53.10902672
## 9575                                      Chile  2011  3.99652906
## 9576                                      China  2011  9.43451606
## 9577                                   Colombia  2011  6.84885714
## 9578                                      Congo  2011  3.38311330
## 9579                                 Costa Rica  2011  6.39694413
## 9581                                    Croatia  2011  4.66828500
## 9582                                       Cuba  2011  3.64609295
## 9583                                     Cyprus  2011  2.46261842
## 9584                             Czech Republic  2011  2.37978098
## 9585           Democratic Republic of the Congo  2011 24.04098649
## 9586                                    Denmark  2011  1.52050959
## 9588                                   Dominica  2011 15.00191013
## 9589                         Dominican Republic  2011  6.01524270
## 9590                                    Ecuador  2011  9.94489341
## 9591                                      Egypt  2011 14.51702210
## 9592                                El Salvador  2011 12.51337408
## 9593                          Equatorial Guinea  2011  1.05084983
## 9595                                    Estonia  2011  3.88101382
## 9596                                   Eswatini  2011 10.20272680
## 9597                                   Ethiopia  2011 44.66957015
## 9598                                       Fiji  2011 10.87089726
## 9599                                    Finland  2011  2.72742206
## 9600                                     France  2011  1.84071570
## 9601                                      Gabon  2011  3.73738935
## 9602                                     Gambia  2011 20.00573267
## 9603                                    Georgia  2011  8.84337001
## 9604                                    Germany  2011  0.82233767
## 9605                                      Ghana  2011 26.02256161
## 9606                                     Greece  2011  3.35817718
## 9607                                    Grenada  2011  5.18378614
## 9608                                  Guatemala  2011 11.81879140
## 9609                                     Guinea  2011 17.36115097
## 9610                              Guinea-Bissau  2011 46.84957085
## 9611                                     Guyana  2011 36.34223278
## 9612                                   Honduras  2011 15.29920116
## 9613                                    Hungary  2011  4.59467419
## 9614                                    Iceland  2011  7.76456323
## 9615                                      India  2011 18.52667235
## 9616                                  Indonesia  2011 13.78659697
## 9617                 Iran (Islamic Republic of)  2011  5.47462361
## 9618                                    Ireland  2011  1.32722288
## 9619                                     Israel  2011  1.71047984
## 9620                                      Italy  2011  2.10021654
## 9621                                    Jamaica  2011  6.56362120
## 9622                                      Japan  2011  1.08080880
## 9623                                     Jordan  2011  3.32607334
## 9624                                 Kazakhstan  2011  5.47372175
## 9625                                      Kenya  2011 29.27387010
## 9626                                   Kiribati  2011 25.47936081
## 9627                                     Kuwait  2011  0.40697839
## 9628                                 Kyrgyzstan  2011 18.62067475
## 9629           Lao People's Democratic Republic  2011 29.59368965
## 9630                                     Latvia  2011  3.88235369
## 9631                                    Lebanon  2011  4.12545128
## 9632                                    Lesotho  2011  5.69844779
## 9633                                    Liberia  2011 44.30040119
## 9635                                  Lithuania  2011  3.85786080
## 9636                                 Luxembourg  2011  0.28117892
## 9637                                 Madagascar  2011 28.36827541
## 9638                                     Malawi  2011 31.24805685
## 9639                                   Malaysia  2011 11.45335312
## 9640                                   Maldives  2011  5.94943760
## 9641                                       Mali  2011 37.59001434
## 9642                                      Malta  2011  1.59799185
## 9643                           Marshall Islands  2011 15.76482888
## 9644                                 Mauritania  2011 18.26144080
## 9645                                  Mauritius  2011  4.18499267
## 9646                                     Mexico  2011  3.35219290
## 9647           Micronesia (Federated States of)  2011 28.18980668
## 9648                                   Mongolia  2011 11.78965791
## 9649                                 Montenegro  2011  9.63534241
## 9650                                    Morocco  2011 14.24503084
## 9651                                 Mozambique  2011 28.56021886
## 9652                                    Myanmar  2011 32.49618250
## 9653                                    Namibia  2011  8.90434464
## 9654                                      Nepal  2011 38.29842961
## 9655                                Netherlands  2011  1.67307925
## 9656                                New Zealand  2011  8.90373442
## 9657                                  Nicaragua  2011 20.86870957
## 9658                                    Nigeria  2011 22.28919858
## 9659                                     Norway  2011  1.50165894
## 9660                              Not Available  2011  3.92838867
## 9661                                       Oman  2011  1.17107895
## 9662                                   Pakistan  2011 26.02468456
## 9663                                      Palau  2011  4.89463438
## 9664                                     Panama  2011  3.51726224
## 9665                           Papua New Guinea  2011 19.67981539
## 9666                                   Paraguay  2011 22.27583682
## 9667                                       Peru  2011  7.70959390
## 9668                                Philippines  2011 12.72116090
## 9669                                     Poland  2011  3.22237207
## 9670                                   Portugal  2011  2.08028809
## 9671                                      Qatar  2011  0.09661013
## 9672                          Republic of Korea  2011  2.51695061
## 9673                        Republic of Moldova  2011 14.76127686
## 9674                                    Romania  2011  7.33373105
## 9675                         Russian Federation  2011  3.91872466
## 9676                                     Rwanda  2011 30.39843968
## 9677                      Saint Kitts and Nevis  2011  1.74170282
## 9678                                Saint Lucia  2011  2.16070225
## 9679           Saint Vincent and the Grenadines  2011  7.46673692
## 9680                      Sao Tome and Principe  2011 12.06150045
## 9681                               Saudi Arabia  2011  2.17142778
## 9682                                    Senegal  2011 14.63727558
## 9683                                     Serbia  2011 10.68572879
## 9684                                 Seychelles  2011  2.68599204
## 9685                               Sierra Leone  2011 56.71601723
## 9686                                  Singapore  2011  0.03669380
## 9687                                   Slovakia  2011  3.37657335
## 9688                                   Slovenia  2011  2.28601520
## 9691                               South Africa  2011  2.53652180
## 9692                                      Spain  2011  2.47959173
## 9693                                  Sri Lanka  2011  9.60319634
## 9694                                      Sudan  2011 25.43847934
## 9695                                   Suriname  2011  9.83394272
## 9696                                     Sweden  2011  1.63047239
## 9697                                Switzerland  2011  0.72330851
## 9699                                 Tajikistan  2011 27.20812645
## 9700                                   Thailand  2011 11.59465190
## 9701  The former Yugoslav Republic of Macedonia  2011 10.86820440
## 9702                                Timor-Leste  2011 18.38144818
## 9703                                       Togo  2011 30.76088842
## 9704                                      Tonga  2011 19.30953774
## 9705                        Trinidad and Tobago  2011  0.47074213
## 9706                                    Tunisia  2011  9.01187350
## 9707                                     Turkey  2011  9.36158444
## 9709                                     Tuvalu  2011 27.58989064
## 9710                                     Uganda  2011 27.01306079
## 9711                                    Ukraine  2011  9.49215987
## 9713                             United Kingdom  2011  0.68363472
## 9714                United Republic of Tanzania  2011 31.28865940
## 9715                   United States of America  2011  1.36677827
## 9716                                    Uruguay  2011 10.11674658
## 9717                                 Uzbekistan  2011 19.48249408
## 9718                                    Vanuatu  2011 25.63308147
## 9719         Venezuela (Bolivarian Republic of)  2011  5.43220340
## 9720                                   Viet Nam  2011 22.09924101
## 9721                                      World  2011 15.57214647
## 9722                                      Yemen  2011 10.15900383
## 9723                                     Zambia  2011 10.21165686
## 9724                                   Zimbabwe  2011 11.58652017
## 9725                                Afghanistan  2012 24.60324707
## 9726                                    Albania  2012 21.66068033
## 9727                                    Algeria  2012  9.39521918
## 9728                                    Andorra  2012  0.67928846
## 9730                        Antigua and Barbuda  2012  2.20249271
## 9731                                  Argentina  2012  6.89378647
## 9732                                    Armenia  2012 20.06807001
## 9734                                  Australia  2012  2.44182194
## 9735                                    Austria  2012  1.51550937
## 9736                                 Azerbaijan  2012  5.49205723
## 9737                                    Bahamas  2012  1.17820626
## 9738                                    Bahrain  2012  0.27848267
## 9739                                 Bangladesh  2012 17.09395293
## 9740                                   Barbados  2012  1.49648746
## 9741                                    Belarus  2012  9.27066471
## 9742                                    Belgium  2012  0.87684281
## 9743                                     Belize  2012 15.00688994
## 9744                                      Benin  2012 25.12041998
## 9745                                    Bermuda  2012  0.77362359
## 9746                                     Bhutan  2012 16.97731546
## 9747           Bolivia (Plurinational State of)  2012 12.91594109
## 9748                     Bosnia and Herzegovina  2012  7.49887095
## 9749                                   Botswana  2012  2.93187217
## 9750                                     Brazil  2012  4.90186380
## 9751                          Brunei Darussalam  2012  0.65537957
## 9752                                   Bulgaria  2012  5.26939773
## 9753                               Burkina Faso  2012 35.05548469
## 9754                                    Burundi  2012 40.58240062
## 9755                                   Cambodia  2012 36.04833098
## 9756                                   Cameroon  2012 14.62453573
## 9757                                     Canada  2012  1.76004492
## 9758                                 Cape Verde  2012 10.05764778
## 9759                             Cayman Islands  2012  0.37129156
## 9760                   Central African Republic  2012 53.93947768
## 9761                                       Chad  2012 55.08826238
## 9762                                      Chile  2012  3.61264720
## 9763                                      China  2012  9.41993616
## 9764                                   Colombia  2012  6.32670623
## 9765                                      Congo  2012  3.92577411
## 9766                                 Costa Rica  2012  5.91259895
## 9768                                    Croatia  2012  4.47297534
## 9769                                       Cuba  2012  3.89391299
## 9770                                     Cyprus  2012  2.23041016
## 9771                             Czech Republic  2012  2.61465496
## 9772           Democratic Republic of the Congo  2012 23.12418398
## 9773                                    Denmark  2012  1.91658629
## 9775                                   Dominica  2012 14.38989106
## 9776                         Dominican Republic  2012  5.73780167
## 9777                                    Ecuador  2012  9.06170877
## 9778                                      Egypt  2012 11.01978462
## 9779                                El Salvador  2012 11.92391844
## 9780                          Equatorial Guinea  2012  1.05257392
## 9782                                    Estonia  2012  3.65377171
## 9783                                   Eswatini  2012 11.04069124
## 9784                                   Ethiopia  2012 47.98313014
## 9785                                       Fiji  2012 11.46506747
## 9786                                    Finland  2012  2.73348916
## 9787                                     France  2012  1.81899704
## 9788                                      Gabon  2012  3.65515785
## 9789                                     Gambia  2012 21.58298585
## 9790                                    Georgia  2012  8.59056077
## 9791                                    Germany  2012  0.78221703
## 9792                                      Ghana  2012 23.60036744
## 9793                                     Greece  2012  3.66356917
## 9794                                    Grenada  2012  5.59896339
## 9795                                  Guatemala  2012 11.24096046
## 9796                                     Guinea  2012 17.20146607
## 9797                              Guinea-Bissau  2012 48.67187671
## 9798                                     Guyana  2012 36.83230600
## 9799                                   Honduras  2012 14.60696857
## 9800                                    Hungary  2012  4.57447480
## 9801                                    Iceland  2012  7.73348551
## 9802                                      India  2012 18.20235301
## 9803                                  Indonesia  2012 13.66907682
## 9804                 Iran (Islamic Republic of)  2012  7.67897503
## 9805                                    Ireland  2012  1.09006044
## 9806                                     Israel  2012  1.36112152
## 9807                                      Italy  2012  2.18904974
## 9808                                    Jamaica  2012  6.74886969
## 9809                                      Japan  2012  1.14781634
## 9810                                     Jordan  2012  3.13237337
## 9811                                 Kazakhstan  2012  4.66218943
## 9812                                      Kenya  2012 29.11717833
## 9813                                   Kiribati  2012 24.27542200
## 9814                                     Kuwait  2012  0.33224229
## 9815                                 Kyrgyzstan  2012 19.17020146
## 9816           Lao People's Democratic Republic  2012 20.35221072
## 9817                                     Latvia  2012  3.69856602
## 9818                                    Lebanon  2012  4.06049267
## 9819                                    Lesotho  2012  5.58893746
## 9820                                    Liberia  2012 38.80203976
## 9822                                  Lithuania  2012  4.44183249
## 9823                                 Luxembourg  2012  0.40245406
## 9824                                 Madagascar  2012 28.19831097
## 9825                                     Malawi  2012 30.57707828
## 9826                                   Malaysia  2012  9.79375075
## 9827                                   Maldives  2012  5.73811105
## 9828                                       Mali  2012 41.33849832
## 9829                                      Malta  2012  1.49466527
## 9830                           Marshall Islands  2012 21.82002792
## 9831                                 Mauritania  2012 19.74637154
## 9832                                  Mauritius  2012  4.14588176
## 9833                                     Mexico  2012  3.52145123
## 9834           Micronesia (Federated States of)  2012 30.58430718
## 9835                                   Mongolia  2012 12.66540491
## 9836                                 Montenegro  2012  8.88595561
## 9837                                    Morocco  2012 13.37148397
## 9838                                 Mozambique  2012 27.64890282
## 9839                                    Myanmar  2012 30.59019970
## 9840                                    Namibia  2012  8.68383419
## 9841                                      Nepal  2012 36.48941031
## 9842                                Netherlands  2012  1.75135998
## 9843                                New Zealand  2012  7.90944269
## 9844                                  Nicaragua  2012 19.52443366
## 9845                                    Nigeria  2012 22.05428761
## 9846                                     Norway  2012  1.25695341
## 9847                              Not Available  2012  3.62459459
## 9848                                       Oman  2012  1.08306629
## 9849                                   Pakistan  2012 24.54909124
## 9850                                      Palau  2012  4.84350468
## 9851                                     Panama  2012  3.35080169
## 9852                           Papua New Guinea  2012 19.98317600
## 9853                                   Paraguay  2012 18.10739961
## 9854                                       Peru  2012  7.35898667
## 9855                                Philippines  2012 11.83369442
## 9856                                     Poland  2012  3.00715475
## 9857                                   Portugal  2012  2.17949714
## 9858                                      Qatar  2012  0.09425445
## 9859                          Republic of Korea  2012  2.45914497
## 9860                        Republic of Moldova  2012 13.43021764
## 9861                                    Romania  2012  5.32050689
## 9862                         Russian Federation  2012  3.69739510
## 9863                                     Rwanda  2012 31.00405438
## 9864                      Saint Kitts and Nevis  2012  1.67752917
## 9865                                Saint Lucia  2012  2.45963689
## 9866           Saint Vincent and the Grenadines  2012  7.24015374
## 9867                      Sao Tome and Principe  2012 12.18737480
## 9868                               Saudi Arabia  2012  2.07934644
## 9869                                    Senegal  2012 15.61114499
## 9870                                     Serbia  2012  8.98630210
## 9871                                 Seychelles  2012  2.35056756
## 9872                               Sierra Leone  2012 52.52411819
## 9873                                  Singapore  2012  0.03540885
## 9874                                   Slovakia  2012  3.54048337
## 9875                                   Slovenia  2012  2.06712615
## 9878                               South Africa  2012  2.40691825
## 9879                                      Spain  2012  2.51775183
## 9880                                  Sri Lanka  2012  7.99197009
## 9881                                      Sudan  2012 40.63117341
## 9882                                   Suriname  2012  9.38478971
## 9883                                     Sweden  2012  1.48691984
## 9884                                Switzerland  2012  0.68179569
## 9886                                 Tajikistan  2012 26.60491433
## 9887                                   Thailand  2012 11.50697028
## 9888  The former Yugoslav Republic of Macedonia  2012 10.52630275
## 9889                                Timor-Leste  2012 20.37175961
## 9890                                       Togo  2012 42.59993936
## 9891                                      Tonga  2012 19.12521441
## 9892                        Trinidad and Tobago  2012  0.48474876
## 9893                                    Tunisia  2012  9.53475503
## 9894                                     Turkey  2012  8.78387263
## 9896                                     Tuvalu  2012 22.01128103
## 9897                                     Uganda  2012 27.98995249
## 9898                                    Ukraine  2012  9.05018593
## 9900                             United Kingdom  2012  0.67542528
## 9901                United Republic of Tanzania  2012 33.17302737
## 9902                   United States of America  2012  1.24140656
## 9903                                    Uruguay  2012  9.27345080
## 9904                                 Uzbekistan  2012 19.23992297
## 9905                                    Vanuatu  2012 27.96474112
## 9906         Venezuela (Bolivarian Republic of)  2012  5.47100772
## 9907                                   Viet Nam  2012 21.34620188
## 9908                                      World  2012 14.82115739
## 9909                                      Yemen  2012 10.05234739
## 9910                                     Zambia  2012  9.86132400
## 9911                                   Zimbabwe  2012 11.02515682
## 9912                                Afghanistan  2013 23.89137214
## 9913                                    Albania  2013 22.42850678
## 9914                                    Algeria  2013 10.64367529
## 9915                                    Andorra  2013  0.64069179
## 9917                        Antigua and Barbuda  2013  2.30062461
## 9918                                  Argentina  2013  7.20775216
## 9919                                    Armenia  2013 20.74036860
## 9921                                  Australia  2013  2.47344214
## 9922                                    Austria  2013  1.40811814
## 9923                                 Azerbaijan  2013  5.66081049
## 9924                                    Bahamas  2013  0.99641210
## 9925                                    Bahrain  2013  0.27430164
## 9926                                 Bangladesh  2013 16.27607081
## 9927                                   Barbados  2013  1.59621035
## 9928                                    Belarus  2013  7.72578977
## 9929                                    Belgium  2013  0.76927330
## 9930                                     Belize  2013 15.58293791
## 9931                                      Benin  2013 24.12492192
## 9933                                     Bhutan  2013 16.98987816
## 9934           Bolivia (Plurinational State of)  2013 13.28347050
## 9935                     Bosnia and Herzegovina  2013  8.27409413
## 9936                                   Botswana  2013  2.56075034
## 9937                                     Brazil  2013  5.27671638
## 9938                          Brunei Darussalam  2013  0.68465922
## 9939                                   Bulgaria  2013  5.33518416
## 9940                               Burkina Faso  2013 35.57151604
## 9941                                    Burundi  2013 39.82736966
## 9942                                   Cambodia  2013 33.94190816
## 9943                                   Cameroon  2013 14.78633190
## 9944                                     Canada  2013  1.84209771
## 9945                                 Cape Verde  2013  9.89004477
## 9947                   Central African Republic  2013 46.43327459
## 9948                                       Chad  2013 51.91683711
## 9949                                      Chile  2013  3.69513743
## 9950                                      China  2013  9.29518965
## 9951                                   Colombia  2013  6.08102216
## 9952                                      Congo  2013  4.36216603
## 9953                                 Costa Rica  2013  5.51222706
## 9954                              Cote d'Ivoire  2013 23.36227288
## 9955                                    Croatia  2013  4.39330832
## 9956                                       Cuba  2013  3.97078301
## 9957                                     Cyprus  2013  2.26168340
## 9958                             Czech Republic  2013  2.68525313
## 9959           Democratic Republic of the Congo  2013 22.16550810
## 9960                                    Denmark  2013  1.50510106
## 9962                                   Dominica  2013 16.47381391
## 9963                         Dominican Republic  2013  5.40750277
## 9964                                    Ecuador  2013  9.21450363
## 9965                                      Egypt  2013 10.89713217
## 9966                                El Salvador  2013 11.00348462
## 9967                          Equatorial Guinea  2013  1.19337059
## 9969                                    Estonia  2013  3.41153806
## 9970                                   Eswatini  2013 11.02256548
## 9971                                   Ethiopia  2013 44.89672031
## 9972                                       Fiji  2013 12.13764990
## 9973                                    Finland  2013  2.98396590
## 9974                                     France  2013  1.62716001
## 9975                                      Gabon  2013  3.62646286
## 9976                                     Gambia  2013 20.16270371
## 9977                                    Georgia  2013  9.40651152
## 9978                                    Germany  2013  0.97693121
## 9979                                      Ghana  2013 23.15144832
## 9980                                     Greece  2013  3.61597041
## 9981                                    Grenada  2013  5.55744774
## 9982                                  Guatemala  2013 11.29636948
## 9983                                     Guinea  2013 19.34170569
## 9984                              Guinea-Bissau  2013 45.64519032
## 9985                                     Guyana  2013 35.71014860
## 9986                                   Honduras  2013 13.11629986
## 9987                                    Hungary  2013  4.56564473
## 9988                                    Iceland  2013  6.92589770
## 9989                                      India  2013 18.58866637
## 9990                                  Indonesia  2013 13.69792627
## 9991                 Iran (Islamic Republic of)  2013  9.84418872
## 9992                                    Ireland  2013  1.22293052
## 9993                                     Israel  2013  1.33649681
## 9994                                      Italy  2013  2.32768216
## 9995                                    Jamaica  2013  7.04523974
## 9996                                      Japan  2013  1.11097603
## 9997                                     Jordan  2013  3.40172844
## 9998                                 Kazakhstan  2013  4.92826751
## 9999                                      Kenya  2013 29.42832942
## 10000                                  Kiribati  2013 23.01265643
## 10001                                    Kuwait  2013  0.32993305
## 10002                                Kyrgyzstan  2013 17.00265431
## 10003          Lao People's Democratic Republic  2013 19.73629988
## 10004                                    Latvia  2013  3.72383029
## 10005                                   Lebanon  2013  4.24122626
## 10006                                   Lesotho  2013  6.60806670
## 10007                                   Liberia  2013 37.22806062
## 10009                                 Lithuania  2013  3.94800072
## 10010                                Luxembourg  2013  0.31003634
## 10011                                Madagascar  2013 26.42022010
## 10012                                    Malawi  2013 30.76760820
## 10013                                  Malaysia  2013  9.11336385
## 10014                                  Maldives  2013  6.07922737
## 10015                                      Mali  2013 41.29645094
## 10016                                     Malta  2013  1.35444253
## 10017                          Marshall Islands  2013 21.32151832
## 10018                                Mauritania  2013 19.71332046
## 10019                                 Mauritius  2013  3.82056418
## 10020                                    Mexico  2013  3.52280201
## 10021          Micronesia (Federated States of)  2013 28.81297447
## 10022                                  Mongolia  2013 15.13353099
## 10023                                Montenegro  2013  9.79138881
## 10024                                   Morocco  2013 14.69038248
## 10025                                Mozambique  2013 26.57024699
## 10026                                   Myanmar  2013 29.53372536
## 10027                                   Namibia  2013  6.87056125
## 10028                                     Nepal  2013 35.04508527
## 10029                               Netherlands  2013  1.90269058
## 10030                               New Zealand  2013  9.36530364
## 10031                                 Nicaragua  2013 18.27374579
## 10032                                   Nigeria  2013 20.99639753
## 10033                                    Norway  2013  1.46710011
## 10034                             Not Available  2013  3.83653340
## 10035                                      Oman  2013  1.24337623
## 10036                                  Pakistan  2013 24.80998580
## 10037                                     Palau  2013  4.42077729
## 10038                                    Panama  2013  3.14005133
## 10039                          Papua New Guinea  2013 20.00000000
## 10040                                  Paraguay  2013 21.52940489
## 10041                                      Peru  2013  7.32261655
## 10042                               Philippines  2013 11.25246645
## 10043                                    Poland  2013  3.23730027
## 10044                                  Portugal  2013  2.36500001
## 10045                                     Qatar  2013  0.09607821
## 10046                         Republic of Korea  2013  2.33550551
## 10047                       Republic of Moldova  2013 14.79114657
## 10048                                   Romania  2013  6.12799775
## 10049                        Russian Federation  2013  3.61899523
## 10050                                    Rwanda  2013 30.78918919
## 10051                     Saint Kitts and Nevis  2013  1.53267698
## 10052                               Saint Lucia  2013  2.72490543
## 10053          Saint Vincent and the Grenadines  2013  7.56448598
## 10054                     Sao Tome and Principe  2013 12.72610947
## 10055                              Saudi Arabia  2013  2.15730645
## 10056                                   Senegal  2013 15.60200793
## 10057                                    Serbia  2013  9.36166594
## 10058                                Seychelles  2013  2.93223865
## 10059                              Sierra Leone  2013 49.71889219
## 10060                                 Singapore  2013  0.03629866
## 10061                                  Slovakia  2013  3.97626033
## 10062                                  Slovenia  2013  2.08232223
## 10065                              South Africa  2013  2.33273471
## 10066                                     Spain  2013  2.75209060
## 10067                                 Sri Lanka  2013  8.22643498
## 10068                                     Sudan  2013 41.72732266
## 10069                                  Suriname  2013  9.49102374
## 10070                                    Sweden  2013  1.38685729
## 10071                               Switzerland  2013  0.71682462
## 10073                                Tajikistan  2013 27.41401708
## 10074                                  Thailand  2013 11.32069660
## 10075 The former Yugoslav Republic of Macedonia  2013 11.52422912
## 10076                               Timor-Leste  2013 19.56598076
## 10077                                      Togo  2013 39.71648284
## 10078                                     Tonga  2013 20.17621145
## 10079                       Trinidad and Tobago  2013  0.48619029
## 10080                                   Tunisia  2013  9.37458797
## 10081                                    Turkey  2013  7.67723166
## 10083                                    Tuvalu  2013 22.16284261
## 10084                                    Uganda  2013 27.44725748
## 10085                                   Ukraine  2013 10.02779223
## 10087                            United Kingdom  2013  0.73234341
## 10088               United Republic of Tanzania  2013 33.29060928
## 10089                  United States of America  2013  1.42634435
## 10090                                   Uruguay  2013  8.68301917
## 10091                                Uzbekistan  2013 18.98390396
## 10092                                   Vanuatu  2013 27.97713982
## 10093        Venezuela (Bolivarian Republic of)  2013  5.36805127
## 10094                                  Viet Nam  2013 19.98400316
## 10095                                     World  2013 14.99330970
## 10096                                     Yemen  2013  9.96096521
## 10097                                    Zambia  2013  8.75911844
## 10098                                  Zimbabwe  2013 10.09444294
## 10099                               Afghanistan  2014 23.46312554
## 10100                                   Albania  2014 22.90307510
## 10101                                   Algeria  2014 11.08561648
## 10102                                   Andorra  2014  0.55163973
## 10104                       Antigua and Barbuda  2014  1.80443680
## 10105                                 Argentina  2014  7.99791756
## 10106                                   Armenia  2014 20.37766743
## 10108                                 Australia  2014  2.40212145
## 10109                                   Austria  2014  1.34610269
## 10110                                Azerbaijan  2014  5.69182891
## 10111                                   Bahamas  2014  0.91695383
## 10112                                   Bahrain  2014  0.30203022
## 10113                                Bangladesh  2014 16.10899801
## 10114                                  Barbados  2014  1.52517986
## 10115                                   Belarus  2014  8.26751935
## 10116                                   Belgium  2014  0.72551117
## 10117                                    Belize  2014 15.63580559
## 10118                                     Benin  2014 24.29258630
## 10120                                    Bhutan  2014 17.73865345
## 10121          Bolivia (Plurinational State of)  2014 12.98669625
## 10122                    Bosnia and Herzegovina  2014  7.22917549
## 10123                                  Botswana  2014  2.35640394
## 10124                                    Brazil  2014  5.02691377
## 10125                         Brunei Darussalam  2014  0.86319910
## 10126                                  Bulgaria  2014  5.25900572
## 10127                              Burkina Faso  2014 34.84599869
## 10128                                   Burundi  2014 39.26164095
## 10129                                  Cambodia  2014 30.92004347
## 10130                                  Cameroon  2014 15.26397422
## 10132                                Cape Verde  2014  9.63416230
## 10134                  Central African Republic  2014 42.16268552
## 10135                                      Chad  2014 52.62102027
## 10136                                     Chile  2014  4.28248096
## 10137                                     China  2014  9.05992242
## 10138                                  Colombia  2014  6.18446369
## 10139                                     Congo  2014  4.83428437
## 10140                                Costa Rica  2014  5.62740641
## 10141                             Cote d'Ivoire  2014 23.50930666
## 10142                                   Croatia  2014  4.14261052
## 10143                                      Cuba  2014  3.97850405
## 10144                                    Cyprus  2014  2.07926048
## 10145                            Czech Republic  2014  2.73739361
## 10146          Democratic Republic of the Congo  2014 21.29011002
## 10147                                   Denmark  2014  1.59332953
## 10149                                  Dominica  2014 15.92324185
## 10150                        Dominican Republic  2014  5.43986100
## 10151                                   Ecuador  2014  9.58159535
## 10152                                     Egypt  2014 10.94909322
## 10153                               El Salvador  2014 11.26930650
## 10154                         Equatorial Guinea  2014  1.30266695
## 10156                                   Estonia  2014  3.50237298
## 10157                                  Eswatini  2014 10.08961379
## 10158                                  Ethiopia  2014 41.92301248
## 10159                                      Fiji  2014 11.78029566
## 10160                                   Finland  2014  2.78777537
## 10161                                    France  2014  1.73801111
## 10162                                     Gabon  2014  3.94937154
## 10163                                    Gambia  2014 18.32661177
## 10164                                   Georgia  2014  9.27690566
## 10165                                   Germany  2014  0.76618977
## 10166                                     Ghana  2014 22.39593568
## 10167                                    Greece  2014  3.84414909
## 10168                                   Grenada  2014  7.06940111
## 10169                                 Guatemala  2014 11.35735948
## 10170                                    Guinea  2014 19.31680455
## 10171                             Guinea-Bissau  2014 43.09778155
## 10172                                    Guyana  2014 34.00463414
## 10173                                  Honduras  2014 13.69959611
## 10174                                   Hungary  2014  4.70079422
## 10175                                   Iceland  2014  6.17124011
## 10176                                     India  2014 18.01946290
## 10177                                 Indonesia  2014 13.67770147
## 10178                Iran (Islamic Republic of)  2014 10.00587349
## 10179                                   Ireland  2014  1.40243885
## 10180                                    Israel  2014  1.28280748
## 10181                                     Italy  2014  2.15910425
## 10182                                   Jamaica  2014  7.05357006
## 10183                                     Japan  2014  1.06488519
## 10184                                    Jordan  2014  3.77993098
## 10185                                Kazakhstan  2014  4.68680031
## 10186                                     Kenya  2014 30.37032275
## 10188                                    Kuwait  2014  0.41492128
## 10189                                Kyrgyzstan  2014 17.10648100
## 10190          Lao People's Democratic Republic  2014 19.65261254
## 10191                                    Latvia  2014  3.79525649
## 10192                                   Lebanon  2014  4.32107862
## 10193                                   Lesotho  2014  6.25394876
## 10194                                   Liberia  2014 35.76751118
## 10196                                 Lithuania  2014  3.78754709
## 10197                                Luxembourg  2014  0.29754955
## 10198                                Madagascar  2014 26.45249934
## 10199                                    Malawi  2014 30.81406264
## 10200                                  Malaysia  2014  8.87320901
## 10201                                  Maldives  2014  5.95468783
## 10202                                      Mali  2014 41.65789895
## 10203                                     Malta  2014  1.29639913
## 10204                          Marshall Islands  2014 16.33767334
## 10205                                Mauritania  2014 24.26288182
## 10206                                 Mauritius  2014  3.67172302
## 10207                                    Mexico  2014  3.54468988
## 10208          Micronesia (Federated States of)  2014 26.95945946
## 10209                                  Mongolia  2014 14.71516745
## 10210                                Montenegro  2014 10.00501883
## 10211                                   Morocco  2014 12.98952219
## 10212                                Mozambique  2014 25.05179427
## 10213                                   Myanmar  2014 27.82971631
## 10214                                   Namibia  2014  7.22904822
## 10215                                     Nepal  2014 33.80890729
## 10216                               Netherlands  2014  1.84059965
## 10217                               New Zealand  2014  6.80025081
## 10218                                 Nicaragua  2014 18.49217159
## 10219                                   Nigeria  2014 20.23571575
## 10220                                    Norway  2014  1.61032581
## 10221                             Not Available  2014  3.67557852
## 10222                                      Oman  2014  1.22099913
## 10223                                  Pakistan  2014 24.87095850
## 10224                                     Palau  2014  3.99214197
## 10225                                    Panama  2014  3.13332107
## 10226                          Papua New Guinea  2014 18.80640899
## 10227                                  Paraguay  2014 20.54800608
## 10228                                      Peru  2014  7.47295229
## 10229                               Philippines  2014 11.33098427
## 10230                                    Poland  2014  2.94681001
## 10231                                  Portugal  2014  2.31986586
## 10232                                     Qatar  2014  0.11723048
## 10233                         Republic of Korea  2014  2.32942219
## 10234                       Republic of Moldova  2014 15.47024465
## 10235                                   Romania  2014  5.33967404
## 10236                        Russian Federation  2014  4.06649992
## 10237                                    Rwanda  2014 30.89015524
## 10238                     Saint Kitts and Nevis  2014  1.35250116
## 10239                               Saint Lucia  2014  2.37528686
## 10240          Saint Vincent and the Grenadines  2014  7.79208446
## 10241                     Sao Tome and Principe  2014 12.01465132
## 10242                              Saudi Arabia  2014  2.22697503
## 10243                                   Senegal  2014 15.42424786
## 10244                                    Serbia  2014  9.27878094
## 10245                                Seychelles  2014  2.63993288
## 10246                              Sierra Leone  2014 53.95568841
## 10247                                 Singapore  2014  0.03974612
## 10248                                  Slovakia  2014  4.45758623
## 10249                                  Slovenia  2014  2.33303121
## 10252                              South Africa  2014  2.42584975
## 10253                                     Spain  2014  2.67451587
## 10254                                 Sri Lanka  2014  8.59025924
## 10255                                     Sudan  2014 39.89563530
## 10256                                  Suriname  2014 10.21204304
## 10257                                    Sweden  2014  1.34228842
## 10258                               Switzerland  2014  0.74550818
## 10260                                Tajikistan  2014 27.24576379
## 10261                                  Thailand  2014 10.07407069
## 10262 The former Yugoslav Republic of Macedonia  2014 11.72183320
## 10263                               Timor-Leste  2014 19.39971219
## 10264                                      Togo  2014 41.96838168
## 10265                                     Tonga  2014 19.69001148
## 10266                       Trinidad and Tobago  2014  0.47457221
## 10267                                   Tunisia  2014  9.76113312
## 10268                                    Turkey  2014  7.45080707
## 10270                                    Tuvalu  2014 22.35991917
## 10271                                    Uganda  2014 27.07375444
## 10272                                   Ukraine  2014 11.65421174
## 10274                            United Kingdom  2014  0.71659500
## 10275               United Republic of Tanzania  2014 31.35095559
## 10276                  United States of America  2014  1.25178621
## 10277                                   Uruguay  2014  7.66727236
## 10278                                Uzbekistan  2014 18.78656436
## 10279                                   Vanuatu  2014 28.20153657
## 10280        Venezuela (Bolivarian Republic of)  2014  5.64219071
## 10281                                  Viet Nam  2014 19.67671165
## 10282                                     World  2014 14.33243097
## 10283                                     Yemen  2014  9.88179539
## 10284                                    Zambia  2014  7.27141634
## 10285                                  Zimbabwe  2014 12.13455380
## 10286                               Afghanistan  2015 21.40072204
## 10287                                   Albania  2015 22.85781175
## 10288                                   Algeria  2015 12.60792807
## 10289                                   Andorra  2015  0.52091983
## 10291                       Antigua and Barbuda  2015  1.92888101
## 10292                                 Argentina  2015  6.04397789
## 10293                                   Armenia  2015 19.27026075
## 10295                                 Australia  2015  2.55895418
## 10296                                   Austria  2015  1.24611767
## 10297                                Azerbaijan  2015  6.78358676
## 10298                                   Bahamas  2015  0.93300658
## 10299                                   Bahrain  2015  0.31843508
## 10300                                Bangladesh  2015 15.50747193
## 10301                                  Barbados  2015  1.50597715
## 10302                                   Belarus  2015  7.24562919
## 10303                                   Belgium  2015  0.76302495
## 10304                                    Belize  2015 14.91270753
## 10305                                     Benin  2015 25.32139578
## 10307                                    Bhutan  2015 17.49999387
## 10308          Bolivia (Plurinational State of)  2015 13.23723506
## 10309                    Bosnia and Herzegovina  2015  7.56535305
## 10310                                  Botswana  2015  2.43901121
## 10311                                    Brazil  2015  4.97164231
## 10312                         Brunei Darussalam  2015  1.10248622
## 10313                                  Bulgaria  2015  4.78659232
## 10314                              Burkina Faso  2015 33.74618917
## 10315                                   Burundi  2015 40.42025619
## 10316                                  Cambodia  2015 28.63324512
## 10317                                  Cameroon  2015 16.05170936
## 10319                                Cape Verde  2015 10.20124905
## 10321                  Central African Republic  2015 42.36276127
## 10322                                      Chad  2015 52.38555112
## 10323                                     Chile  2015  4.31353393
## 10324                                     China  2015  8.83272401
## 10325                                  Colombia  2015  6.61515534
## 10326                                     Congo  2015  7.24349588
## 10327                                Costa Rica  2015  5.35698107
## 10328                             Cote d'Ivoire  2015 25.51077442
## 10329                                   Croatia  2015  4.20194602
## 10330                                      Cuba  2015  3.87653364
## 10331                                    Cyprus  2015  2.10406122
## 10332                            Czech Republic  2015  2.47583228
## 10333          Democratic Republic of the Congo  2015 20.39461364
## 10334                                   Denmark  2015  0.92512749
## 10336                                  Dominica  2015 16.90682310
## 10337                        Dominican Republic  2015  5.78657578
## 10338                                   Ecuador  2015 10.19937256
## 10339                                     Egypt  2015 11.25955279
## 10340                               El Salvador  2015 11.13113347
## 10341                         Equatorial Guinea  2015  2.02948735
## 10343                                   Estonia  2015  3.13637845
## 10344                                  Eswatini  2015 10.23539963
## 10345                                  Ethiopia  2015 39.23480716
## 10346                                      Fiji  2015 11.33048317
## 10347                                   Finland  2015  2.53948060
## 10348                                    France  2015  1.76469510
## 10349                                     Gabon  2015  4.67615468
## 10350                                    Gambia  2015 18.25208159
## 10351                                   Georgia  2015  9.12910863
## 10352                                   Germany  2015  0.61670096
## 10353                                     Ghana  2015 20.98818318
## 10354                                    Greece  2015  4.24388991
## 10355                                   Grenada  2015  8.67469780
## 10356                                 Guatemala  2015 11.09736916
## 10357                                    Guinea  2015 20.82054205
## 10358                             Guinea-Bissau  2015 49.45484832
## 10359                                    Guyana  2015 34.50340400
## 10360                                  Honduras  2015 13.58552753
## 10361                                   Hungary  2015  4.41824188
## 10362                                   Iceland  2015  6.25483988
## 10363                                     India  2015 17.46214981
## 10364                                 Indonesia  2015 13.92882062
## 10365                Iran (Islamic Republic of)  2015 10.75332954
## 10366                                   Ireland  2015  0.96189240
## 10367                                    Israel  2015  1.30918184
## 10368                                     Italy  2015  2.24302101
## 10369                                   Jamaica  2015  7.50505337
## 10370                                     Japan  2015  1.06847097
## 10371                                    Jordan  2015  4.17398419
## 10372                                Kazakhstan  2015  4.96563388
## 10373                                     Kenya  2015 33.30205553
## 10375                                    Kuwait  2015  0.49614312
## 10376                                Kyrgyzstan  2015 15.93894811
## 10377          Lao People's Democratic Republic  2015 19.66237967
## 10378                                    Latvia  2015  4.14715447
## 10379                                   Lebanon  2015  3.76077238
## 10380                                   Lesotho  2015  5.54647297
## 10381                                   Liberia  2015 34.37069813
## 10383                                 Lithuania  2015  3.63508119
## 10384                                Luxembourg  2015  0.25419966
## 10385                                Madagascar  2015 25.56221608
## 10386                                    Malawi  2015 29.71268919
## 10387                                  Malaysia  2015  8.46022753
## 10388                                  Maldives  2015  6.46121590
## 10389                                      Mali  2015 41.98106597
## 10390                                     Malta  2015  1.28583453
## 10391                          Marshall Islands  2015 14.69911736
## 10392                                Mauritania  2015 27.74303192
## 10393                                 Mauritius  2015  3.55607390
## 10394                                    Mexico  2015  3.61359139
## 10395          Micronesia (Federated States of)  2015 28.21305842
## 10396                                  Mongolia  2015 14.54052406
## 10397                                Montenegro  2015  9.74839552
## 10398                                   Morocco  2015 14.27824495
## 10399                                Mozambique  2015 25.19651228
## 10400                                   Myanmar  2015 26.77179521
## 10401                                   Namibia  2015  6.49576023
## 10402                                     Nepal  2015 32.95794057
## 10403                               Netherlands  2015  1.80524435
## 10405                                 Nicaragua  2015 18.23345741
## 10406                                   Nigeria  2015 20.85822645
## 10407                                    Norway  2015  1.72350555
## 10408                             Not Available  2015  3.29634719
## 10409                                      Oman  2015  1.57402144
## 10410                                  Pakistan  2015 25.05250925
## 10411                                     Palau  2015  3.35004760
## 10412                                    Panama  2015  2.89112053
## 10414                                  Paraguay  2015 19.24195496
## 10415                                      Peru  2015  7.75717248
## 10416                               Philippines  2015 10.26018520
## 10417                                    Poland  2015  2.48251341
## 10418                                  Portugal  2015  2.35053989
## 10419                                     Qatar  2015  0.15968763
## 10420                         Republic of Korea  2015  2.29075093
## 10421                       Republic of Moldova  2015 14.38342365
## 10422                                   Romania  2015  4.76024108
## 10423                        Russian Federation  2015  4.55794137
## 10424                                    Rwanda  2015 30.16961386
## 10425                     Saint Kitts and Nevis  2015  1.21104341
## 10426                               Saint Lucia  2015  2.39675828
## 10427          Saint Vincent and the Grenadines  2015  7.39012359
## 10428                     Sao Tome and Principe  2015 12.62194529
## 10429                              Saudi Arabia  2015  2.62948582
## 10430                                   Senegal  2015 16.92076645
## 10431                                    Serbia  2015  8.18419101
## 10433                              Sierra Leone  2015 60.50491089
## 10434                                 Singapore  2015  0.03702746
## 10435                                  Slovakia  2015  3.75297803
## 10436                                  Slovenia  2015  2.34292536
## 10439                              South Africa  2015  2.32488734
## 10440                                     Spain  2015  2.78260266
## 10441                                 Sri Lanka  2015  8.81043215
## 10442                                     Sudan  2015 39.32472539
## 10443                                  Suriname  2015 10.19052730
## 10444                                    Sweden  2015  1.35785752
## 10445                               Switzerland  2015  0.67241359
## 10447                                Tajikistan  2015 24.95290794
## 10448                                  Thailand  2015  8.72289019
## 10449 The former Yugoslav Republic of Macedonia  2015 11.40521388
## 10450                               Timor-Leste  2015 17.60285553
## 10451                                      Togo  2015 40.66339165
## 10452                                     Tonga  2015 20.21969081
## 10453                       Trinidad and Tobago  2015  0.53015990
## 10454                                   Tunisia  2015 11.00628329
## 10455                                    Turkey  2015  7.83451347
## 10457                                    Tuvalu  2015 21.65660986
## 10458                                    Uganda  2015 26.08906869
## 10459                                   Ukraine  2015 14.19485293
## 10461                            United Kingdom  2015  0.66447588
## 10462               United Republic of Tanzania  2015 31.45982705
## 10463                  United States of America  2015  1.05221084
## 10464                                   Uruguay  2015  6.96344720
## 10465                                Uzbekistan  2015 18.21226405
## 10468                                  Viet Nam  2015 18.88535930
## 10469                                     World  2015 12.64952216
## 10470                                     Yemen  2015  9.81254318
## 10471                                    Zambia  2015  5.25077406
## 10472                                  Zimbabwe  2015 11.59714530
## 10473                               Afghanistan  2016 21.91029502
## 10474                                   Albania  2016 22.89488599
## 10475                                   Algeria  2016 13.32055555
## 10478                       Antigua and Barbuda  2016  1.89154434
## 10479                                 Argentina  2016  7.56038775
## 10480                                   Armenia  2016 17.71371061
## 10482                                 Australia  2016  2.60584236
## 10483                                   Austria  2016  1.23672474
## 10484                                Azerbaijan  2016  6.03844996
## 10485                                   Bahamas  2016  0.97456244
## 10486                                   Bahrain  2016  0.33546701
## 10487                                Bangladesh  2016 14.77499460
## 10489                                   Belarus  2016  7.92220836
## 10490                                   Belgium  2016  0.69114247
## 10492                                     Benin  2016 25.55772039
## 10494                                    Bhutan  2016 17.32206210
## 10495          Bolivia (Plurinational State of)  2016 13.65458262
## 10496                    Bosnia and Herzegovina  2016  7.73661633
## 10497                                  Botswana  2016  2.19586032
## 10498                                    Brazil  2016  5.45206965
## 10499                         Brunei Darussalam  2016  1.20365338
## 10500                                  Bulgaria  2016  4.69947979
## 10501                              Burkina Faso  2016 30.81895945
## 10502                                   Burundi  2016 39.75779461
## 10503                                  Cambodia  2016 26.66132108
## 10504                                  Cameroon  2016 16.66344259
## 10506                                Cape Verde  2016  9.95902081
## 10508                  Central African Republic  2016 42.85956733
## 10509                                      Chad  2016 50.05602887
## 10510                                     Chile  2016  4.30055091
## 10511                                     China  2016  8.55642691
## 10512                                  Colombia  2016  7.12087556
## 10513                                     Congo  2016  8.72903677
## 10514                                Costa Rica  2016  5.50770822
## 10515                             Cote d'Ivoire  2016 23.43796853
## 10516                                   Croatia  2016  3.96433441
## 10518                                    Cyprus  2016  2.08116348
## 10519                            Czech Republic  2016  2.45336114
## 10520          Democratic Republic of the Congo  2016 21.85677823
## 10521                                   Denmark  2016  0.92459860
## 10523                                  Dominica  2016 19.11407218
## 10524                        Dominican Republic  2016  6.05930472
## 10525                                   Ecuador  2016 10.24502920
## 10526                                     Egypt  2016 11.92824774
## 10527                               El Salvador  2016 11.03006733
## 10528                         Equatorial Guinea  2016  2.57638297
## 10530                                   Estonia  2016  2.56730046
## 10531                                  Eswatini  2016 10.00384480
## 10532                                  Ethiopia  2016 37.23041850
## 10533                                      Fiji  2016 13.59364472
## 10534                                   Finland  2016  2.67486938
## 10535                                    France  2016  1.64072989
## 10536                                     Gabon  2016  5.34263837
## 10537                                    Gambia  2016 17.78969279
## 10538                                   Georgia  2016  8.96715995
## 10539                                   Germany  2016  0.61413687
## 10540                                     Ghana  2016 19.59813125
## 10541                                    Greece  2016  3.96690884
## 10542                                   Grenada  2016  7.40511140
## 10543                                 Guatemala  2016 11.04174974
## 10544                                    Guinea  2016 20.19861415
## 10545                             Guinea-Bissau  2016 49.12670009
## 10546                                    Guyana  2016 41.49084131
## 10547                                  Honduras  2016 13.49147269
## 10548                                   Hungary  2016  4.39891064
## 10550                                     India  2016 17.35259534
## 10551                                 Indonesia  2016 13.95042657
## 10552                Iran (Islamic Republic of)  2016  9.96187961
## 10553                                   Ireland  2016  0.99834797
## 10554                                    Israel  2016  1.30368652
## 10555                                     Italy  2016  2.09554031
## 10556                                   Jamaica  2016  7.96849659
## 10558                                    Jordan  2016  4.29678983
## 10559                                Kazakhstan  2016  4.82662187
## 10560                                     Kenya  2016 35.59744201
## 10562                                    Kuwait  2016  0.53210180
## 10563                                Kyrgyzstan  2016 14.86170662
## 10564          Lao People's Democratic Republic  2016 19.47661575
## 10565                                    Latvia  2016  3.93674865
## 10566                                   Lebanon  2016  3.76077238
## 10567                                   Lesotho  2016  5.79372017
## 10568                                   Liberia  2016 34.19800095
## 10570                                 Lithuania  2016  3.28378911
## 10571                                Luxembourg  2016  0.26761026
## 10572                                Madagascar  2016 24.69461114
## 10573                                    Malawi  2016 28.05193458
## 10574                                  Malaysia  2016  8.65533444
## 10575                                  Maldives  2016  6.81388377
## 10576                                      Mali  2016 42.14323523
## 10577                                     Malta  2016  1.35563441
## 10579                                Mauritania  2016 27.40000000
## 10580                                 Mauritius  2016  3.55575157
## 10581                                    Mexico  2016  3.83388717
## 10583                                  Mongolia  2016 12.73997304
## 10584                                Montenegro  2016  9.03311171
## 10585                                   Morocco  2016 13.63703328
## 10586                                Mozambique  2016 24.77185546
## 10587                                   Myanmar  2016 25.46388229
## 10588                                   Namibia  2016  6.85458648
## 10589                                     Nepal  2016 32.97933269
## 10590                               Netherlands  2016  1.82922578
## 10592                                 Nicaragua  2016 17.28606602
## 10593                                   Nigeria  2016 21.20762656
## 10594                                    Norway  2016  2.41068810
## 10595                             Not Available  2016  3.26232984
## 10596                                      Oman  2016  1.98372250
## 10597                                  Pakistan  2016 24.64229481
## 10598                                     Palau  2016  3.39233931
## 10599                                    Panama  2016  2.70265166
## 10601                                  Paraguay  2016 19.97110858
## 10602                                      Peru  2016  7.59690208
## 10603                               Philippines  2016  9.65155620
## 10604                                    Poland  2016  2.68872633
## 10605                                  Portugal  2016  2.18551193
## 10606                                     Qatar  2016  0.18308780
## 10607                         Republic of Korea  2016  2.19833142
## 10608                       Republic of Moldova  2016 14.32739972
## 10609                                   Romania  2016  4.33874080
## 10610                        Russian Federation  2016  4.74026476
## 10611                                    Rwanda  2016 31.51104661
## 10612                     Saint Kitts and Nevis  2016  1.10535266
## 10613                               Saint Lucia  2016  2.42952167
## 10614          Saint Vincent and the Grenadines  2016  8.29545872
## 10615                     Sao Tome and Principe  2016 11.82625447
## 10616                              Saudi Arabia  2016  2.67937886
## 10617                                   Senegal  2016 17.46056764
## 10618                                    Serbia  2016  7.87202778
## 10620                              Sierra Leone  2016 59.36275413
## 10621                                 Singapore  2016  0.03663017
## 10622                                  Slovakia  2016  3.67694713
## 10623                                  Slovenia  2016  2.17201159
## 10626                              South Africa  2016  2.43434906
## 10627                                     Spain  2016  2.76773037
## 10628                                 Sri Lanka  2016  8.21454132
## 10629                                     Sudan  2016 39.00000000
## 10630                                  Suriname  2016  9.96860283
## 10631                                    Sweden  2016  1.29909115
## 10632                               Switzerland  2016  0.67303400
## 10635                                  Thailand  2016  8.34873658
## 10636 The former Yugoslav Republic of Macedonia  2016  9.88827576
## 10638                                      Togo  2016 41.27678943
## 10639                                     Tonga  2016 19.80082773
## 10640                       Trinidad and Tobago  2016  0.53767767
## 10641                                   Tunisia  2016  9.97991128
## 10642                                    Turkey  2016  7.01661082
## 10645                                    Uganda  2016 25.78173041
## 10646                                   Ukraine  2016 13.71964212
## 10648                            United Kingdom  2016  0.60240998
## 10649               United Republic of Tanzania  2016 31.51435101
## 10651                                   Uruguay  2016  6.82123170
## 10652                                Uzbekistan  2016 17.60189391
## 10655                                  Viet Nam  2016 18.14112866
## 10656                                     World  2016 13.41203955
## 10657                                     Yemen  2016  9.75145484
## 10658                                    Zambia  2016  6.53645811
## 10659                                  Zimbabwe  2016 10.97550551
df
##                                     country_name years percent_gdp
## 2229                                     Albania  1990 35.90078991
## 2230                                     Albania  1990 35.90078991
## 2231                                     Albania  1990 35.90078991
## 2232                                     Albania  1990 35.90078991
## 2233                                     Albania  1990 35.90078991
## 2234                                     Albania  1990 35.90078991
## 2235                                     Albania  1990 35.90078991
## 2236                                     Albania  1990 35.90078991
## 2237                                     Albania  1990 35.90078991
## 2238                                     Albania  1990 35.90078991
## 2239                                     Albania  1990 35.90078991
## 2240                                     Albania  1990 35.90078991
## 2241                                     Albania  1990 35.90078991
## 2242                                     Albania  1990 35.90078991
## 2244                                     Albania  1990 35.90078991
## 2245                                     Albania  1990 35.90078991
## 2246                                     Albania  1990 35.90078991
## 2247                                     Albania  1990 35.90078991
## 2249                                     Albania  1990 35.90078991
## 2250                                     Albania  1990 35.90078991
## 2251                                     Albania  1990 35.90078991
## 2252                                     Albania  1990 35.90078991
## 2253                                     Albania  1990 35.90078991
## 2254                                     Albania  1990 35.90078991
## 2262                                     Albania  1990 35.90078991
## 2263                                     Albania  1990 35.90078991
## 2264                                     Albania  1990 35.90078991
## 2266                                     Albania  1990 35.90078991
## 2267                                     Albania  1990 35.90078991
## 2271                                     Albania  1990 35.90078991
## 2272                                     Albania  1990 35.90078991
## 2285                                     Albania  1990 35.90078991
## 2286                                     Albania  1990 35.90078991
## 2296                                     Albania  1990 35.90078991
## 2297                                     Albania  1990 35.90078991
## 2298                                     Albania  1990 35.90078991
## 2299                                     Albania  1990 35.90078991
## 2300                                     Albania  1990 35.90078991
## 2301                                     Albania  1990 35.90078991
## 2302                                     Albania  1990 35.90078991
## 2303                                     Albania  1990 35.90078991
## 2304                                     Albania  1990 35.90078991
## 2305                                     Albania  1990 35.90078991
## 2306                                     Albania  1990 35.90078991
## 2316                                     Albania  1990 35.90078991
## 2317                                     Albania  1990 35.90078991
## 2318                                     Albania  1990 35.90078991
## 2319                                     Albania  1990 35.90078991
## 2320                                     Albania  1990 35.90078991
## 2337                                     Albania  1990 35.90078991
## 2352                                     Albania  1990 35.90078991
## 2354                                     Albania  1990 35.90078991
## 2361                                     Albania  1990 35.90078991
## 2364                                     Albania  1990 35.90078991
## 2366                                     Albania  1990 35.90078991
## 2367                                     Albania  1990 35.90078991
## 2373                                     Albania  1990 35.90078991
## 2374                                     Albania  1990 35.90078991
## 2375                                     Albania  1990 35.90078991
## 2382                                     Algeria  1990 11.35826743
## 2383                                     Algeria  1990 11.35826743
## 2384                                     Algeria  1990 11.35826743
## 2385                                     Algeria  1990 11.35826743
## 2386                                     Algeria  1990 11.35826743
## 2387                                     Algeria  1990 11.35826743
## 2388                                     Algeria  1990 11.35826743
## 2389                                     Algeria  1990 11.35826743
## 2390                                     Algeria  1990 11.35826743
## 2391                                     Algeria  1990 11.35826743
## 2392                                     Algeria  1990 11.35826743
## 2393                                     Algeria  1990 11.35826743
## 2398                                     Algeria  1990 11.35826743
## 2399                                     Algeria  1990 11.35826743
## 2400                                     Algeria  1990 11.35826743
## 2402                                     Algeria  1990 11.35826743
## 2403                                     Algeria  1990 11.35826743
## 2404                                     Algeria  1990 11.35826743
## 2405                                     Algeria  1990 11.35826743
## 2406                                     Algeria  1990 11.35826743
## 2407                                     Algeria  1990 11.35826743
## 2408                                     Algeria  1990 11.35826743
## 2414                                     Algeria  1990 11.35826743
## 2415                                     Algeria  1990 11.35826743
## 2416                                     Algeria  1990 11.35826743
## 2417                                     Algeria  1990 11.35826743
## 2418                                     Algeria  1990 11.35826743
## 2420                                     Algeria  1990 11.35826743
## 2421                                     Algeria  1990 11.35826743
## 2425                                     Algeria  1990 11.35826743
## 2426                                     Algeria  1990 11.35826743
## 2439                                     Algeria  1990 11.35826743
## 2449                                     Algeria  1990 11.35826743
## 2450                                     Algeria  1990 11.35826743
## 2451                                     Algeria  1990 11.35826743
## 2452                                     Algeria  1990 11.35826743
## 2453                                     Algeria  1990 11.35826743
## 2454                                     Algeria  1990 11.35826743
## 2455                                     Algeria  1990 11.35826743
## 2457                                     Algeria  1990 11.35826743
## 2458                                     Algeria  1990 11.35826743
## 2459                                     Algeria  1990 11.35826743
## 2460                                     Algeria  1990 11.35826743
## 2469                                     Algeria  1990 11.35826743
## 2470                                     Algeria  1990 11.35826743
## 2471                                     Algeria  1990 11.35826743
## 2472                                     Algeria  1990 11.35826743
## 2473                                     Algeria  1990 11.35826743
## 2474                                     Algeria  1990 11.35826743
## 2491                                     Algeria  1990 11.35826743
## 2506                                     Algeria  1990 11.35826743
## 2508                                     Algeria  1990 11.35826743
## 2513                                     Algeria  1990 11.35826743
## 2515                                     Algeria  1990 11.35826743
## 2516                                     Algeria  1990 11.35826743
## 2517                                     Algeria  1990 11.35826743
## 2518                                     Algeria  1990 11.35826743
## 2519                                     Algeria  1990 11.35826743
## 2520                                     Algeria  1990 11.35826743
## 2525                                     Algeria  1990 11.35826743
## 2526                                     Algeria  1990 11.35826743
## 2527                                     Algeria  1990 11.35826743
## 2535                                      Angola  1990 18.35566711
## 2536                                      Angola  1990 18.35566711
## 2537                                      Angola  1990 18.35566711
## 2538                                      Angola  1990 18.35566711
## 2539                                      Angola  1990 18.35566711
## 2540                                      Angola  1990 18.35566711
## 2541                                      Angola  1990 18.35566711
## 2542                                      Angola  1990 18.35566711
## 2543                                      Angola  1990 18.35566711
## 2545                                      Angola  1990 18.35566711
## 2549                                      Angola  1990 18.35566711
## 2550                                      Angola  1990 18.35566711
## 2551                                      Angola  1990 18.35566711
## 2552                                      Angola  1990 18.35566711
## 2555                                      Angola  1990 18.35566711
## 2558                                      Angola  1990 18.35566711
## 2559                                      Angola  1990 18.35566711
## 2560                                      Angola  1990 18.35566711
## 2562                                      Angola  1990 18.35566711
## 2567                                      Angola  1990 18.35566711
## 2568                                      Angola  1990 18.35566711
## 2576                                      Angola  1990 18.35566711
## 2587                                      Angola  1990 18.35566711
## 2588                                      Angola  1990 18.35566711
## 2589                                      Angola  1990 18.35566711
## 2590                                      Angola  1990 18.35566711
## 2591                                      Angola  1990 18.35566711
## 2592                                      Angola  1990 18.35566711
## 2593                                      Angola  1990 18.35566711
## 2595                                      Angola  1990 18.35566711
## 2596                                      Angola  1990 18.35566711
## 2597                                      Angola  1990 18.35566711
## 2598                                      Angola  1990 18.35566711
## 2608                                      Angola  1990 18.35566711
## 2609                                      Angola  1990 18.35566711
## 2610                                      Angola  1990 18.35566711
## 2611                                      Angola  1990 18.35566711
## 2612                                      Angola  1990 18.35566711
## 2629                                      Angola  1990 18.35566711
## 2644                                      Angola  1990 18.35566711
## 2646                                      Angola  1990 18.35566711
## 2651                                      Angola  1990 18.35566711
## 2653                                      Angola  1990 18.35566711
## 2654                                      Angola  1990 18.35566711
## 2655                                      Angola  1990 18.35566711
## 2656                                      Angola  1990 18.35566711
## 2657                                      Angola  1990 18.35566711
## 2663                                      Angola  1990 18.35566711
## 2664                                      Angola  1990 18.35566711
## 2665                                      Angola  1990 18.35566711
## 2673                         Antigua and Barbuda  1990  2.05135729
## 2674                         Antigua and Barbuda  1990  2.05135729
## 2675                         Antigua and Barbuda  1990  2.05135729
## 2676                         Antigua and Barbuda  1990  2.05135729
## 2677                         Antigua and Barbuda  1990  2.05135729
## 2678                         Antigua and Barbuda  1990  2.05135729
## 2679                         Antigua and Barbuda  1990  2.05135729
## 2680                         Antigua and Barbuda  1990  2.05135729
## 2681                         Antigua and Barbuda  1990  2.05135729
## 2696                         Antigua and Barbuda  1990  2.05135729
## 2697                         Antigua and Barbuda  1990  2.05135729
## 2698                         Antigua and Barbuda  1990  2.05135729
## 2700                         Antigua and Barbuda  1990  2.05135729
## 2701                         Antigua and Barbuda  1990  2.05135729
## 2705                         Antigua and Barbuda  1990  2.05135729
## 2706                         Antigua and Barbuda  1990  2.05135729
## 2712                         Antigua and Barbuda  1990  2.05135729
## 2713                         Antigua and Barbuda  1990  2.05135729
## 2714                         Antigua and Barbuda  1990  2.05135729
## 2715                         Antigua and Barbuda  1990  2.05135729
## 2716                         Antigua and Barbuda  1990  2.05135729
## 2717                         Antigua and Barbuda  1990  2.05135729
## 2718                         Antigua and Barbuda  1990  2.05135729
## 2719                         Antigua and Barbuda  1990  2.05135729
## 2720                         Antigua and Barbuda  1990  2.05135729
## 2721                         Antigua and Barbuda  1990  2.05135729
## 2729                         Antigua and Barbuda  1990  2.05135729
## 2730                         Antigua and Barbuda  1990  2.05135729
## 2731                         Antigua and Barbuda  1990  2.05135729
## 2732                         Antigua and Barbuda  1990  2.05135729
## 2733                         Antigua and Barbuda  1990  2.05135729
## 2740                         Antigua and Barbuda  1990  2.05135729
## 2744                         Antigua and Barbuda  1990  2.05135729
## 2745                         Antigua and Barbuda  1990  2.05135729
## 2746                         Antigua and Barbuda  1990  2.05135729
## 2747                         Antigua and Barbuda  1990  2.05135729
## 2748                         Antigua and Barbuda  1990  2.05135729
## 2749                         Antigua and Barbuda  1990  2.05135729
## 2752                                   Argentina  1990  8.12367621
## 2753                                   Argentina  1990  8.12367621
## 2754                                   Argentina  1990  8.12367621
## 2755                                   Argentina  1990  8.12367621
## 2756                                   Argentina  1990  8.12367621
## 2757                                   Argentina  1990  8.12367621
## 2758                                   Argentina  1990  8.12367621
## 2759                                   Argentina  1990  8.12367621
## 2760                                   Argentina  1990  8.12367621
## 2761                                   Argentina  1990  8.12367621
## 2762                                   Argentina  1990  8.12367621
## 2763                                   Argentina  1990  8.12367621
## 2766                                   Argentina  1990  8.12367621
## 2768                                   Argentina  1990  8.12367621
## 2769                                   Argentina  1990  8.12367621
## 2772                                   Argentina  1990  8.12367621
## 2773                                   Argentina  1990  8.12367621
## 2774                                   Argentina  1990  8.12367621
## 2775                                   Argentina  1990  8.12367621
## 2776                                   Argentina  1990  8.12367621
## 2777                                   Argentina  1990  8.12367621
## 2785                                   Argentina  1990  8.12367621
## 2786                                   Argentina  1990  8.12367621
## 2787                                   Argentina  1990  8.12367621
## 2789                                   Argentina  1990  8.12367621
## 2794                                   Argentina  1990  8.12367621
## 2795                                   Argentina  1990  8.12367621
## 2807                                   Argentina  1990  8.12367621
## 2808                                   Argentina  1990  8.12367621
## 2815                                   Argentina  1990  8.12367621
## 2816                                   Argentina  1990  8.12367621
## 2817                                   Argentina  1990  8.12367621
## 2818                                   Argentina  1990  8.12367621
## 2819                                   Argentina  1990  8.12367621
## 2820                                   Argentina  1990  8.12367621
## 2821                                   Argentina  1990  8.12367621
## 2823                                   Argentina  1990  8.12367621
## 2824                                   Argentina  1990  8.12367621
## 2825                                   Argentina  1990  8.12367621
## 2826                                   Argentina  1990  8.12367621
## 2835                                   Argentina  1990  8.12367621
## 2836                                   Argentina  1990  8.12367621
## 2837                                   Argentina  1990  8.12367621
## 2838                                   Argentina  1990  8.12367621
## 2839                                   Argentina  1990  8.12367621
## 2840                                   Argentina  1990  8.12367621
## 2858                                   Argentina  1990  8.12367621
## 2860                                   Argentina  1990  8.12367621
## 2862                                   Argentina  1990  8.12367621
## 2869                                   Argentina  1990  8.12367621
## 2871                                   Argentina  1990  8.12367621
## 2872                                   Argentina  1990  8.12367621
## 2873                                   Argentina  1990  8.12367621
## 2874                                   Argentina  1990  8.12367621
## 2875                                   Argentina  1990  8.12367621
## 2876                                   Argentina  1990  8.12367621
## 2880                                   Argentina  1990  8.12367621
## 2881                                   Argentina  1990  8.12367621
## 2882                                   Argentina  1990  8.12367621
## 2889                                     Armenia  1990 17.37626972
## 2890                                     Armenia  1990 17.37626972
## 2891                                     Armenia  1990 17.37626972
## 2892                                     Armenia  1990 17.37626972
## 2893                                     Armenia  1990 17.37626972
## 2894                                     Armenia  1990 17.37626972
## 2895                                     Armenia  1990 17.37626972
## 2896                                     Armenia  1990 17.37626972
## 2897                                     Armenia  1990 17.37626972
## 2898                                     Armenia  1990 17.37626972
## 2899                                     Armenia  1990 17.37626972
## 2900                                     Armenia  1990 17.37626972
## 2904                                     Armenia  1990 17.37626972
## 2907                                     Armenia  1990 17.37626972
## 2909                                     Armenia  1990 17.37626972
## 2910                                     Armenia  1990 17.37626972
## 2911                                     Armenia  1990 17.37626972
## 2912                                     Armenia  1990 17.37626972
## 2913                                     Armenia  1990 17.37626972
## 2914                                     Armenia  1990 17.37626972
## 2922                                     Armenia  1990 17.37626972
## 2924                                     Armenia  1990 17.37626972
## 2929                                     Armenia  1990 17.37626972
## 2930                                     Armenia  1990 17.37626972
## 2942                                     Armenia  1990 17.37626972
## 2943                                     Armenia  1990 17.37626972
## 2953                                     Armenia  1990 17.37626972
## 2956                                     Armenia  1990 17.37626972
## 2957                                     Armenia  1990 17.37626972
## 2958                                     Armenia  1990 17.37626972
## 2959                                     Armenia  1990 17.37626972
## 2960                                     Armenia  1990 17.37626972
## 2961                                     Armenia  1990 17.37626972
## 2962                                     Armenia  1990 17.37626972
## 2963                                     Armenia  1990 17.37626972
## 2973                                     Armenia  1990 17.37626972
## 2974                                     Armenia  1990 17.37626972
## 2975                                     Armenia  1990 17.37626972
## 2976                                     Armenia  1990 17.37626972
## 2977                                     Armenia  1990 17.37626972
## 2995                                     Armenia  1990 17.37626972
## 3012                                     Armenia  1990 17.37626972
## 3019                                     Armenia  1990 17.37626972
## 3022                                     Armenia  1990 17.37626972
## 3031                                     Armenia  1990 17.37626972
## 3032                                     Armenia  1990 17.37626972
## 3033                                     Armenia  1990 17.37626972
## 3040                                   Australia  1990  4.58348791
## 3041                                   Australia  1990  4.58348791
## 3042                                   Australia  1990  4.58348791
## 3043                                   Australia  1990  4.58348791
## 3044                                   Australia  1990  4.58348791
## 3045                                   Australia  1990  4.58348791
## 3046                                   Australia  1990  4.58348791
## 3047                                   Australia  1990  4.58348791
## 3048                                   Australia  1990  4.58348791
## 3049                                   Australia  1990  4.58348791
## 3050                                   Australia  1990  4.58348791
## 3051                                   Australia  1990  4.58348791
## 3052                                   Australia  1990  4.58348791
## 3053                                   Australia  1990  4.58348791
## 3054                                   Australia  1990  4.58348791
## 3055                                   Australia  1990  4.58348791
## 3056                                   Australia  1990  4.58348791
## 3058                                   Australia  1990  4.58348791
## 3059                                   Australia  1990  4.58348791
## 3060                                   Australia  1990  4.58348791
## 3061                                   Australia  1990  4.58348791
## 3062                                   Australia  1990  4.58348791
## 3063                                   Australia  1990  4.58348791
## 3064                                   Australia  1990  4.58348791
## 3069                                   Australia  1990  4.58348791
## 3070                                   Australia  1990  4.58348791
## 3071                                   Australia  1990  4.58348791
## 3073                                   Australia  1990  4.58348791
## 3078                                   Australia  1990  4.58348791
## 3079                                   Australia  1990  4.58348791
## 3091                                   Australia  1990  4.58348791
## 3101                                   Australia  1990  4.58348791
## 3102                                   Australia  1990  4.58348791
## 3103                                   Australia  1990  4.58348791
## 3104                                   Australia  1990  4.58348791
## 3105                                   Australia  1990  4.58348791
## 3106                                   Australia  1990  4.58348791
## 3107                                   Australia  1990  4.58348791
## 3108                                   Australia  1990  4.58348791
## 3109                                   Australia  1990  4.58348791
## 3110                                   Australia  1990  4.58348791
## 3111                                   Australia  1990  4.58348791
## 3120                                   Australia  1990  4.58348791
## 3121                                   Australia  1990  4.58348791
## 3122                                   Australia  1990  4.58348791
## 3123                                   Australia  1990  4.58348791
## 3124                                   Australia  1990  4.58348791
## 3125                                   Australia  1990  4.58348791
## 3143                                   Australia  1990  4.58348791
## 3144                                   Australia  1990  4.58348791
## 3146                                   Australia  1990  4.58348791
## 3153                                   Australia  1990  4.58348791
## 3155                                   Australia  1990  4.58348791
## 3156                                   Australia  1990  4.58348791
## 3157                                   Australia  1990  4.58348791
## 3158                                   Australia  1990  4.58348791
## 3162                                   Australia  1990  4.58348791
## 3163                                   Australia  1990  4.58348791
## 3164                                   Australia  1990  4.58348791
## 3171                                     Austria  1990  3.48905794
## 3172                                     Austria  1990  3.48905794
## 3173                                     Austria  1990  3.48905794
## 3174                                     Austria  1990  3.48905794
## 3175                                     Austria  1990  3.48905794
## 3176                                     Austria  1990  3.48905794
## 3177                                     Austria  1990  3.48905794
## 3178                                     Austria  1990  3.48905794
## 3179                                     Austria  1990  3.48905794
## 3180                                     Austria  1990  3.48905794
## 3181                                     Austria  1990  3.48905794
## 3182                                     Austria  1990  3.48905794
## 3183                                     Austria  1990  3.48905794
## 3184                                     Austria  1990  3.48905794
## 3185                                     Austria  1990  3.48905794
## 3186                                     Austria  1990  3.48905794
## 3187                                     Austria  1990  3.48905794
## 3188                                     Austria  1990  3.48905794
## 3189                                     Austria  1990  3.48905794
## 3190                                     Austria  1990  3.48905794
## 3191                                     Austria  1990  3.48905794
## 3192                                     Austria  1990  3.48905794
## 3193                                     Austria  1990  3.48905794
## 3194                                     Austria  1990  3.48905794
## 3195                                     Austria  1990  3.48905794
## 3201                                     Austria  1990  3.48905794
## 3203                                     Austria  1990  3.48905794
## 3204                                     Austria  1990  3.48905794
## 3205                                     Austria  1990  3.48905794
## 3207                                     Austria  1990  3.48905794
## 3208                                     Austria  1990  3.48905794
## 3212                                     Austria  1990  3.48905794
## 3213                                     Austria  1990  3.48905794
## 3224                                     Austria  1990  3.48905794
## 3234                                     Austria  1990  3.48905794
## 3235                                     Austria  1990  3.48905794
## 3236                                     Austria  1990  3.48905794
## 3237                                     Austria  1990  3.48905794
## 3238                                     Austria  1990  3.48905794
## 3239                                     Austria  1990  3.48905794
## 3240                                     Austria  1990  3.48905794
## 3241                                     Austria  1990  3.48905794
## 3242                                     Austria  1990  3.48905794
## 3243                                     Austria  1990  3.48905794
## 3253                                     Austria  1990  3.48905794
## 3254                                     Austria  1990  3.48905794
## 3255                                     Austria  1990  3.48905794
## 3256                                     Austria  1990  3.48905794
## 3257                                     Austria  1990  3.48905794
## 3275                                     Austria  1990  3.48905794
## 3278                                     Austria  1990  3.48905794
## 3285                                     Austria  1990  3.48905794
## 3287                                     Austria  1990  3.48905794
## 3288                                     Austria  1990  3.48905794
## 3290                                     Austria  1990  3.48905794
## 3294                                     Austria  1990  3.48905794
## 3295                                     Austria  1990  3.48905794
## 3296                                     Austria  1990  3.48905794
## 3304                                  Azerbaijan  1990 29.02502802
## 3305                                  Azerbaijan  1990 29.02502802
## 3306                                  Azerbaijan  1990 29.02502802
## 3307                                  Azerbaijan  1990 29.02502802
## 3308                                  Azerbaijan  1990 29.02502802
## 3309                                  Azerbaijan  1990 29.02502802
## 3310                                  Azerbaijan  1990 29.02502802
## 3311                                  Azerbaijan  1990 29.02502802
## 3312                                  Azerbaijan  1990 29.02502802
## 3314                                  Azerbaijan  1990 29.02502802
## 3315                                  Azerbaijan  1990 29.02502802
## 3316                                  Azerbaijan  1990 29.02502802
## 3318                                  Azerbaijan  1990 29.02502802
## 3319                                  Azerbaijan  1990 29.02502802
## 3320                                  Azerbaijan  1990 29.02502802
## 3321                                  Azerbaijan  1990 29.02502802
## 3336                                  Azerbaijan  1990 29.02502802
## 3338                                  Azerbaijan  1990 29.02502802
## 3343                                  Azerbaijan  1990 29.02502802
## 3344                                  Azerbaijan  1990 29.02502802
## 3356                                  Azerbaijan  1990 29.02502802
## 3357                                  Azerbaijan  1990 29.02502802
## 3367                                  Azerbaijan  1990 29.02502802
## 3370                                  Azerbaijan  1990 29.02502802
## 3371                                  Azerbaijan  1990 29.02502802
## 3372                                  Azerbaijan  1990 29.02502802
## 3373                                  Azerbaijan  1990 29.02502802
## 3375                                  Azerbaijan  1990 29.02502802
## 3376                                  Azerbaijan  1990 29.02502802
## 3377                                  Azerbaijan  1990 29.02502802
## 3378                                  Azerbaijan  1990 29.02502802
## 3388                                  Azerbaijan  1990 29.02502802
## 3389                                  Azerbaijan  1990 29.02502802
## 3390                                  Azerbaijan  1990 29.02502802
## 3391                                  Azerbaijan  1990 29.02502802
## 3392                                  Azerbaijan  1990 29.02502802
## 3410                                  Azerbaijan  1990 29.02502802
## 3426                                  Azerbaijan  1990 29.02502802
## 3433                                  Azerbaijan  1990 29.02502802
## 3436                                  Azerbaijan  1990 29.02502802
## 3444                                  Azerbaijan  1990 29.02502802
## 3445                                  Azerbaijan  1990 29.02502802
## 3446                                  Azerbaijan  1990 29.02502802
## 3453                                     Bahamas  1990  2.55121066
## 3454                                     Bahamas  1990  2.55121066
## 3455                                     Bahamas  1990  2.55121066
## 3456                                     Bahamas  1990  2.55121066
## 3457                                     Bahamas  1990  2.55121066
## 3458                                     Bahamas  1990  2.55121066
## 3459                                     Bahamas  1990  2.55121066
## 3460                                     Bahamas  1990  2.55121066
## 3461                                     Bahamas  1990  2.55121066
## 3463                                     Bahamas  1990  2.55121066
## 3464                                     Bahamas  1990  2.55121066
## 3465                                     Bahamas  1990  2.55121066
## 3468                                     Bahamas  1990  2.55121066
## 3469                                     Bahamas  1990  2.55121066
## 3481                                     Bahamas  1990  2.55121066
## 3482                                     Bahamas  1990  2.55121066
## 3483                                     Bahamas  1990  2.55121066
## 3485                                     Bahamas  1990  2.55121066
## 3489                                     Bahamas  1990  2.55121066
## 3490                                     Bahamas  1990  2.55121066
## 3499                                     Bahamas  1990  2.55121066
## 3500                                     Bahamas  1990  2.55121066
## 3506                                     Bahamas  1990  2.55121066
## 3507                                     Bahamas  1990  2.55121066
## 3508                                     Bahamas  1990  2.55121066
## 3509                                     Bahamas  1990  2.55121066
## 3510                                     Bahamas  1990  2.55121066
## 3511                                     Bahamas  1990  2.55121066
## 3512                                     Bahamas  1990  2.55121066
## 3513                                     Bahamas  1990  2.55121066
## 3514                                     Bahamas  1990  2.55121066
## 3515                                     Bahamas  1990  2.55121066
## 3516                                     Bahamas  1990  2.55121066
## 3524                                     Bahamas  1990  2.55121066
## 3525                                     Bahamas  1990  2.55121066
## 3526                                     Bahamas  1990  2.55121066
## 3527                                     Bahamas  1990  2.55121066
## 3528                                     Bahamas  1990  2.55121066
## 3529                                     Bahamas  1990  2.55121066
## 3542                                     Bahamas  1990  2.55121066
## 3546                                     Bahamas  1990  2.55121066
## 3549                                     Bahamas  1990  2.55121066
## 3551                                     Bahamas  1990  2.55121066
## 3552                                     Bahamas  1990  2.55121066
## 3553                                     Bahamas  1990  2.55121066
## 3558                                     Bahamas  1990  2.55121066
## 3559                                     Bahamas  1990  2.55121066
## 3560                                     Bahamas  1990  2.55121066
## 3566                                  Bangladesh  1990 32.75288712
## 3567                                  Bangladesh  1990 32.75288712
## 3568                                  Bangladesh  1990 32.75288712
## 3569                                  Bangladesh  1990 32.75288712
## 3570                                  Bangladesh  1990 32.75288712
## 3571                                  Bangladesh  1990 32.75288712
## 3572                                  Bangladesh  1990 32.75288712
## 3573                                  Bangladesh  1990 32.75288712
## 3574                                  Bangladesh  1990 32.75288712
## 3575                                  Bangladesh  1990 32.75288712
## 3576                                  Bangladesh  1990 32.75288712
## 3577                                  Bangladesh  1990 32.75288712
## 3578                                  Bangladesh  1990 32.75288712
## 3579                                  Bangladesh  1990 32.75288712
## 3580                                  Bangladesh  1990 32.75288712
## 3582                                  Bangladesh  1990 32.75288712
## 3583                                  Bangladesh  1990 32.75288712
## 3584                                  Bangladesh  1990 32.75288712
## 3586                                  Bangladesh  1990 32.75288712
## 3587                                  Bangladesh  1990 32.75288712
## 3588                                  Bangladesh  1990 32.75288712
## 3589                                  Bangladesh  1990 32.75288712
## 3590                                  Bangladesh  1990 32.75288712
## 3591                                  Bangladesh  1990 32.75288712
## 3595                                  Bangladesh  1990 32.75288712
## 3597                                  Bangladesh  1990 32.75288712
## 3598                                  Bangladesh  1990 32.75288712
## 3599                                  Bangladesh  1990 32.75288712
## 3601                                  Bangladesh  1990 32.75288712
## 3606                                  Bangladesh  1990 32.75288712
## 3607                                  Bangladesh  1990 32.75288712
## 3619                                  Bangladesh  1990 32.75288712
## 3630                                  Bangladesh  1990 32.75288712
## 3631                                  Bangladesh  1990 32.75288712
## 3632                                  Bangladesh  1990 32.75288712
## 3633                                  Bangladesh  1990 32.75288712
## 3634                                  Bangladesh  1990 32.75288712
## 3635                                  Bangladesh  1990 32.75288712
## 3636                                  Bangladesh  1990 32.75288712
## 3638                                  Bangladesh  1990 32.75288712
## 3639                                  Bangladesh  1990 32.75288712
## 3640                                  Bangladesh  1990 32.75288712
## 3641                                  Bangladesh  1990 32.75288712
## 3650                                  Bangladesh  1990 32.75288712
## 3651                                  Bangladesh  1990 32.75288712
## 3652                                  Bangladesh  1990 32.75288712
## 3653                                  Bangladesh  1990 32.75288712
## 3654                                  Bangladesh  1990 32.75288712
## 3655                                  Bangladesh  1990 32.75288712
## 3673                                  Bangladesh  1990 32.75288712
## 3688                                  Bangladesh  1990 32.75288712
## 3690                                  Bangladesh  1990 32.75288712
## 3698                                  Bangladesh  1990 32.75288712
## 3699                                  Bangladesh  1990 32.75288712
## 3700                                  Bangladesh  1990 32.75288712
## 3701                                  Bangladesh  1990 32.75288712
## 3702                                  Bangladesh  1990 32.75288712
## 3703                                  Bangladesh  1990 32.75288712
## 3707                                  Bangladesh  1990 32.75288712
## 3708                                  Bangladesh  1990 32.75288712
## 3709                                  Bangladesh  1990 32.75288712
## 3716                                    Barbados  1990  3.83177570
## 3717                                    Barbados  1990  3.83177570
## 3718                                    Barbados  1990  3.83177570
## 3719                                    Barbados  1990  3.83177570
## 3720                                    Barbados  1990  3.83177570
## 3721                                    Barbados  1990  3.83177570
## 3722                                    Barbados  1990  3.83177570
## 3723                                    Barbados  1990  3.83177570
## 3724                                    Barbados  1990  3.83177570
## 3725                                    Barbados  1990  3.83177570
## 3726                                    Barbados  1990  3.83177570
## 3727                                    Barbados  1990  3.83177570
## 3728                                    Barbados  1990  3.83177570
## 3729                                    Barbados  1990  3.83177570
## 3732                                    Barbados  1990  3.83177570
## 3733                                    Barbados  1990  3.83177570
## 3734                                    Barbados  1990  3.83177570
## 3735                                    Barbados  1990  3.83177570
## 3736                                    Barbados  1990  3.83177570
## 3737                                    Barbados  1990  3.83177570
## 3738                                    Barbados  1990  3.83177570
## 3739                                    Barbados  1990  3.83177570
## 3740                                    Barbados  1990  3.83177570
## 3744                                    Barbados  1990  3.83177570
## 3746                                    Barbados  1990  3.83177570
## 3747                                    Barbados  1990  3.83177570
## 3748                                    Barbados  1990  3.83177570
## 3750                                    Barbados  1990  3.83177570
## 3755                                    Barbados  1990  3.83177570
## 3756                                    Barbados  1990  3.83177570
## 3757                                    Barbados  1990  3.83177570
## 3767                                    Barbados  1990  3.83177570
## 3776                                    Barbados  1990  3.83177570
## 3777                                    Barbados  1990  3.83177570
## 3778                                    Barbados  1990  3.83177570
## 3779                                    Barbados  1990  3.83177570
## 3780                                    Barbados  1990  3.83177570
## 3781                                    Barbados  1990  3.83177570
## 3782                                    Barbados  1990  3.83177570
## 3783                                    Barbados  1990  3.83177570
## 3784                                    Barbados  1990  3.83177570
## 3785                                    Barbados  1990  3.83177570
## 3786                                    Barbados  1990  3.83177570
## 3795                                    Barbados  1990  3.83177570
## 3796                                    Barbados  1990  3.83177570
## 3797                                    Barbados  1990  3.83177570
## 3798                                    Barbados  1990  3.83177570
## 3799                                    Barbados  1990  3.83177570
## 3800                                    Barbados  1990  3.83177570
## 3814                                    Barbados  1990  3.83177570
## 3827                                    Barbados  1990  3.83177570
## 3829                                    Barbados  1990  3.83177570
## 3833                                    Barbados  1990  3.83177570
## 3834                                    Barbados  1990  3.83177570
## 3835                                    Barbados  1990  3.83177570
## 3836                                    Barbados  1990  3.83177570
## 3837                                    Barbados  1990  3.83177570
## 3842                                    Barbados  1990  3.83177570
## 3843                                    Barbados  1990  3.83177570
## 3844                                    Barbados  1990  3.83177570
## 3851                                     Belarus  1990 23.54502370
## 3852                                     Belarus  1990 23.54502370
## 3853                                     Belarus  1990 23.54502370
## 3854                                     Belarus  1990 23.54502370
## 3855                                     Belarus  1990 23.54502370
## 3856                                     Belarus  1990 23.54502370
## 3857                                     Belarus  1990 23.54502370
## 3858                                     Belarus  1990 23.54502370
## 3859                                     Belarus  1990 23.54502370
## 3861                                     Belarus  1990 23.54502370
## 3865                                     Belarus  1990 23.54502370
## 3866                                     Belarus  1990 23.54502370
## 3867                                     Belarus  1990 23.54502370
## 3868                                     Belarus  1990 23.54502370
## 3880                                     Belarus  1990 23.54502370
## 3883                                     Belarus  1990 23.54502370
## 3885                                     Belarus  1990 23.54502370
## 3890                                     Belarus  1990 23.54502370
## 3891                                     Belarus  1990 23.54502370
## 3904                                     Belarus  1990 23.54502370
## 3905                                     Belarus  1990 23.54502370
## 3913                                     Belarus  1990 23.54502370
## 3916                                     Belarus  1990 23.54502370
## 3917                                     Belarus  1990 23.54502370
## 3918                                     Belarus  1990 23.54502370
## 3919                                     Belarus  1990 23.54502370
## 3920                                     Belarus  1990 23.54502370
## 3921                                     Belarus  1990 23.54502370
## 3922                                     Belarus  1990 23.54502370
## 3923                                     Belarus  1990 23.54502370
## 3933                                     Belarus  1990 23.54502370
## 3934                                     Belarus  1990 23.54502370
## 3935                                     Belarus  1990 23.54502370
## 3936                                     Belarus  1990 23.54502370
## 3937                                     Belarus  1990 23.54502370
## 3955                                     Belarus  1990 23.54502370
## 3959                                     Belarus  1990 23.54502370
## 3966                                     Belarus  1990 23.54502370
## 3969                                     Belarus  1990 23.54502370
## 3978                                     Belarus  1990 23.54502370
## 3979                                     Belarus  1990 23.54502370
## 3980                                     Belarus  1990 23.54502370
## 3987                                      Belize  1990 19.98050682
## 3988                                      Belize  1990 19.98050682
## 3989                                      Belize  1990 19.98050682
## 3990                                      Belize  1990 19.98050682
## 3991                                      Belize  1990 19.98050682
## 3992                                      Belize  1990 19.98050682
## 3993                                      Belize  1990 19.98050682
## 3994                                      Belize  1990 19.98050682
## 3995                                      Belize  1990 19.98050682
## 3996                                      Belize  1990 19.98050682
## 3997                                      Belize  1990 19.98050682
## 3998                                      Belize  1990 19.98050682
## 4002                                      Belize  1990 19.98050682
## 4003                                      Belize  1990 19.98050682
## 4006                                      Belize  1990 19.98050682
## 4007                                      Belize  1990 19.98050682
## 4008                                      Belize  1990 19.98050682
## 4009                                      Belize  1990 19.98050682
## 4010                                      Belize  1990 19.98050682
## 4011                                      Belize  1990 19.98050682
## 4016                                      Belize  1990 19.98050682
## 4017                                      Belize  1990 19.98050682
## 4018                                      Belize  1990 19.98050682
## 4020                                      Belize  1990 19.98050682
## 4025                                      Belize  1990 19.98050682
## 4026                                      Belize  1990 19.98050682
## 4039                                      Belize  1990 19.98050682
## 4049                                      Belize  1990 19.98050682
## 4050                                      Belize  1990 19.98050682
## 4051                                      Belize  1990 19.98050682
## 4052                                      Belize  1990 19.98050682
## 4053                                      Belize  1990 19.98050682
## 4054                                      Belize  1990 19.98050682
## 4055                                      Belize  1990 19.98050682
## 4057                                      Belize  1990 19.98050682
## 4058                                      Belize  1990 19.98050682
## 4059                                      Belize  1990 19.98050682
## 4060                                      Belize  1990 19.98050682
## 4069                                      Belize  1990 19.98050682
## 4070                                      Belize  1990 19.98050682
## 4071                                      Belize  1990 19.98050682
## 4072                                      Belize  1990 19.98050682
## 4073                                      Belize  1990 19.98050682
## 4074                                      Belize  1990 19.98050682
## 4087                                      Belize  1990 19.98050682
## 4100                                      Belize  1990 19.98050682
## 4102                                      Belize  1990 19.98050682
## 4107                                      Belize  1990 19.98050682
## 4109                                      Belize  1990 19.98050682
## 4110                                      Belize  1990 19.98050682
## 4111                                      Belize  1990 19.98050682
## 4112                                      Belize  1990 19.98050682
## 4113                                      Belize  1990 19.98050682
## 4114                                      Belize  1990 19.98050682
## 4119                                      Belize  1990 19.98050682
## 4120                                      Belize  1990 19.98050682
## 4121                                      Belize  1990 19.98050682
## 4128                                       Benin  1990 34.65494536
## 4129                                       Benin  1990 34.65494536
## 4130                                       Benin  1990 34.65494536
## 4131                                       Benin  1990 34.65494536
## 4132                                       Benin  1990 34.65494536
## 4133                                       Benin  1990 34.65494536
## 4134                                       Benin  1990 34.65494536
## 4135                                       Benin  1990 34.65494536
## 4136                                       Benin  1990 34.65494536
## 4137                                       Benin  1990 34.65494536
## 4138                                       Benin  1990 34.65494536
## 4139                                       Benin  1990 34.65494536
## 4143                                       Benin  1990 34.65494536
## 4144                                       Benin  1990 34.65494536
## 4146                                       Benin  1990 34.65494536
## 4148                                       Benin  1990 34.65494536
## 4149                                       Benin  1990 34.65494536
## 4150                                       Benin  1990 34.65494536
## 4151                                       Benin  1990 34.65494536
## 4152                                       Benin  1990 34.65494536
## 4153                                       Benin  1990 34.65494536
## 4154                                       Benin  1990 34.65494536
## 4156                                       Benin  1990 34.65494536
## 4158                                       Benin  1990 34.65494536
## 4159                                       Benin  1990 34.65494536
## 4160                                       Benin  1990 34.65494536
## 4162                                       Benin  1990 34.65494536
## 4167                                       Benin  1990 34.65494536
## 4168                                       Benin  1990 34.65494536
## 4180                                       Benin  1990 34.65494536
## 4190                                       Benin  1990 34.65494536
## 4191                                       Benin  1990 34.65494536
## 4192                                       Benin  1990 34.65494536
## 4193                                       Benin  1990 34.65494536
## 4194                                       Benin  1990 34.65494536
## 4195                                       Benin  1990 34.65494536
## 4196                                       Benin  1990 34.65494536
## 4198                                       Benin  1990 34.65494536
## 4199                                       Benin  1990 34.65494536
## 4200                                       Benin  1990 34.65494536
## 4201                                       Benin  1990 34.65494536
## 4210                                       Benin  1990 34.65494536
## 4211                                       Benin  1990 34.65494536
## 4212                                       Benin  1990 34.65494536
## 4213                                       Benin  1990 34.65494536
## 4214                                       Benin  1990 34.65494536
## 4215                                       Benin  1990 34.65494536
## 4232                                       Benin  1990 34.65494536
## 4247                                       Benin  1990 34.65494536
## 4249                                       Benin  1990 34.65494536
## 4257                                       Benin  1990 34.65494536
## 4258                                       Benin  1990 34.65494536
## 4259                                       Benin  1990 34.65494536
## 4260                                       Benin  1990 34.65494536
## 4261                                       Benin  1990 34.65494536
## 4262                                       Benin  1990 34.65494536
## 4267                                       Benin  1990 34.65494536
## 4268                                       Benin  1990 34.65494536
## 4269                                       Benin  1990 34.65494536
## 4277                                      Bhutan  1990 35.27825443
## 4278                                      Bhutan  1990 35.27825443
## 4279                                      Bhutan  1990 35.27825443
## 4280                                      Bhutan  1990 35.27825443
## 4281                                      Bhutan  1990 35.27825443
## 4282                                      Bhutan  1990 35.27825443
## 4283                                      Bhutan  1990 35.27825443
## 4284                                      Bhutan  1990 35.27825443
## 4285                                      Bhutan  1990 35.27825443
## 4287                                      Bhutan  1990 35.27825443
## 4307                                      Bhutan  1990 35.27825443
## 4308                                      Bhutan  1990 35.27825443
## 4309                                      Bhutan  1990 35.27825443
## 4311                                      Bhutan  1990 35.27825443
## 4316                                      Bhutan  1990 35.27825443
## 4317                                      Bhutan  1990 35.27825443
## 4328                                      Bhutan  1990 35.27825443
## 4340                                      Bhutan  1990 35.27825443
## 4341                                      Bhutan  1990 35.27825443
## 4342                                      Bhutan  1990 35.27825443
## 4343                                      Bhutan  1990 35.27825443
## 4344                                      Bhutan  1990 35.27825443
## 4345                                      Bhutan  1990 35.27825443
## 4347                                      Bhutan  1990 35.27825443
## 4348                                      Bhutan  1990 35.27825443
## 4349                                      Bhutan  1990 35.27825443
## 4350                                      Bhutan  1990 35.27825443
## 4359                                      Bhutan  1990 35.27825443
## 4360                                      Bhutan  1990 35.27825443
## 4361                                      Bhutan  1990 35.27825443
## 4362                                      Bhutan  1990 35.27825443
## 4363                                      Bhutan  1990 35.27825443
## 4364                                      Bhutan  1990 35.27825443
## 4381                                      Bhutan  1990 35.27825443
## 4398                                      Bhutan  1990 35.27825443
## 4405                                      Bhutan  1990 35.27825443
## 4406                                      Bhutan  1990 35.27825443
## 4407                                      Bhutan  1990 35.27825443
## 4414                                      Bhutan  1990 35.27825443
## 4415                                      Bhutan  1990 35.27825443
## 4416                                      Bhutan  1990 35.27825443
## 4422            Bolivia (Plurinational State of)  1990 16.74085274
## 4423            Bolivia (Plurinational State of)  1990 16.74085274
## 4424            Bolivia (Plurinational State of)  1990 16.74085274
## 4425            Bolivia (Plurinational State of)  1990 16.74085274
## 4426            Bolivia (Plurinational State of)  1990 16.74085274
## 4427            Bolivia (Plurinational State of)  1990 16.74085274
## 4428            Bolivia (Plurinational State of)  1990 16.74085274
## 4429            Bolivia (Plurinational State of)  1990 16.74085274
## 4430            Bolivia (Plurinational State of)  1990 16.74085274
## 4431            Bolivia (Plurinational State of)  1990 16.74085274
## 4432            Bolivia (Plurinational State of)  1990 16.74085274
## 4433            Bolivia (Plurinational State of)  1990 16.74085274
## 4437            Bolivia (Plurinational State of)  1990 16.74085274
## 4438            Bolivia (Plurinational State of)  1990 16.74085274
## 4441            Bolivia (Plurinational State of)  1990 16.74085274
## 4442            Bolivia (Plurinational State of)  1990 16.74085274
## 4443            Bolivia (Plurinational State of)  1990 16.74085274
## 4444            Bolivia (Plurinational State of)  1990 16.74085274
## 4445            Bolivia (Plurinational State of)  1990 16.74085274
## 4446            Bolivia (Plurinational State of)  1990 16.74085274
## 4450            Bolivia (Plurinational State of)  1990 16.74085274
## 4451            Bolivia (Plurinational State of)  1990 16.74085274
## 4452            Bolivia (Plurinational State of)  1990 16.74085274
## 4453            Bolivia (Plurinational State of)  1990 16.74085274
## 4455            Bolivia (Plurinational State of)  1990 16.74085274
## 4460            Bolivia (Plurinational State of)  1990 16.74085274
## 4461            Bolivia (Plurinational State of)  1990 16.74085274
## 4472            Bolivia (Plurinational State of)  1990 16.74085274
## 4483            Bolivia (Plurinational State of)  1990 16.74085274
## 4484            Bolivia (Plurinational State of)  1990 16.74085274
## 4485            Bolivia (Plurinational State of)  1990 16.74085274
## 4486            Bolivia (Plurinational State of)  1990 16.74085274
## 4487            Bolivia (Plurinational State of)  1990 16.74085274
## 4488            Bolivia (Plurinational State of)  1990 16.74085274
## 4489            Bolivia (Plurinational State of)  1990 16.74085274
## 4491            Bolivia (Plurinational State of)  1990 16.74085274
## 4492            Bolivia (Plurinational State of)  1990 16.74085274
## 4493            Bolivia (Plurinational State of)  1990 16.74085274
## 4494            Bolivia (Plurinational State of)  1990 16.74085274
## 4503            Bolivia (Plurinational State of)  1990 16.74085274
## 4504            Bolivia (Plurinational State of)  1990 16.74085274
## 4505            Bolivia (Plurinational State of)  1990 16.74085274
## 4506            Bolivia (Plurinational State of)  1990 16.74085274
## 4507            Bolivia (Plurinational State of)  1990 16.74085274
## 4508            Bolivia (Plurinational State of)  1990 16.74085274
## 4525            Bolivia (Plurinational State of)  1990 16.74085274
## 4541            Bolivia (Plurinational State of)  1990 16.74085274
## 4548            Bolivia (Plurinational State of)  1990 16.74085274
## 4550            Bolivia (Plurinational State of)  1990 16.74085274
## 4551            Bolivia (Plurinational State of)  1990 16.74085274
## 4552            Bolivia (Plurinational State of)  1990 16.74085274
## 4553            Bolivia (Plurinational State of)  1990 16.74085274
## 4554            Bolivia (Plurinational State of)  1990 16.74085274
## 4555            Bolivia (Plurinational State of)  1990 16.74085274
## 4559            Bolivia (Plurinational State of)  1990 16.74085274
## 4560            Bolivia (Plurinational State of)  1990 16.74085274
## 4561            Bolivia (Plurinational State of)  1990 16.74085274
## 4568                                    Botswana  1990  4.85331347
## 4569                                    Botswana  1990  4.85331347
## 4570                                    Botswana  1990  4.85331347
## 4571                                    Botswana  1990  4.85331347
## 4572                                    Botswana  1990  4.85331347
## 4573                                    Botswana  1990  4.85331347
## 4574                                    Botswana  1990  4.85331347
## 4575                                    Botswana  1990  4.85331347
## 4576                                    Botswana  1990  4.85331347
## 4577                                    Botswana  1990  4.85331347
## 4578                                    Botswana  1990  4.85331347
## 4579                                    Botswana  1990  4.85331347
## 4580                                    Botswana  1990  4.85331347
## 4581                                    Botswana  1990  4.85331347
## 4582                                    Botswana  1990  4.85331347
## 4584                                    Botswana  1990  4.85331347
## 4585                                    Botswana  1990  4.85331347
## 4587                                    Botswana  1990  4.85331347
## 4588                                    Botswana  1990  4.85331347
## 4589                                    Botswana  1990  4.85331347
## 4590                                    Botswana  1990  4.85331347
## 4591                                    Botswana  1990  4.85331347
## 4592                                    Botswana  1990  4.85331347
## 4596                                    Botswana  1990  4.85331347
## 4598                                    Botswana  1990  4.85331347
## 4599                                    Botswana  1990  4.85331347
## 4600                                    Botswana  1990  4.85331347
## 4602                                    Botswana  1990  4.85331347
## 4607                                    Botswana  1990  4.85331347
## 4608                                    Botswana  1990  4.85331347
## 4618                                    Botswana  1990  4.85331347
## 4628                                    Botswana  1990  4.85331347
## 4629                                    Botswana  1990  4.85331347
## 4630                                    Botswana  1990  4.85331347
## 4631                                    Botswana  1990  4.85331347
## 4632                                    Botswana  1990  4.85331347
## 4633                                    Botswana  1990  4.85331347
## 4634                                    Botswana  1990  4.85331347
## 4636                                    Botswana  1990  4.85331347
## 4637                                    Botswana  1990  4.85331347
## 4638                                    Botswana  1990  4.85331347
## 4639                                    Botswana  1990  4.85331347
## 4648                                    Botswana  1990  4.85331347
## 4649                                    Botswana  1990  4.85331347
## 4650                                    Botswana  1990  4.85331347
## 4651                                    Botswana  1990  4.85331347
## 4652                                    Botswana  1990  4.85331347
## 4653                                    Botswana  1990  4.85331347
## 4671                                    Botswana  1990  4.85331347
## 4673                                    Botswana  1990  4.85331347
## 4675                                    Botswana  1990  4.85331347
## 4681                                    Botswana  1990  4.85331347
## 4682                                    Botswana  1990  4.85331347
## 4683                                    Botswana  1990  4.85331347
## 4684                                    Botswana  1990  4.85331347
## 4685                                    Botswana  1990  4.85331347
## 4686                                    Botswana  1990  4.85331347
## 4687                                    Botswana  1990  4.85331347
## 4691                                    Botswana  1990  4.85331347
## 4692                                    Botswana  1990  4.85331347
## 4693                                    Botswana  1990  4.85331347
## 4700                                      Brazil  1990  8.10000000
## 4701                                      Brazil  1990  8.10000000
## 4702                                      Brazil  1990  8.10000000
## 4703                                      Brazil  1990  8.10000000
## 4704                                      Brazil  1990  8.10000000
## 4705                                      Brazil  1990  8.10000000
## 4706                                      Brazil  1990  8.10000000
## 4707                                      Brazil  1990  8.10000000
## 4708                                      Brazil  1990  8.10000000
## 4709                                      Brazil  1990  8.10000000
## 4710                                      Brazil  1990  8.10000000
## 4711                                      Brazil  1990  8.10000000
## 4720                                      Brazil  1990  8.10000000
## 4721                                      Brazil  1990  8.10000000
## 4722                                      Brazil  1990  8.10000000
## 4723                                      Brazil  1990  8.10000000
## 4724                                      Brazil  1990  8.10000000
## 4725                                      Brazil  1990  8.10000000
## 4733                                      Brazil  1990  8.10000000
## 4734                                      Brazil  1990  8.10000000
## 4735                                      Brazil  1990  8.10000000
## 4737                                      Brazil  1990  8.10000000
## 4742                                      Brazil  1990  8.10000000
## 4743                                      Brazil  1990  8.10000000
## 4756                                      Brazil  1990  8.10000000
## 4766                                      Brazil  1990  8.10000000
## 4767                                      Brazil  1990  8.10000000
## 4768                                      Brazil  1990  8.10000000
## 4769                                      Brazil  1990  8.10000000
## 4770                                      Brazil  1990  8.10000000
## 4771                                      Brazil  1990  8.10000000
## 4772                                      Brazil  1990  8.10000000
## 4774                                      Brazil  1990  8.10000000
## 4775                                      Brazil  1990  8.10000000
## 4776                                      Brazil  1990  8.10000000
## 4777                                      Brazil  1990  8.10000000
## 4786                                      Brazil  1990  8.10000000
## 4787                                      Brazil  1990  8.10000000
## 4788                                      Brazil  1990  8.10000000
## 4789                                      Brazil  1990  8.10000000
## 4790                                      Brazil  1990  8.10000000
## 4791                                      Brazil  1990  8.10000000
## 4809                                      Brazil  1990  8.10000000
## 4824                                      Brazil  1990  8.10000000
## 4826                                      Brazil  1990  8.10000000
## 4833                                      Brazil  1990  8.10000000
## 4835                                      Brazil  1990  8.10000000
## 4836                                      Brazil  1990  8.10000000
## 4837                                      Brazil  1990  8.10000000
## 4838                                      Brazil  1990  8.10000000
## 4839                                      Brazil  1990  8.10000000
## 4840                                      Brazil  1990  8.10000000
## 4845                                      Brazil  1990  8.10000000
## 4846                                      Brazil  1990  8.10000000
## 4847                                      Brazil  1990  8.10000000
## 4854                           Brunei Darussalam  1990  0.96614167
## 4855                           Brunei Darussalam  1990  0.96614167
## 4856                           Brunei Darussalam  1990  0.96614167
## 4857                           Brunei Darussalam  1990  0.96614167
## 4858                           Brunei Darussalam  1990  0.96614167
## 4859                           Brunei Darussalam  1990  0.96614167
## 4860                           Brunei Darussalam  1990  0.96614167
## 4861                           Brunei Darussalam  1990  0.96614167
## 4862                           Brunei Darussalam  1990  0.96614167
## 4863                           Brunei Darussalam  1990  0.96614167
## 4864                           Brunei Darussalam  1990  0.96614167
## 4865                           Brunei Darussalam  1990  0.96614167
## 4866                           Brunei Darussalam  1990  0.96614167
## 4867                           Brunei Darussalam  1990  0.96614167
## 4868                           Brunei Darussalam  1990  0.96614167
## 4874                           Brunei Darussalam  1990  0.96614167
## 4875                           Brunei Darussalam  1990  0.96614167
## 4876                           Brunei Darussalam  1990  0.96614167
## 4877                           Brunei Darussalam  1990  0.96614167
## 4878                           Brunei Darussalam  1990  0.96614167
## 4879                           Brunei Darussalam  1990  0.96614167
## 4885                           Brunei Darussalam  1990  0.96614167
## 4886                           Brunei Darussalam  1990  0.96614167
## 4887                           Brunei Darussalam  1990  0.96614167
## 4889                           Brunei Darussalam  1990  0.96614167
## 4893                           Brunei Darussalam  1990  0.96614167
## 4894                           Brunei Darussalam  1990  0.96614167
## 4905                           Brunei Darussalam  1990  0.96614167
## 4913                           Brunei Darussalam  1990  0.96614167
## 4914                           Brunei Darussalam  1990  0.96614167
## 4915                           Brunei Darussalam  1990  0.96614167
## 4916                           Brunei Darussalam  1990  0.96614167
## 4917                           Brunei Darussalam  1990  0.96614167
## 4918                           Brunei Darussalam  1990  0.96614167
## 4919                           Brunei Darussalam  1990  0.96614167
## 4920                           Brunei Darussalam  1990  0.96614167
## 4921                           Brunei Darussalam  1990  0.96614167
## 4922                           Brunei Darussalam  1990  0.96614167
## 4931                           Brunei Darussalam  1990  0.96614167
## 4932                           Brunei Darussalam  1990  0.96614167
## 4933                           Brunei Darussalam  1990  0.96614167
## 4934                           Brunei Darussalam  1990  0.96614167
## 4935                           Brunei Darussalam  1990  0.96614167
## 4943                           Brunei Darussalam  1990  0.96614167
## 4947                           Brunei Darussalam  1990  0.96614167
## 4951                           Brunei Darussalam  1990  0.96614167
## 4953                           Brunei Darussalam  1990  0.96614167
## 4955                           Brunei Darussalam  1990  0.96614167
## 4960                           Brunei Darussalam  1990  0.96614167
## 4961                           Brunei Darussalam  1990  0.96614167
## 4962                           Brunei Darussalam  1990  0.96614167
## 4969                                    Bulgaria  1990 17.02671853
## 4970                                    Bulgaria  1990 17.02671853
## 4971                                    Bulgaria  1990 17.02671853
## 4972                                    Bulgaria  1990 17.02671853
## 4973                                    Bulgaria  1990 17.02671853
## 4974                                    Bulgaria  1990 17.02671853
## 4975                                    Bulgaria  1990 17.02671853
## 4976                                    Bulgaria  1990 17.02671853
## 4977                                    Bulgaria  1990 17.02671853
## 4978                                    Bulgaria  1990 17.02671853
## 4979                                    Bulgaria  1990 17.02671853
## 4980                                    Bulgaria  1990 17.02671853
## 4981                                    Bulgaria  1990 17.02671853
## 4982                                    Bulgaria  1990 17.02671853
## 4983                                    Bulgaria  1990 17.02671853
## 4984                                    Bulgaria  1990 17.02671853
## 4985                                    Bulgaria  1990 17.02671853
## 4986                                    Bulgaria  1990 17.02671853
## 4987                                    Bulgaria  1990 17.02671853
## 4989                                    Bulgaria  1990 17.02671853
## 4990                                    Bulgaria  1990 17.02671853
## 4991                                    Bulgaria  1990 17.02671853
## 4992                                    Bulgaria  1990 17.02671853
## 4993                                    Bulgaria  1990 17.02671853
## 4994                                    Bulgaria  1990 17.02671853
## 4995                                    Bulgaria  1990 17.02671853
## 5000                                    Bulgaria  1990 17.02671853
## 5001                                    Bulgaria  1990 17.02671853
## 5002                                    Bulgaria  1990 17.02671853
## 5003                                    Bulgaria  1990 17.02671853
## 5005                                    Bulgaria  1990 17.02671853
## 5006                                    Bulgaria  1990 17.02671853
## 5010                                    Bulgaria  1990 17.02671853
## 5011                                    Bulgaria  1990 17.02671853
## 5022                                    Bulgaria  1990 17.02671853
## 5023                                    Bulgaria  1990 17.02671853
## 5032                                    Bulgaria  1990 17.02671853
## 5033                                    Bulgaria  1990 17.02671853
## 5034                                    Bulgaria  1990 17.02671853
## 5035                                    Bulgaria  1990 17.02671853
## 5036                                    Bulgaria  1990 17.02671853
## 5037                                    Bulgaria  1990 17.02671853
## 5038                                    Bulgaria  1990 17.02671853
## 5039                                    Bulgaria  1990 17.02671853
## 5040                                    Bulgaria  1990 17.02671853
## 5041                                    Bulgaria  1990 17.02671853
## 5042                                    Bulgaria  1990 17.02671853
## 5052                                    Bulgaria  1990 17.02671853
## 5053                                    Bulgaria  1990 17.02671853
## 5054                                    Bulgaria  1990 17.02671853
## 5055                                    Bulgaria  1990 17.02671853
## 5056                                    Bulgaria  1990 17.02671853
## 5074                                    Bulgaria  1990 17.02671853
## 5075                                    Bulgaria  1990 17.02671853
## 5077                                    Bulgaria  1990 17.02671853
## 5083                                    Bulgaria  1990 17.02671853
## 5085                                    Bulgaria  1990 17.02671853
## 5086                                    Bulgaria  1990 17.02671853
## 5087                                    Bulgaria  1990 17.02671853
## 5088                                    Bulgaria  1990 17.02671853
## 5093                                    Bulgaria  1990 17.02671853
## 5094                                    Bulgaria  1990 17.02671853
## 5095                                    Bulgaria  1990 17.02671853
## 5103                                Burkina Faso  1990 29.14138952
## 5104                                Burkina Faso  1990 29.14138952
## 5105                                Burkina Faso  1990 29.14138952
## 5106                                Burkina Faso  1990 29.14138952
## 5107                                Burkina Faso  1990 29.14138952
## 5108                                Burkina Faso  1990 29.14138952
## 5109                                Burkina Faso  1990 29.14138952
## 5110                                Burkina Faso  1990 29.14138952
## 5111                                Burkina Faso  1990 29.14138952
## 5113                                Burkina Faso  1990 29.14138952
## 5114                                Burkina Faso  1990 29.14138952
## 5115                                Burkina Faso  1990 29.14138952
## 5117                                Burkina Faso  1990 29.14138952
## 5118                                Burkina Faso  1990 29.14138952
## 5119                                Burkina Faso  1990 29.14138952
## 5120                                Burkina Faso  1990 29.14138952
## 5128                                Burkina Faso  1990 29.14138952
## 5130                                Burkina Faso  1990 29.14138952
## 5131                                Burkina Faso  1990 29.14138952
## 5132                                Burkina Faso  1990 29.14138952
## 5133                                Burkina Faso  1990 29.14138952
## 5134                                Burkina Faso  1990 29.14138952
## 5140                                Burkina Faso  1990 29.14138952
## 5141                                Burkina Faso  1990 29.14138952
## 5153                                Burkina Faso  1990 29.14138952
## 5164                                Burkina Faso  1990 29.14138952
## 5165                                Burkina Faso  1990 29.14138952
## 5166                                Burkina Faso  1990 29.14138952
## 5167                                Burkina Faso  1990 29.14138952
## 5168                                Burkina Faso  1990 29.14138952
## 5169                                Burkina Faso  1990 29.14138952
## 5170                                Burkina Faso  1990 29.14138952
## 5172                                Burkina Faso  1990 29.14138952
## 5173                                Burkina Faso  1990 29.14138952
## 5174                                Burkina Faso  1990 29.14138952
## 5175                                Burkina Faso  1990 29.14138952
## 5184                                Burkina Faso  1990 29.14138952
## 5185                                Burkina Faso  1990 29.14138952
## 5186                                Burkina Faso  1990 29.14138952
## 5187                                Burkina Faso  1990 29.14138952
## 5188                                Burkina Faso  1990 29.14138952
## 5189                                Burkina Faso  1990 29.14138952
## 5206                                Burkina Faso  1990 29.14138952
## 5223                                Burkina Faso  1990 29.14138952
## 5232                                Burkina Faso  1990 29.14138952
## 5233                                Burkina Faso  1990 29.14138952
## 5234                                Burkina Faso  1990 29.14138952
## 5235                                Burkina Faso  1990 29.14138952
## 5237                                Burkina Faso  1990 29.14138952
## 5242                                Burkina Faso  1990 29.14138952
## 5243                                Burkina Faso  1990 29.14138952
## 5244                                Burkina Faso  1990 29.14138952
## 5250                                     Burundi  1990 55.87870030
## 5251                                     Burundi  1990 55.87870030
## 5252                                     Burundi  1990 55.87870030
## 5253                                     Burundi  1990 55.87870030
## 5254                                     Burundi  1990 55.87870030
## 5255                                     Burundi  1990 55.87870030
## 5256                                     Burundi  1990 55.87870030
## 5257                                     Burundi  1990 55.87870030
## 5258                                     Burundi  1990 55.87870030
## 5259                                     Burundi  1990 55.87870030
## 5260                                     Burundi  1990 55.87870030
## 5261                                     Burundi  1990 55.87870030
## 5262                                     Burundi  1990 55.87870030
## 5263                                     Burundi  1990 55.87870030
## 5264                                     Burundi  1990 55.87870030
## 5266                                     Burundi  1990 55.87870030
## 5267                                     Burundi  1990 55.87870030
## 5268                                     Burundi  1990 55.87870030
## 5269                                     Burundi  1990 55.87870030
## 5270                                     Burundi  1990 55.87870030
## 5271                                     Burundi  1990 55.87870030
## 5272                                     Burundi  1990 55.87870030
## 5273                                     Burundi  1990 55.87870030
## 5274                                     Burundi  1990 55.87870030
## 5275                                     Burundi  1990 55.87870030
## 5278                                     Burundi  1990 55.87870030
## 5280                                     Burundi  1990 55.87870030
## 5281                                     Burundi  1990 55.87870030
## 5282                                     Burundi  1990 55.87870030
## 5288                                     Burundi  1990 55.87870030
## 5289                                     Burundi  1990 55.87870030
## 5301                                     Burundi  1990 55.87870030
## 5311                                     Burundi  1990 55.87870030
## 5312                                     Burundi  1990 55.87870030
## 5313                                     Burundi  1990 55.87870030
## 5314                                     Burundi  1990 55.87870030
## 5315                                     Burundi  1990 55.87870030
## 5316                                     Burundi  1990 55.87870030
## 5317                                     Burundi  1990 55.87870030
## 5319                                     Burundi  1990 55.87870030
## 5320                                     Burundi  1990 55.87870030
## 5321                                     Burundi  1990 55.87870030
## 5322                                     Burundi  1990 55.87870030
## 5331                                     Burundi  1990 55.87870030
## 5332                                     Burundi  1990 55.87870030
## 5333                                     Burundi  1990 55.87870030
## 5334                                     Burundi  1990 55.87870030
## 5335                                     Burundi  1990 55.87870030
## 5336                                     Burundi  1990 55.87870030
## 5354                                     Burundi  1990 55.87870030
## 5369                                     Burundi  1990 55.87870030
## 5371                                     Burundi  1990 55.87870030
## 5378                                     Burundi  1990 55.87870030
## 5379                                     Burundi  1990 55.87870030
## 5380                                     Burundi  1990 55.87870030
## 5381                                     Burundi  1990 55.87870030
## 5382                                     Burundi  1990 55.87870030
## 5388                                     Burundi  1990 55.87870030
## 5389                                     Burundi  1990 55.87870030
## 5390                                     Burundi  1990 55.87870030
## 5397                                    Cameroon  1990 24.57539141
## 5398                                    Cameroon  1990 24.57539141
## 5399                                    Cameroon  1990 24.57539141
## 5400                                    Cameroon  1990 24.57539141
## 5401                                    Cameroon  1990 24.57539141
## 5402                                    Cameroon  1990 24.57539141
## 5403                                    Cameroon  1990 24.57539141
## 5404                                    Cameroon  1990 24.57539141
## 5405                                    Cameroon  1990 24.57539141
## 5406                                    Cameroon  1990 24.57539141
## 5407                                    Cameroon  1990 24.57539141
## 5408                                    Cameroon  1990 24.57539141
## 5409                                    Cameroon  1990 24.57539141
## 5411                                    Cameroon  1990 24.57539141
## 5412                                    Cameroon  1990 24.57539141
## 5413                                    Cameroon  1990 24.57539141
## 5414                                    Cameroon  1990 24.57539141
## 5415                                    Cameroon  1990 24.57539141
## 5417                                    Cameroon  1990 24.57539141
## 5418                                    Cameroon  1990 24.57539141
## 5419                                    Cameroon  1990 24.57539141
## 5420                                    Cameroon  1990 24.57539141
## 5421                                    Cameroon  1990 24.57539141
## 5422                                    Cameroon  1990 24.57539141
## 5423                                    Cameroon  1990 24.57539141
## 5425                                    Cameroon  1990 24.57539141
## 5426                                    Cameroon  1990 24.57539141
## 5427                                    Cameroon  1990 24.57539141
## 5428                                    Cameroon  1990 24.57539141
## 5429                                    Cameroon  1990 24.57539141
## 5431                                    Cameroon  1990 24.57539141
## 5436                                    Cameroon  1990 24.57539141
## 5437                                    Cameroon  1990 24.57539141
## 5448                                    Cameroon  1990 24.57539141
## 5460                                    Cameroon  1990 24.57539141
## 5461                                    Cameroon  1990 24.57539141
## 5462                                    Cameroon  1990 24.57539141
## 5463                                    Cameroon  1990 24.57539141
## 5464                                    Cameroon  1990 24.57539141
## 5465                                    Cameroon  1990 24.57539141
## 5466                                    Cameroon  1990 24.57539141
## 5468                                    Cameroon  1990 24.57539141
## 5469                                    Cameroon  1990 24.57539141
## 5470                                    Cameroon  1990 24.57539141
## 5471                                    Cameroon  1990 24.57539141
## 5480                                    Cameroon  1990 24.57539141
## 5481                                    Cameroon  1990 24.57539141
## 5482                                    Cameroon  1990 24.57539141
## 5483                                    Cameroon  1990 24.57539141
## 5484                                    Cameroon  1990 24.57539141
## 5485                                    Cameroon  1990 24.57539141
## 5502                                    Cameroon  1990 24.57539141
## 5517                                    Cameroon  1990 24.57539141
## 5519                                    Cameroon  1990 24.57539141
## 5525                                    Cameroon  1990 24.57539141
## 5527                                    Cameroon  1990 24.57539141
## 5528                                    Cameroon  1990 24.57539141
## 5529                                    Cameroon  1990 24.57539141
## 5530                                    Cameroon  1990 24.57539141
## 5531                                    Cameroon  1990 24.57539141
## 5532                                    Cameroon  1990 24.57539141
## 5537                                    Cameroon  1990 24.57539141
## 5538                                    Cameroon  1990 24.57539141
## 5539                                    Cameroon  1990 24.57539141
## 5546                    Central African Republic  1990 49.27621013
## 5547                    Central African Republic  1990 49.27621013
## 5548                    Central African Republic  1990 49.27621013
## 5549                    Central African Republic  1990 49.27621013
## 5550                    Central African Republic  1990 49.27621013
## 5551                    Central African Republic  1990 49.27621013
## 5552                    Central African Republic  1990 49.27621013
## 5553                    Central African Republic  1990 49.27621013
## 5554                    Central African Republic  1990 49.27621013
## 5555                    Central African Republic  1990 49.27621013
## 5556                    Central African Republic  1990 49.27621013
## 5557                    Central African Republic  1990 49.27621013
## 5558                    Central African Republic  1990 49.27621013
## 5559                    Central African Republic  1990 49.27621013
## 5560                    Central African Republic  1990 49.27621013
## 5562                    Central African Republic  1990 49.27621013
## 5563                    Central African Republic  1990 49.27621013
## 5564                    Central African Republic  1990 49.27621013
## 5566                    Central African Republic  1990 49.27621013
## 5567                    Central African Republic  1990 49.27621013
## 5568                    Central African Republic  1990 49.27621013
## 5569                    Central African Republic  1990 49.27621013
## 5570                    Central African Republic  1990 49.27621013
## 5571                    Central African Republic  1990 49.27621013
## 5572                    Central African Republic  1990 49.27621013
## 5574                    Central African Republic  1990 49.27621013
## 5575                    Central African Republic  1990 49.27621013
## 5576                    Central African Republic  1990 49.27621013
## 5577                    Central African Republic  1990 49.27621013
## 5578                    Central African Republic  1990 49.27621013
## 5584                    Central African Republic  1990 49.27621013
## 5585                    Central African Republic  1990 49.27621013
## 5596                    Central African Republic  1990 49.27621013
## 5607                    Central African Republic  1990 49.27621013
## 5608                    Central African Republic  1990 49.27621013
## 5609                    Central African Republic  1990 49.27621013
## 5610                    Central African Republic  1990 49.27621013
## 5611                    Central African Republic  1990 49.27621013
## 5612                    Central African Republic  1990 49.27621013
## 5613                    Central African Republic  1990 49.27621013
## 5615                    Central African Republic  1990 49.27621013
## 5616                    Central African Republic  1990 49.27621013
## 5617                    Central African Republic  1990 49.27621013
## 5618                    Central African Republic  1990 49.27621013
## 5627                    Central African Republic  1990 49.27621013
## 5628                    Central African Republic  1990 49.27621013
## 5629                    Central African Republic  1990 49.27621013
## 5630                    Central African Republic  1990 49.27621013
## 5631                    Central African Republic  1990 49.27621013
## 5632                    Central African Republic  1990 49.27621013
## 5649                    Central African Republic  1990 49.27621013
## 5664                    Central African Republic  1990 49.27621013
## 5666                    Central African Republic  1990 49.27621013
## 5673                    Central African Republic  1990 49.27621013
## 5674                    Central African Republic  1990 49.27621013
## 5675                    Central African Republic  1990 49.27621013
## 5676                    Central African Republic  1990 49.27621013
## 5677                    Central African Republic  1990 49.27621013
## 5678                    Central African Republic  1990 49.27621013
## 5683                    Central African Republic  1990 49.27621013
## 5684                    Central African Republic  1990 49.27621013
## 5685                    Central African Republic  1990 49.27621013
## 5691                                        Chad  1990 29.27986571
## 5692                                        Chad  1990 29.27986571
## 5693                                        Chad  1990 29.27986571
## 5694                                        Chad  1990 29.27986571
## 5695                                        Chad  1990 29.27986571
## 5696                                        Chad  1990 29.27986571
## 5697                                        Chad  1990 29.27986571
## 5698                                        Chad  1990 29.27986571
## 5699                                        Chad  1990 29.27986571
## 5701                                        Chad  1990 29.27986571
## 5706                                        Chad  1990 29.27986571
## 5707                                        Chad  1990 29.27986571
## 5716                                        Chad  1990 29.27986571
## 5718                                        Chad  1990 29.27986571
## 5719                                        Chad  1990 29.27986571
## 5720                                        Chad  1990 29.27986571
## 5721                                        Chad  1990 29.27986571
## 5722                                        Chad  1990 29.27986571
## 5728                                        Chad  1990 29.27986571
## 5729                                        Chad  1990 29.27986571
## 5740                                        Chad  1990 29.27986571
## 5751                                        Chad  1990 29.27986571
## 5752                                        Chad  1990 29.27986571
## 5753                                        Chad  1990 29.27986571
## 5754                                        Chad  1990 29.27986571
## 5755                                        Chad  1990 29.27986571
## 5756                                        Chad  1990 29.27986571
## 5757                                        Chad  1990 29.27986571
## 5759                                        Chad  1990 29.27986571
## 5760                                        Chad  1990 29.27986571
## 5761                                        Chad  1990 29.27986571
## 5762                                        Chad  1990 29.27986571
## 5771                                        Chad  1990 29.27986571
## 5772                                        Chad  1990 29.27986571
## 5773                                        Chad  1990 29.27986571
## 5774                                        Chad  1990 29.27986571
## 5775                                        Chad  1990 29.27986571
## 5776                                        Chad  1990 29.27986571
## 5793                                        Chad  1990 29.27986571
## 5808                                        Chad  1990 29.27986571
## 5810                                        Chad  1990 29.27986571
## 5816                                        Chad  1990 29.27986571
## 5817                                        Chad  1990 29.27986571
## 5818                                        Chad  1990 29.27986571
## 5819                                        Chad  1990 29.27986571
## 5820                                        Chad  1990 29.27986571
## 5821                                        Chad  1990 29.27986571
## 5827                                        Chad  1990 29.27986571
## 5828                                        Chad  1990 29.27986571
## 5829                                        Chad  1990 29.27986571
## 5835                                       Chile  1990  9.14694219
## 5836                                       Chile  1990  9.14694219
## 5837                                       Chile  1990  9.14694219
## 5838                                       Chile  1990  9.14694219
## 5839                                       Chile  1990  9.14694219
## 5840                                       Chile  1990  9.14694219
## 5841                                       Chile  1990  9.14694219
## 5842                                       Chile  1990  9.14694219
## 5843                                       Chile  1990  9.14694219
## 5844                                       Chile  1990  9.14694219
## 5845                                       Chile  1990  9.14694219
## 5846                                       Chile  1990  9.14694219
## 5847                                       Chile  1990  9.14694219
## 5848                                       Chile  1990  9.14694219
## 5849                                       Chile  1990  9.14694219
## 5850                                       Chile  1990  9.14694219
## 5851                                       Chile  1990  9.14694219
## 5852                                       Chile  1990  9.14694219
## 5855                                       Chile  1990  9.14694219
## 5856                                       Chile  1990  9.14694219
## 5857                                       Chile  1990  9.14694219
## 5858                                       Chile  1990  9.14694219
## 5859                                       Chile  1990  9.14694219
## 5860                                       Chile  1990  9.14694219
## 5868                                       Chile  1990  9.14694219
## 5869                                       Chile  1990  9.14694219
## 5870                                       Chile  1990  9.14694219
## 5872                                       Chile  1990  9.14694219
## 5877                                       Chile  1990  9.14694219
## 5878                                       Chile  1990  9.14694219
## 5880                                       Chile  1990  9.14694219
## 5881                                       Chile  1990  9.14694219
## 5883                                       Chile  1990  9.14694219
## 5885                                       Chile  1990  9.14694219
## 5886                                       Chile  1990  9.14694219
## 5888                                       Chile  1990  9.14694219
## 5897                                       Chile  1990  9.14694219
## 5898                                       Chile  1990  9.14694219
## 5899                                       Chile  1990  9.14694219
## 5900                                       Chile  1990  9.14694219
## 5901                                       Chile  1990  9.14694219
## 5902                                       Chile  1990  9.14694219
## 5903                                       Chile  1990  9.14694219
## 5904                                       Chile  1990  9.14694219
## 5905                                       Chile  1990  9.14694219
## 5906                                       Chile  1990  9.14694219
## 5907                                       Chile  1990  9.14694219
## 5916                                       Chile  1990  9.14694219
## 5917                                       Chile  1990  9.14694219
## 5918                                       Chile  1990  9.14694219
## 5919                                       Chile  1990  9.14694219
## 5920                                       Chile  1990  9.14694219
## 5921                                       Chile  1990  9.14694219
## 5938                                       Chile  1990  9.14694219
## 5940                                       Chile  1990  9.14694219
## 5942                                       Chile  1990  9.14694219
## 5949                                       Chile  1990  9.14694219
## 5951                                       Chile  1990  9.14694219
## 5952                                       Chile  1990  9.14694219
## 5953                                       Chile  1990  9.14694219
## 5954                                       Chile  1990  9.14694219
## 5955                                       Chile  1990  9.14694219
## 5960                                       Chile  1990  9.14694219
## 5961                                       Chile  1990  9.14694219
## 5962                                       Chile  1990  9.14694219
## 5969                                       China  1990 26.58430812
## 5970                                       China  1990 26.58430812
## 5971                                       China  1990 26.58430812
## 5972                                       China  1990 26.58430812
## 5973                                       China  1990 26.58430812
## 5974                                       China  1990 26.58430812
## 5975                                       China  1990 26.58430812
## 5976                                       China  1990 26.58430812
## 5977                                       China  1990 26.58430812
## 5978                                       China  1990 26.58430812
## 5979                                       China  1990 26.58430812
## 5980                                       China  1990 26.58430812
## 5981                                       China  1990 26.58430812
## 5982                                       China  1990 26.58430812
## 5984                                       China  1990 26.58430812
## 5985                                       China  1990 26.58430812
## 5986                                       China  1990 26.58430812
## 5987                                       China  1990 26.58430812
## 5988                                       China  1990 26.58430812
## 5989                                       China  1990 26.58430812
## 5990                                       China  1990 26.58430812
## 5991                                       China  1990 26.58430812
## 5992                                       China  1990 26.58430812
## 5993                                       China  1990 26.58430812
## 5994                                       China  1990 26.58430812
## 5995                                       China  1990 26.58430812
## 5999                                       China  1990 26.58430812
## 6000                                       China  1990 26.58430812
## 6001                                       China  1990 26.58430812
## 6002                                       China  1990 26.58430812
## 6003                                       China  1990 26.58430812
## 6005                                       China  1990 26.58430812
## 6006                                       China  1990 26.58430812
## 6010                                       China  1990 26.58430812
## 6011                                       China  1990 26.58430812
## 6021                                       China  1990 26.58430812
## 6022                                       China  1990 26.58430812
## 6030                                       China  1990 26.58430812
## 6031                                       China  1990 26.58430812
## 6032                                       China  1990 26.58430812
## 6033                                       China  1990 26.58430812
## 6034                                       China  1990 26.58430812
## 6035                                       China  1990 26.58430812
## 6037                                       China  1990 26.58430812
## 6038                                       China  1990 26.58430812
## 6039                                       China  1990 26.58430812
## 6040                                       China  1990 26.58430812
## 6048                                       China  1990 26.58430812
## 6049                                       China  1990 26.58430812
## 6050                                       China  1990 26.58430812
## 6051                                       China  1990 26.58430812
## 6052                                       China  1990 26.58430812
## 6053                                       China  1990 26.58430812
## 6070                                       China  1990 26.58430812
## 6085                                       China  1990 26.58430812
## 6087                                       China  1990 26.58430812
## 6093                                       China  1990 26.58430812
## 6094                                       China  1990 26.58430812
## 6095                                       China  1990 26.58430812
## 6096                                       China  1990 26.58430812
## 6097                                       China  1990 26.58430812
## 6098                                       China  1990 26.58430812
## 6099                                       China  1990 26.58430812
## 6103                                       China  1990 26.58430812
## 6104                                       China  1990 26.58430812
## 6105                                       China  1990 26.58430812
## 6111                                    Colombia  1990 16.74809279
## 6112                                    Colombia  1990 16.74809279
## 6113                                    Colombia  1990 16.74809279
## 6114                                    Colombia  1990 16.74809279
## 6115                                    Colombia  1990 16.74809279
## 6116                                    Colombia  1990 16.74809279
## 6117                                    Colombia  1990 16.74809279
## 6118                                    Colombia  1990 16.74809279
## 6119                                    Colombia  1990 16.74809279
## 6120                                    Colombia  1990 16.74809279
## 6121                                    Colombia  1990 16.74809279
## 6122                                    Colombia  1990 16.74809279
## 6123                                    Colombia  1990 16.74809279
## 6124                                    Colombia  1990 16.74809279
## 6127                                    Colombia  1990 16.74809279
## 6129                                    Colombia  1990 16.74809279
## 6131                                    Colombia  1990 16.74809279
## 6132                                    Colombia  1990 16.74809279
## 6133                                    Colombia  1990 16.74809279
## 6134                                    Colombia  1990 16.74809279
## 6135                                    Colombia  1990 16.74809279
## 6136                                    Colombia  1990 16.74809279
## 6143                                    Colombia  1990 16.74809279
## 6145                                    Colombia  1990 16.74809279
## 6146                                    Colombia  1990 16.74809279
## 6147                                    Colombia  1990 16.74809279
## 6149                                    Colombia  1990 16.74809279
## 6154                                    Colombia  1990 16.74809279
## 6155                                    Colombia  1990 16.74809279
## 6156                                    Colombia  1990 16.74809279
## 6158                                    Colombia  1990 16.74809279
## 6167                                    Colombia  1990 16.74809279
## 6168                                    Colombia  1990 16.74809279
## 6172                                    Colombia  1990 16.74809279
## 6177                                    Colombia  1990 16.74809279
## 6178                                    Colombia  1990 16.74809279
## 6179                                    Colombia  1990 16.74809279
## 6180                                    Colombia  1990 16.74809279
## 6181                                    Colombia  1990 16.74809279
## 6182                                    Colombia  1990 16.74809279
## 6183                                    Colombia  1990 16.74809279
## 6185                                    Colombia  1990 16.74809279
## 6186                                    Colombia  1990 16.74809279
## 6187                                    Colombia  1990 16.74809279
## 6188                                    Colombia  1990 16.74809279
## 6197                                    Colombia  1990 16.74809279
## 6198                                    Colombia  1990 16.74809279
## 6199                                    Colombia  1990 16.74809279
## 6200                                    Colombia  1990 16.74809279
## 6201                                    Colombia  1990 16.74809279
## 6202                                    Colombia  1990 16.74809279
## 6220                                    Colombia  1990 16.74809279
## 6235                                    Colombia  1990 16.74809279
## 6237                                    Colombia  1990 16.74809279
## 6244                                    Colombia  1990 16.74809279
## 6246                                    Colombia  1990 16.74809279
## 6247                                    Colombia  1990 16.74809279
## 6248                                    Colombia  1990 16.74809279
## 6249                                    Colombia  1990 16.74809279
## 6250                                    Colombia  1990 16.74809279
## 6251                                    Colombia  1990 16.74809279
## 6256                                    Colombia  1990 16.74809279
## 6257                                    Colombia  1990 16.74809279
## 6258                                    Colombia  1990 16.74809279
## 6265                                       Congo  1990 12.86089239
## 6266                                       Congo  1990 12.86089239
## 6267                                       Congo  1990 12.86089239
## 6268                                       Congo  1990 12.86089239
## 6269                                       Congo  1990 12.86089239
## 6270                                       Congo  1990 12.86089239
## 6271                                       Congo  1990 12.86089239
## 6272                                       Congo  1990 12.86089239
## 6273                                       Congo  1990 12.86089239
## 6274                                       Congo  1990 12.86089239
## 6275                                       Congo  1990 12.86089239
## 6276                                       Congo  1990 12.86089239
## 6277                                       Congo  1990 12.86089239
## 6278                                       Congo  1990 12.86089239
## 6280                                       Congo  1990 12.86089239
## 6281                                       Congo  1990 12.86089239
## 6282                                       Congo  1990 12.86089239
## 6283                                       Congo  1990 12.86089239
## 6285                                       Congo  1990 12.86089239
## 6286                                       Congo  1990 12.86089239
## 6287                                       Congo  1990 12.86089239
## 6288                                       Congo  1990 12.86089239
## 6289                                       Congo  1990 12.86089239
## 6290                                       Congo  1990 12.86089239
## 6293                                       Congo  1990 12.86089239
## 6295                                       Congo  1990 12.86089239
## 6296                                       Congo  1990 12.86089239
## 6297                                       Congo  1990 12.86089239
## 6299                                       Congo  1990 12.86089239
## 6303                                       Congo  1990 12.86089239
## 6304                                       Congo  1990 12.86089239
## 6315                                       Congo  1990 12.86089239
## 6325                                       Congo  1990 12.86089239
## 6326                                       Congo  1990 12.86089239
## 6327                                       Congo  1990 12.86089239
## 6328                                       Congo  1990 12.86089239
## 6329                                       Congo  1990 12.86089239
## 6330                                       Congo  1990 12.86089239
## 6331                                       Congo  1990 12.86089239
## 6333                                       Congo  1990 12.86089239
## 6334                                       Congo  1990 12.86089239
## 6335                                       Congo  1990 12.86089239
## 6336                                       Congo  1990 12.86089239
## 6345                                       Congo  1990 12.86089239
## 6346                                       Congo  1990 12.86089239
## 6347                                       Congo  1990 12.86089239
## 6348                                       Congo  1990 12.86089239
## 6349                                       Congo  1990 12.86089239
## 6350                                       Congo  1990 12.86089239
## 6367                                       Congo  1990 12.86089239
## 6382                                       Congo  1990 12.86089239
## 6384                                       Congo  1990 12.86089239
## 6392                                       Congo  1990 12.86089239
## 6393                                       Congo  1990 12.86089239
## 6394                                       Congo  1990 12.86089239
## 6395                                       Congo  1990 12.86089239
## 6396                                       Congo  1990 12.86089239
## 6397                                       Congo  1990 12.86089239
## 6402                                       Congo  1990 12.86089239
## 6403                                       Congo  1990 12.86089239
## 6404                                       Congo  1990 12.86089239
## 6411                                  Costa Rica  1990 12.27183637
## 6412                                  Costa Rica  1990 12.27183637
## 6413                                  Costa Rica  1990 12.27183637
## 6414                                  Costa Rica  1990 12.27183637
## 6415                                  Costa Rica  1990 12.27183637
## 6416                                  Costa Rica  1990 12.27183637
## 6417                                  Costa Rica  1990 12.27183637
## 6418                                  Costa Rica  1990 12.27183637
## 6419                                  Costa Rica  1990 12.27183637
## 6420                                  Costa Rica  1990 12.27183637
## 6421                                  Costa Rica  1990 12.27183637
## 6422                                  Costa Rica  1990 12.27183637
## 6426                                  Costa Rica  1990 12.27183637
## 6427                                  Costa Rica  1990 12.27183637
## 6428                                  Costa Rica  1990 12.27183637
## 6429                                  Costa Rica  1990 12.27183637
## 6431                                  Costa Rica  1990 12.27183637
## 6432                                  Costa Rica  1990 12.27183637
## 6433                                  Costa Rica  1990 12.27183637
## 6434                                  Costa Rica  1990 12.27183637
## 6435                                  Costa Rica  1990 12.27183637
## 6436                                  Costa Rica  1990 12.27183637
## 6437                                  Costa Rica  1990 12.27183637
## 6443                                  Costa Rica  1990 12.27183637
## 6444                                  Costa Rica  1990 12.27183637
## 6445                                  Costa Rica  1990 12.27183637
## 6446                                  Costa Rica  1990 12.27183637
## 6447                                  Costa Rica  1990 12.27183637
## 6449                                  Costa Rica  1990 12.27183637
## 6454                                  Costa Rica  1990 12.27183637
## 6455                                  Costa Rica  1990 12.27183637
## 6459                                  Costa Rica  1990 12.27183637
## 6460                                  Costa Rica  1990 12.27183637
## 6468                                  Costa Rica  1990 12.27183637
## 6478                                  Costa Rica  1990 12.27183637
## 6479                                  Costa Rica  1990 12.27183637
## 6480                                  Costa Rica  1990 12.27183637
## 6481                                  Costa Rica  1990 12.27183637
## 6482                                  Costa Rica  1990 12.27183637
## 6483                                  Costa Rica  1990 12.27183637
## 6484                                  Costa Rica  1990 12.27183637
## 6486                                  Costa Rica  1990 12.27183637
## 6487                                  Costa Rica  1990 12.27183637
## 6488                                  Costa Rica  1990 12.27183637
## 6489                                  Costa Rica  1990 12.27183637
## 6498                                  Costa Rica  1990 12.27183637
## 6499                                  Costa Rica  1990 12.27183637
## 6500                                  Costa Rica  1990 12.27183637
## 6501                                  Costa Rica  1990 12.27183637
## 6502                                  Costa Rica  1990 12.27183637
## 6503                                  Costa Rica  1990 12.27183637
## 6521                                  Costa Rica  1990 12.27183637
## 6523                                  Costa Rica  1990 12.27183637
## 6525                                  Costa Rica  1990 12.27183637
## 6531                                  Costa Rica  1990 12.27183637
## 6533                                  Costa Rica  1990 12.27183637
## 6534                                  Costa Rica  1990 12.27183637
## 6535                                  Costa Rica  1990 12.27183637
## 6536                                  Costa Rica  1990 12.27183637
## 6537                                  Costa Rica  1990 12.27183637
## 6538                                  Costa Rica  1990 12.27183637
## 6543                                  Costa Rica  1990 12.27183637
## 6544                                  Costa Rica  1990 12.27183637
## 6545                                  Costa Rica  1990 12.27183637
## 6552                                        Cuba  1990 13.99482791
## 6553                                        Cuba  1990 13.99482791
## 6554                                        Cuba  1990 13.99482791
## 6555                                        Cuba  1990 13.99482791
## 6556                                        Cuba  1990 13.99482791
## 6557                                        Cuba  1990 13.99482791
## 6558                                        Cuba  1990 13.99482791
## 6559                                        Cuba  1990 13.99482791
## 6560                                        Cuba  1990 13.99482791
## 6561                                        Cuba  1990 13.99482791
## 6562                                        Cuba  1990 13.99482791
## 6563                                        Cuba  1990 13.99482791
## 6564                                        Cuba  1990 13.99482791
## 6565                                        Cuba  1990 13.99482791
## 6567                                        Cuba  1990 13.99482791
## 6568                                        Cuba  1990 13.99482791
## 6569                                        Cuba  1990 13.99482791
## 6570                                        Cuba  1990 13.99482791
## 6572                                        Cuba  1990 13.99482791
## 6573                                        Cuba  1990 13.99482791
## 6574                                        Cuba  1990 13.99482791
## 6575                                        Cuba  1990 13.99482791
## 6576                                        Cuba  1990 13.99482791
## 6577                                        Cuba  1990 13.99482791
## 6578                                        Cuba  1990 13.99482791
## 6580                                        Cuba  1990 13.99482791
## 6581                                        Cuba  1990 13.99482791
## 6582                                        Cuba  1990 13.99482791
## 6583                                        Cuba  1990 13.99482791
## 6585                                        Cuba  1990 13.99482791
## 6590                                        Cuba  1990 13.99482791
## 6591                                        Cuba  1990 13.99482791
## 6602                                        Cuba  1990 13.99482791
## 6603                                        Cuba  1990 13.99482791
## 6609                                        Cuba  1990 13.99482791
## 6610                                        Cuba  1990 13.99482791
## 6611                                        Cuba  1990 13.99482791
## 6612                                        Cuba  1990 13.99482791
## 6613                                        Cuba  1990 13.99482791
## 6614                                        Cuba  1990 13.99482791
## 6615                                        Cuba  1990 13.99482791
## 6616                                        Cuba  1990 13.99482791
## 6617                                        Cuba  1990 13.99482791
## 6618                                        Cuba  1990 13.99482791
## 6619                                        Cuba  1990 13.99482791
## 6628                                        Cuba  1990 13.99482791
## 6629                                        Cuba  1990 13.99482791
## 6630                                        Cuba  1990 13.99482791
## 6640                                        Cuba  1990 13.99482791
## 6643                                        Cuba  1990 13.99482791
## 6648                                        Cuba  1990 13.99482791
## 6650                                        Cuba  1990 13.99482791
## 6651                                        Cuba  1990 13.99482791
## 6655                                        Cuba  1990 13.99482791
## 6656                                        Cuba  1990 13.99482791
## 6657                                        Cuba  1990 13.99482791
## 6662                                      Cyprus  1990  6.85917678
## 6663                                      Cyprus  1990  6.85917678
## 6664                                      Cyprus  1990  6.85917678
## 6665                                      Cyprus  1990  6.85917678
## 6666                                      Cyprus  1990  6.85917678
## 6667                                      Cyprus  1990  6.85917678
## 6668                                      Cyprus  1990  6.85917678
## 6669                                      Cyprus  1990  6.85917678
## 6670                                      Cyprus  1990  6.85917678
## 6671                                      Cyprus  1990  6.85917678
## 6672                                      Cyprus  1990  6.85917678
## 6673                                      Cyprus  1990  6.85917678
## 6674                                      Cyprus  1990  6.85917678
## 6675                                      Cyprus  1990  6.85917678
## 6676                                      Cyprus  1990  6.85917678
## 6677                                      Cyprus  1990  6.85917678
## 6678                                      Cyprus  1990  6.85917678
## 6679                                      Cyprus  1990  6.85917678
## 6680                                      Cyprus  1990  6.85917678
## 6682                                      Cyprus  1990  6.85917678
## 6683                                      Cyprus  1990  6.85917678
## 6684                                      Cyprus  1990  6.85917678
## 6685                                      Cyprus  1990  6.85917678
## 6686                                      Cyprus  1990  6.85917678
## 6687                                      Cyprus  1990  6.85917678
## 6693                                      Cyprus  1990  6.85917678
## 6695                                      Cyprus  1990  6.85917678
## 6696                                      Cyprus  1990  6.85917678
## 6697                                      Cyprus  1990  6.85917678
## 6699                                      Cyprus  1990  6.85917678
## 6700                                      Cyprus  1990  6.85917678
## 6704                                      Cyprus  1990  6.85917678
## 6705                                      Cyprus  1990  6.85917678
## 6716                                      Cyprus  1990  6.85917678
## 6717                                      Cyprus  1990  6.85917678
## 6726                                      Cyprus  1990  6.85917678
## 6727                                      Cyprus  1990  6.85917678
## 6728                                      Cyprus  1990  6.85917678
## 6729                                      Cyprus  1990  6.85917678
## 6730                                      Cyprus  1990  6.85917678
## 6731                                      Cyprus  1990  6.85917678
## 6732                                      Cyprus  1990  6.85917678
## 6733                                      Cyprus  1990  6.85917678
## 6734                                      Cyprus  1990  6.85917678
## 6735                                      Cyprus  1990  6.85917678
## 6745                                      Cyprus  1990  6.85917678
## 6746                                      Cyprus  1990  6.85917678
## 6747                                      Cyprus  1990  6.85917678
## 6748                                      Cyprus  1990  6.85917678
## 6749                                      Cyprus  1990  6.85917678
## 6767                                      Cyprus  1990  6.85917678
## 6768                                      Cyprus  1990  6.85917678
## 6770                                      Cyprus  1990  6.85917678
## 6777                                      Cyprus  1990  6.85917678
## 6779                                      Cyprus  1990  6.85917678
## 6780                                      Cyprus  1990  6.85917678
## 6781                                      Cyprus  1990  6.85917678
## 6782                                      Cyprus  1990  6.85917678
## 6783                                      Cyprus  1990  6.85917678
## 6787                                      Cyprus  1990  6.85917678
## 6788                                      Cyprus  1990  6.85917678
## 6789                                      Cyprus  1990  6.85917678
## 6797                                     Denmark  1990  3.78675169
## 6798                                     Denmark  1990  3.78675169
## 6799                                     Denmark  1990  3.78675169
## 6800                                     Denmark  1990  3.78675169
## 6801                                     Denmark  1990  3.78675169
## 6802                                     Denmark  1990  3.78675169
## 6803                                     Denmark  1990  3.78675169
## 6804                                     Denmark  1990  3.78675169
## 6805                                     Denmark  1990  3.78675169
## 6806                                     Denmark  1990  3.78675169
## 6807                                     Denmark  1990  3.78675169
## 6808                                     Denmark  1990  3.78675169
## 6809                                     Denmark  1990  3.78675169
## 6810                                     Denmark  1990  3.78675169
## 6812                                     Denmark  1990  3.78675169
## 6813                                     Denmark  1990  3.78675169
## 6814                                     Denmark  1990  3.78675169
## 6815                                     Denmark  1990  3.78675169
## 6816                                     Denmark  1990  3.78675169
## 6817                                     Denmark  1990  3.78675169
## 6818                                     Denmark  1990  3.78675169
## 6819                                     Denmark  1990  3.78675169
## 6820                                     Denmark  1990  3.78675169
## 6821                                     Denmark  1990  3.78675169
## 6822                                     Denmark  1990  3.78675169
## 6827                                     Denmark  1990  3.78675169
## 6829                                     Denmark  1990  3.78675169
## 6830                                     Denmark  1990  3.78675169
## 6831                                     Denmark  1990  3.78675169
## 6833                                     Denmark  1990  3.78675169
## 6834                                     Denmark  1990  3.78675169
## 6838                                     Denmark  1990  3.78675169
## 6839                                     Denmark  1990  3.78675169
## 6849                                     Denmark  1990  3.78675169
## 6859                                     Denmark  1990  3.78675169
## 6860                                     Denmark  1990  3.78675169
## 6861                                     Denmark  1990  3.78675169
## 6862                                     Denmark  1990  3.78675169
## 6863                                     Denmark  1990  3.78675169
## 6864                                     Denmark  1990  3.78675169
## 6865                                     Denmark  1990  3.78675169
## 6866                                     Denmark  1990  3.78675169
## 6867                                     Denmark  1990  3.78675169
## 6868                                     Denmark  1990  3.78675169
## 6878                                     Denmark  1990  3.78675169
## 6879                                     Denmark  1990  3.78675169
## 6880                                     Denmark  1990  3.78675169
## 6881                                     Denmark  1990  3.78675169
## 6882                                     Denmark  1990  3.78675169
## 6900                                     Denmark  1990  3.78675169
## 6901                                     Denmark  1990  3.78675169
## 6903                                     Denmark  1990  3.78675169
## 6910                                     Denmark  1990  3.78675169
## 6912                                     Denmark  1990  3.78675169
## 6913                                     Denmark  1990  3.78675169
## 6914                                     Denmark  1990  3.78675169
## 6919                                     Denmark  1990  3.78675169
## 6920                                     Denmark  1990  3.78675169
## 6921                                     Denmark  1990  3.78675169
## 6929                                    Djibouti  1990  3.06195760
## 6930                                    Djibouti  1990  3.06195760
## 6931                                    Djibouti  1990  3.06195760
## 6932                                    Djibouti  1990  3.06195760
## 6933                                    Djibouti  1990  3.06195760
## 6934                                    Djibouti  1990  3.06195760
## 6935                                    Djibouti  1990  3.06195760
## 6936                                    Djibouti  1990  3.06195760
## 6937                                    Djibouti  1990  3.06195760
## 6939                                    Djibouti  1990  3.06195760
## 6940                                    Djibouti  1990  3.06195760
## 6941                                    Djibouti  1990  3.06195760
## 6943                                    Djibouti  1990  3.06195760
## 6944                                    Djibouti  1990  3.06195760
## 6945                                    Djibouti  1990  3.06195760
## 6948                                    Djibouti  1990  3.06195760
## 6950                                    Djibouti  1990  3.06195760
## 6953                                    Djibouti  1990  3.06195760
## 6954                                    Djibouti  1990  3.06195760
## 6956                                    Djibouti  1990  3.06195760
## 6961                                    Djibouti  1990  3.06195760
## 6962                                    Djibouti  1990  3.06195760
## 6969                                    Djibouti  1990  3.06195760
## 6978                                    Djibouti  1990  3.06195760
## 6979                                    Djibouti  1990  3.06195760
## 6980                                    Djibouti  1990  3.06195760
## 6981                                    Djibouti  1990  3.06195760
## 6982                                    Djibouti  1990  3.06195760
## 6983                                    Djibouti  1990  3.06195760
## 6984                                    Djibouti  1990  3.06195760
## 6986                                    Djibouti  1990  3.06195760
## 6987                                    Djibouti  1990  3.06195760
## 6988                                    Djibouti  1990  3.06195760
## 6989                                    Djibouti  1990  3.06195760
## 6998                                    Djibouti  1990  3.06195760
## 7002                                    Djibouti  1990  3.06195760
## 7003                                    Djibouti  1990  3.06195760
## 7020                                    Djibouti  1990  3.06195760
## 7042                                    Djibouti  1990  3.06195760
## 7051                                    Djibouti  1990  3.06195760
## 7052                                    Djibouti  1990  3.06195760
## 7053                                    Djibouti  1990  3.06195760
## 7060                                    Dominica  1990 25.00811162
## 7061                                    Dominica  1990 25.00811162
## 7063                                    Dominica  1990 25.00811162
## 7065                                    Dominica  1990 25.00811162
## 7066                                    Dominica  1990 25.00811162
## 7067                                    Dominica  1990 25.00811162
## 7077                                    Dominica  1990 25.00811162
## 7078                                    Dominica  1990 25.00811162
## 7079                                    Dominica  1990 25.00811162
## 7081                                    Dominica  1990 25.00811162
## 7084                                    Dominica  1990 25.00811162
## 7085                                    Dominica  1990 25.00811162
## 7090                                    Dominica  1990 25.00811162
## 7091                                    Dominica  1990 25.00811162
## 7092                                    Dominica  1990 25.00811162
## 7093                                    Dominica  1990 25.00811162
## 7094                                    Dominica  1990 25.00811162
## 7095                                    Dominica  1990 25.00811162
## 7096                                    Dominica  1990 25.00811162
## 7097                                    Dominica  1990 25.00811162
## 7103                                    Dominica  1990 25.00811162
## 7104                                    Dominica  1990 25.00811162
## 7105                                    Dominica  1990 25.00811162
## 7106                                    Dominica  1990 25.00811162
## 7107                                    Dominica  1990 25.00811162
## 7114                                    Dominica  1990 25.00811162
## 7115                                    Dominica  1990 25.00811162
## 7116                                    Dominica  1990 25.00811162
## 7117                                    Dominica  1990 25.00811162
## 7118                                    Dominica  1990 25.00811162
## 7119                                    Dominica  1990 25.00811162
## 7120                                    Dominica  1990 25.00811162
## 7123                          Dominican Republic  1990 14.51116244
## 7124                          Dominican Republic  1990 14.51116244
## 7125                          Dominican Republic  1990 14.51116244
## 7126                          Dominican Republic  1990 14.51116244
## 7127                          Dominican Republic  1990 14.51116244
## 7128                          Dominican Republic  1990 14.51116244
## 7129                          Dominican Republic  1990 14.51116244
## 7130                          Dominican Republic  1990 14.51116244
## 7131                          Dominican Republic  1990 14.51116244
## 7132                          Dominican Republic  1990 14.51116244
## 7133                          Dominican Republic  1990 14.51116244
## 7134                          Dominican Republic  1990 14.51116244
## 7143                          Dominican Republic  1990 14.51116244
## 7144                          Dominican Republic  1990 14.51116244
## 7145                          Dominican Republic  1990 14.51116244
## 7146                          Dominican Republic  1990 14.51116244
## 7147                          Dominican Republic  1990 14.51116244
## 7148                          Dominican Republic  1990 14.51116244
## 7157                          Dominican Republic  1990 14.51116244
## 7158                          Dominican Republic  1990 14.51116244
## 7159                          Dominican Republic  1990 14.51116244
## 7161                          Dominican Republic  1990 14.51116244
## 7166                          Dominican Republic  1990 14.51116244
## 7167                          Dominican Republic  1990 14.51116244
## 7180                          Dominican Republic  1990 14.51116244
## 7191                          Dominican Republic  1990 14.51116244
## 7192                          Dominican Republic  1990 14.51116244
## 7193                          Dominican Republic  1990 14.51116244
## 7194                          Dominican Republic  1990 14.51116244
## 7195                          Dominican Republic  1990 14.51116244
## 7196                          Dominican Republic  1990 14.51116244
## 7197                          Dominican Republic  1990 14.51116244
## 7199                          Dominican Republic  1990 14.51116244
## 7200                          Dominican Republic  1990 14.51116244
## 7201                          Dominican Republic  1990 14.51116244
## 7202                          Dominican Republic  1990 14.51116244
## 7211                          Dominican Republic  1990 14.51116244
## 7212                          Dominican Republic  1990 14.51116244
## 7213                          Dominican Republic  1990 14.51116244
## 7214                          Dominican Republic  1990 14.51116244
## 7215                          Dominican Republic  1990 14.51116244
## 7216                          Dominican Republic  1990 14.51116244
## 7233                          Dominican Republic  1990 14.51116244
## 7248                          Dominican Republic  1990 14.51116244
## 7250                          Dominican Republic  1990 14.51116244
## 7256                          Dominican Republic  1990 14.51116244
## 7258                          Dominican Republic  1990 14.51116244
## 7259                          Dominican Republic  1990 14.51116244
## 7260                          Dominican Republic  1990 14.51116244
## 7261                          Dominican Republic  1990 14.51116244
## 7262                          Dominican Republic  1990 14.51116244
## 7263                          Dominican Republic  1990 14.51116244
## 7268                          Dominican Republic  1990 14.51116244
## 7269                          Dominican Republic  1990 14.51116244
## 7270                          Dominican Republic  1990 14.51116244
## 7277                                     Ecuador  1990 21.42761954
## 7278                                     Ecuador  1990 21.42761954
## 7279                                     Ecuador  1990 21.42761954
## 7280                                     Ecuador  1990 21.42761954
## 7281                                     Ecuador  1990 21.42761954
## 7282                                     Ecuador  1990 21.42761954
## 7283                                     Ecuador  1990 21.42761954
## 7284                                     Ecuador  1990 21.42761954
## 7285                                     Ecuador  1990 21.42761954
## 7286                                     Ecuador  1990 21.42761954
## 7287                                     Ecuador  1990 21.42761954
## 7288                                     Ecuador  1990 21.42761954
## 7292                                     Ecuador  1990 21.42761954
## 7293                                     Ecuador  1990 21.42761954
## 7294                                     Ecuador  1990 21.42761954
## 7295                                     Ecuador  1990 21.42761954
## 7296                                     Ecuador  1990 21.42761954
## 7297                                     Ecuador  1990 21.42761954
## 7298                                     Ecuador  1990 21.42761954
## 7299                                     Ecuador  1990 21.42761954
## 7300                                     Ecuador  1990 21.42761954
## 7301                                     Ecuador  1990 21.42761954
## 7302                                     Ecuador  1990 21.42761954
## 7306                                     Ecuador  1990 21.42761954
## 7308                                     Ecuador  1990 21.42761954
## 7309                                     Ecuador  1990 21.42761954
## 7310                                     Ecuador  1990 21.42761954
## 7312                                     Ecuador  1990 21.42761954
## 7317                                     Ecuador  1990 21.42761954
## 7318                                     Ecuador  1990 21.42761954
## 7331                                     Ecuador  1990 21.42761954
## 7342                                     Ecuador  1990 21.42761954
## 7343                                     Ecuador  1990 21.42761954
## 7344                                     Ecuador  1990 21.42761954
## 7345                                     Ecuador  1990 21.42761954
## 7346                                     Ecuador  1990 21.42761954
## 7347                                     Ecuador  1990 21.42761954
## 7348                                     Ecuador  1990 21.42761954
## 7350                                     Ecuador  1990 21.42761954
## 7351                                     Ecuador  1990 21.42761954
## 7352                                     Ecuador  1990 21.42761954
## 7353                                     Ecuador  1990 21.42761954
## 7362                                     Ecuador  1990 21.42761954
## 7363                                     Ecuador  1990 21.42761954
## 7364                                     Ecuador  1990 21.42761954
## 7365                                     Ecuador  1990 21.42761954
## 7366                                     Ecuador  1990 21.42761954
## 7367                                     Ecuador  1990 21.42761954
## 7385                                     Ecuador  1990 21.42761954
## 7400                                     Ecuador  1990 21.42761954
## 7402                                     Ecuador  1990 21.42761954
## 7409                                     Ecuador  1990 21.42761954
## 7411                                     Ecuador  1990 21.42761954
## 7412                                     Ecuador  1990 21.42761954
## 7413                                     Ecuador  1990 21.42761954
## 7414                                     Ecuador  1990 21.42761954
## 7416                                     Ecuador  1990 21.42761954
## 7420                                     Ecuador  1990 21.42761954
## 7421                                     Ecuador  1990 21.42761954
## 7422                                     Ecuador  1990 21.42761954
## 7429                                       Egypt  1990 19.36663924
## 7430                                       Egypt  1990 19.36663924
## 7431                                       Egypt  1990 19.36663924
## 7432                                       Egypt  1990 19.36663924
## 7433                                       Egypt  1990 19.36663924
## 7434                                       Egypt  1990 19.36663924
## 7435                                       Egypt  1990 19.36663924
## 7436                                       Egypt  1990 19.36663924
## 7437                                       Egypt  1990 19.36663924
## 7438                                       Egypt  1990 19.36663924
## 7439                                       Egypt  1990 19.36663924
## 7440                                       Egypt  1990 19.36663924
## 7441                                       Egypt  1990 19.36663924
## 7442                                       Egypt  1990 19.36663924
## 7444                                       Egypt  1990 19.36663924
## 7445                                       Egypt  1990 19.36663924
## 7446                                       Egypt  1990 19.36663924
## 7447                                       Egypt  1990 19.36663924
## 7449                                       Egypt  1990 19.36663924
## 7450                                       Egypt  1990 19.36663924
## 7451                                       Egypt  1990 19.36663924
## 7452                                       Egypt  1990 19.36663924
## 7453                                       Egypt  1990 19.36663924
## 7454                                       Egypt  1990 19.36663924
## 7458                                       Egypt  1990 19.36663924
## 7460                                       Egypt  1990 19.36663924
## 7461                                       Egypt  1990 19.36663924
## 7462                                       Egypt  1990 19.36663924
## 7464                                       Egypt  1990 19.36663924
## 7469                                       Egypt  1990 19.36663924
## 7470                                       Egypt  1990 19.36663924
## 7482                                       Egypt  1990 19.36663924
## 7493                                       Egypt  1990 19.36663924
## 7494                                       Egypt  1990 19.36663924
## 7495                                       Egypt  1990 19.36663924
## 7496                                       Egypt  1990 19.36663924
## 7497                                       Egypt  1990 19.36663924
## 7498                                       Egypt  1990 19.36663924
## 7499                                       Egypt  1990 19.36663924
## 7500                                       Egypt  1990 19.36663924
## 7501                                       Egypt  1990 19.36663924
## 7502                                       Egypt  1990 19.36663924
## 7503                                       Egypt  1990 19.36663924
## 7512                                       Egypt  1990 19.36663924
## 7513                                       Egypt  1990 19.36663924
## 7514                                       Egypt  1990 19.36663924
## 7515                                       Egypt  1990 19.36663924
## 7516                                       Egypt  1990 19.36663924
## 7517                                       Egypt  1990 19.36663924
## 7535                                       Egypt  1990 19.36663924
## 7550                                       Egypt  1990 19.36663924
## 7552                                       Egypt  1990 19.36663924
## 7559                                       Egypt  1990 19.36663924
## 7561                                       Egypt  1990 19.36663924
## 7562                                       Egypt  1990 19.36663924
## 7563                                       Egypt  1990 19.36663924
## 7564                                       Egypt  1990 19.36663924
## 7565                                       Egypt  1990 19.36663924
## 7566                                       Egypt  1990 19.36663924
## 7571                                       Egypt  1990 19.36663924
## 7572                                       Egypt  1990 19.36663924
## 7573                                       Egypt  1990 19.36663924
## 7580                                 El Salvador  1990 17.42424242
## 7581                                 El Salvador  1990 17.42424242
## 7582                                 El Salvador  1990 17.42424242
## 7583                                 El Salvador  1990 17.42424242
## 7584                                 El Salvador  1990 17.42424242
## 7585                                 El Salvador  1990 17.42424242
## 7586                                 El Salvador  1990 17.42424242
## 7587                                 El Salvador  1990 17.42424242
## 7588                                 El Salvador  1990 17.42424242
## 7589                                 El Salvador  1990 17.42424242
## 7590                                 El Salvador  1990 17.42424242
## 7591                                 El Salvador  1990 17.42424242
## 7598                                 El Salvador  1990 17.42424242
## 7600                                 El Salvador  1990 17.42424242
## 7601                                 El Salvador  1990 17.42424242
## 7602                                 El Salvador  1990 17.42424242
## 7603                                 El Salvador  1990 17.42424242
## 7604                                 El Salvador  1990 17.42424242
## 7605                                 El Salvador  1990 17.42424242
## 7611                                 El Salvador  1990 17.42424242
## 7612                                 El Salvador  1990 17.42424242
## 7613                                 El Salvador  1990 17.42424242
## 7615                                 El Salvador  1990 17.42424242
## 7620                                 El Salvador  1990 17.42424242
## 7621                                 El Salvador  1990 17.42424242
## 7634                                 El Salvador  1990 17.42424242
## 7645                                 El Salvador  1990 17.42424242
## 7646                                 El Salvador  1990 17.42424242
## 7647                                 El Salvador  1990 17.42424242
## 7648                                 El Salvador  1990 17.42424242
## 7649                                 El Salvador  1990 17.42424242
## 7650                                 El Salvador  1990 17.42424242
## 7651                                 El Salvador  1990 17.42424242
## 7653                                 El Salvador  1990 17.42424242
## 7654                                 El Salvador  1990 17.42424242
## 7655                                 El Salvador  1990 17.42424242
## 7656                                 El Salvador  1990 17.42424242
## 7665                                 El Salvador  1990 17.42424242
## 7666                                 El Salvador  1990 17.42424242
## 7667                                 El Salvador  1990 17.42424242
## 7668                                 El Salvador  1990 17.42424242
## 7669                                 El Salvador  1990 17.42424242
## 7670                                 El Salvador  1990 17.42424242
## 7688                                 El Salvador  1990 17.42424242
## 7703                                 El Salvador  1990 17.42424242
## 7705                                 El Salvador  1990 17.42424242
## 7712                                 El Salvador  1990 17.42424242
## 7714                                 El Salvador  1990 17.42424242
## 7715                                 El Salvador  1990 17.42424242
## 7716                                 El Salvador  1990 17.42424242
## 7717                                 El Salvador  1990 17.42424242
## 7719                                 El Salvador  1990 17.42424242
## 7724                                 El Salvador  1990 17.42424242
## 7725                                 El Salvador  1990 17.42424242
## 7726                                 El Salvador  1990 17.42424242
## 7735                                    Ethiopia  1990 52.04077703
## 7736                                    Ethiopia  1990 52.04077703
## 7737                                    Ethiopia  1990 52.04077703
## 7738                                    Ethiopia  1990 52.04077703
## 7739                                    Ethiopia  1990 52.04077703
## 7740                                    Ethiopia  1990 52.04077703
## 7741                                    Ethiopia  1990 52.04077703
## 7742                                    Ethiopia  1990 52.04077703
## 7743                                    Ethiopia  1990 52.04077703
## 7745                                    Ethiopia  1990 52.04077703
## 7746                                    Ethiopia  1990 52.04077703
## 7747                                    Ethiopia  1990 52.04077703
## 7749                                    Ethiopia  1990 52.04077703
## 7750                                    Ethiopia  1990 52.04077703
## 7752                                    Ethiopia  1990 52.04077703
## 7763                                    Ethiopia  1990 52.04077703
## 7765                                    Ethiopia  1990 52.04077703
## 7766                                    Ethiopia  1990 52.04077703
## 7767                                    Ethiopia  1990 52.04077703
## 7769                                    Ethiopia  1990 52.04077703
## 7774                                    Ethiopia  1990 52.04077703
## 7775                                    Ethiopia  1990 52.04077703
## 7778                                    Ethiopia  1990 52.04077703
## 7788                                    Ethiopia  1990 52.04077703
## 7799                                    Ethiopia  1990 52.04077703
## 7800                                    Ethiopia  1990 52.04077703
## 7801                                    Ethiopia  1990 52.04077703
## 7802                                    Ethiopia  1990 52.04077703
## 7803                                    Ethiopia  1990 52.04077703
## 7804                                    Ethiopia  1990 52.04077703
## 7805                                    Ethiopia  1990 52.04077703
## 7807                                    Ethiopia  1990 52.04077703
## 7808                                    Ethiopia  1990 52.04077703
## 7809                                    Ethiopia  1990 52.04077703
## 7810                                    Ethiopia  1990 52.04077703
## 7819                                    Ethiopia  1990 52.04077703
## 7820                                    Ethiopia  1990 52.04077703
## 7821                                    Ethiopia  1990 52.04077703
## 7823                                    Ethiopia  1990 52.04077703
## 7824                                    Ethiopia  1990 52.04077703
## 7840                                    Ethiopia  1990 52.04077703
## 7857                                    Ethiopia  1990 52.04077703
## 7866                                    Ethiopia  1990 52.04077703
## 7869                                    Ethiopia  1990 52.04077703
## 7870                                    Ethiopia  1990 52.04077703
## 7871                                    Ethiopia  1990 52.04077703
## 7876                                    Ethiopia  1990 52.04077703
## 7877                                    Ethiopia  1990 52.04077703
## 7878                                    Ethiopia  1990 52.04077703
## 7885                                        Fiji  1990 20.41142939
## 7886                                        Fiji  1990 20.41142939
## 7887                                        Fiji  1990 20.41142939
## 7888                                        Fiji  1990 20.41142939
## 7889                                        Fiji  1990 20.41142939
## 7890                                        Fiji  1990 20.41142939
## 7891                                        Fiji  1990 20.41142939
## 7892                                        Fiji  1990 20.41142939
## 7893                                        Fiji  1990 20.41142939
## 7894                                        Fiji  1990 20.41142939
## 7895                                        Fiji  1990 20.41142939
## 7896                                        Fiji  1990 20.41142939
## 7900                                        Fiji  1990 20.41142939
## 7904                                        Fiji  1990 20.41142939
## 7905                                        Fiji  1990 20.41142939
## 7906                                        Fiji  1990 20.41142939
## 7907                                        Fiji  1990 20.41142939
## 7908                                        Fiji  1990 20.41142939
## 7909                                        Fiji  1990 20.41142939
## 7914                                        Fiji  1990 20.41142939
## 7915                                        Fiji  1990 20.41142939
## 7916                                        Fiji  1990 20.41142939
## 7918                                        Fiji  1990 20.41142939
## 7923                                        Fiji  1990 20.41142939
## 7924                                        Fiji  1990 20.41142939
## 7934                                        Fiji  1990 20.41142939
## 7935                                        Fiji  1990 20.41142939
## 7943                                        Fiji  1990 20.41142939
## 7944                                        Fiji  1990 20.41142939
## 7945                                        Fiji  1990 20.41142939
## 7946                                        Fiji  1990 20.41142939
## 7947                                        Fiji  1990 20.41142939
## 7948                                        Fiji  1990 20.41142939
## 7949                                        Fiji  1990 20.41142939
## 7950                                        Fiji  1990 20.41142939
## 7951                                        Fiji  1990 20.41142939
## 7952                                        Fiji  1990 20.41142939
## 7953                                        Fiji  1990 20.41142939
## 7961                                        Fiji  1990 20.41142939
## 7962                                        Fiji  1990 20.41142939
## 7963                                        Fiji  1990 20.41142939
## 7964                                        Fiji  1990 20.41142939
## 7965                                        Fiji  1990 20.41142939
## 7966                                        Fiji  1990 20.41142939
## 7983                                        Fiji  1990 20.41142939
## 7985                                        Fiji  1990 20.41142939
## 7987                                        Fiji  1990 20.41142939
## 7992                                        Fiji  1990 20.41142939
## 7994                                        Fiji  1990 20.41142939
## 7995                                        Fiji  1990 20.41142939
## 7996                                        Fiji  1990 20.41142939
## 7997                                        Fiji  1990 20.41142939
## 7998                                        Fiji  1990 20.41142939
## 7999                                        Fiji  1990 20.41142939
## 8003                                        Fiji  1990 20.41142939
## 8004                                        Fiji  1990 20.41142939
## 8005                                        Fiji  1990 20.41142939
## 8012                                     Finland  1990  6.20732386
## 8013                                     Finland  1990  6.20732386
## 8014                                     Finland  1990  6.20732386
## 8015                                     Finland  1990  6.20732386
## 8016                                     Finland  1990  6.20732386
## 8017                                     Finland  1990  6.20732386
## 8018                                     Finland  1990  6.20732386
## 8019                                     Finland  1990  6.20732386
## 8020                                     Finland  1990  6.20732386
## 8021                                     Finland  1990  6.20732386
## 8022                                     Finland  1990  6.20732386
## 8023                                     Finland  1990  6.20732386
## 8024                                     Finland  1990  6.20732386
## 8025                                     Finland  1990  6.20732386
## 8026                                     Finland  1990  6.20732386
## 8027                                     Finland  1990  6.20732386
## 8028                                     Finland  1990  6.20732386
## 8029                                     Finland  1990  6.20732386
## 8030                                     Finland  1990  6.20732386
## 8031                                     Finland  1990  6.20732386
## 8032                                     Finland  1990  6.20732386
## 8033                                     Finland  1990  6.20732386
## 8034                                     Finland  1990  6.20732386
## 8035                                     Finland  1990  6.20732386
## 8036                                     Finland  1990  6.20732386
## 8037                                     Finland  1990  6.20732386
## 8044                                     Finland  1990  6.20732386
## 8045                                     Finland  1990  6.20732386
## 8046                                     Finland  1990  6.20732386
## 8048                                     Finland  1990  6.20732386
## 8049                                     Finland  1990  6.20732386
## 8053                                     Finland  1990  6.20732386
## 8054                                     Finland  1990  6.20732386
## 8055                                     Finland  1990  6.20732386
## 8065                                     Finland  1990  6.20732386
## 8066                                     Finland  1990  6.20732386
## 8075                                     Finland  1990  6.20732386
## 8076                                     Finland  1990  6.20732386
## 8077                                     Finland  1990  6.20732386
## 8078                                     Finland  1990  6.20732386
## 8079                                     Finland  1990  6.20732386
## 8080                                     Finland  1990  6.20732386
## 8081                                     Finland  1990  6.20732386
## 8082                                     Finland  1990  6.20732386
## 8083                                     Finland  1990  6.20732386
## 8084                                     Finland  1990  6.20732386
## 8094                                     Finland  1990  6.20732386
## 8095                                     Finland  1990  6.20732386
## 8096                                     Finland  1990  6.20732386
## 8097                                     Finland  1990  6.20732386
## 8098                                     Finland  1990  6.20732386
## 8116                                     Finland  1990  6.20732386
## 8117                                     Finland  1990  6.20732386
## 8119                                     Finland  1990  6.20732386
## 8126                                     Finland  1990  6.20732386
## 8128                                     Finland  1990  6.20732386
## 8129                                     Finland  1990  6.20732386
## 8130                                     Finland  1990  6.20732386
## 8131                                     Finland  1990  6.20732386
## 8135                                     Finland  1990  6.20732386
## 8136                                     Finland  1990  6.20732386
## 8137                                     Finland  1990  6.20732386
## 8144                                      France  1990  3.50414254
## 8145                                      France  1990  3.50414254
## 8146                                      France  1990  3.50414254
## 8147                                      France  1990  3.50414254
## 8148                                      France  1990  3.50414254
## 8149                                      France  1990  3.50414254
## 8150                                      France  1990  3.50414254
## 8151                                      France  1990  3.50414254
## 8152                                      France  1990  3.50414254
## 8153                                      France  1990  3.50414254
## 8154                                      France  1990  3.50414254
## 8155                                      France  1990  3.50414254
## 8156                                      France  1990  3.50414254
## 8157                                      France  1990  3.50414254
## 8158                                      France  1990  3.50414254
## 8159                                      France  1990  3.50414254
## 8160                                      France  1990  3.50414254
## 8161                                      France  1990  3.50414254
## 8162                                      France  1990  3.50414254
## 8163                                      France  1990  3.50414254
## 8164                                      France  1990  3.50414254
## 8165                                      France  1990  3.50414254
## 8166                                      France  1990  3.50414254
## 8167                                      France  1990  3.50414254
## 8168                                      France  1990  3.50414254
## 8169                                      France  1990  3.50414254
## 8174                                      France  1990  3.50414254
## 8175                                      France  1990  3.50414254
## 8176                                      France  1990  3.50414254
## 8177                                      France  1990  3.50414254
## 8179                                      France  1990  3.50414254
## 8184                                      France  1990  3.50414254
## 8185                                      France  1990  3.50414254
## 8196                                      France  1990  3.50414254
## 8207                                      France  1990  3.50414254
## 8208                                      France  1990  3.50414254
## 8209                                      France  1990  3.50414254
## 8210                                      France  1990  3.50414254
## 8211                                      France  1990  3.50414254
## 8212                                      France  1990  3.50414254
## 8213                                      France  1990  3.50414254
## 8214                                      France  1990  3.50414254
## 8215                                      France  1990  3.50414254
## 8216                                      France  1990  3.50414254
## 8217                                      France  1990  3.50414254
## 8227                                      France  1990  3.50414254
## 8228                                      France  1990  3.50414254
## 8229                                      France  1990  3.50414254
## 8230                                      France  1990  3.50414254
## 8231                                      France  1990  3.50414254
## 8249                                      France  1990  3.50414254
## 8250                                      France  1990  3.50414254
## 8252                                      France  1990  3.50414254
## 8259                                      France  1990  3.50414254
## 8261                                      France  1990  3.50414254
## 8262                                      France  1990  3.50414254
## 8263                                      France  1990  3.50414254
## 8264                                      France  1990  3.50414254
## 8268                                      France  1990  3.50414254
## 8269                                      France  1990  3.50414254
## 8270                                      France  1990  3.50414254
## 8278                                     Georgia  1990 31.69014085
## 8279                                     Georgia  1990 31.69014085
## 8280                                     Georgia  1990 31.69014085
## 8281                                     Georgia  1990 31.69014085
## 8282                                     Georgia  1990 31.69014085
## 8283                                     Georgia  1990 31.69014085
## 8284                                     Georgia  1990 31.69014085
## 8285                                     Georgia  1990 31.69014085
## 8286                                     Georgia  1990 31.69014085
## 8288                                     Georgia  1990 31.69014085
## 8289                                     Georgia  1990 31.69014085
## 8290                                     Georgia  1990 31.69014085
## 8301                                     Georgia  1990 31.69014085
## 8302                                     Georgia  1990 31.69014085
## 8313                                     Georgia  1990 31.69014085
## 8315                                     Georgia  1990 31.69014085
## 8320                                     Georgia  1990 31.69014085
## 8321                                     Georgia  1990 31.69014085
## 8333                                     Georgia  1990 31.69014085
## 8334                                     Georgia  1990 31.69014085
## 8345                                     Georgia  1990 31.69014085
## 8348                                     Georgia  1990 31.69014085
## 8349                                     Georgia  1990 31.69014085
## 8350                                     Georgia  1990 31.69014085
## 8351                                     Georgia  1990 31.69014085
## 8353                                     Georgia  1990 31.69014085
## 8354                                     Georgia  1990 31.69014085
## 8355                                     Georgia  1990 31.69014085
## 8356                                     Georgia  1990 31.69014085
## 8366                                     Georgia  1990 31.69014085
## 8367                                     Georgia  1990 31.69014085
## 8368                                     Georgia  1990 31.69014085
## 8369                                     Georgia  1990 31.69014085
## 8370                                     Georgia  1990 31.69014085
## 8388                                     Georgia  1990 31.69014085
## 8392                                     Georgia  1990 31.69014085
## 8399                                     Georgia  1990 31.69014085
## 8402                                     Georgia  1990 31.69014085
## 8411                                     Georgia  1990 31.69014085
## 8412                                     Georgia  1990 31.69014085
## 8413                                     Georgia  1990 31.69014085
## 8419                                       Ghana  1990 45.06751267
## 8420                                       Ghana  1990 45.06751267
## 8421                                       Ghana  1990 45.06751267
## 8422                                       Ghana  1990 45.06751267
## 8423                                       Ghana  1990 45.06751267
## 8424                                       Ghana  1990 45.06751267
## 8425                                       Ghana  1990 45.06751267
## 8426                                       Ghana  1990 45.06751267
## 8427                                       Ghana  1990 45.06751267
## 8428                                       Ghana  1990 45.06751267
## 8429                                       Ghana  1990 45.06751267
## 8430                                       Ghana  1990 45.06751267
## 8434                                       Ghana  1990 45.06751267
## 8435                                       Ghana  1990 45.06751267
## 8436                                       Ghana  1990 45.06751267
## 8439                                       Ghana  1990 45.06751267
## 8440                                       Ghana  1990 45.06751267
## 8441                                       Ghana  1990 45.06751267
## 8442                                       Ghana  1990 45.06751267
## 8443                                       Ghana  1990 45.06751267
## 8444                                       Ghana  1990 45.06751267
## 8447                                       Ghana  1990 45.06751267
## 8449                                       Ghana  1990 45.06751267
## 8450                                       Ghana  1990 45.06751267
## 8451                                       Ghana  1990 45.06751267
## 8453                                       Ghana  1990 45.06751267
## 8458                                       Ghana  1990 45.06751267
## 8459                                       Ghana  1990 45.06751267
## 8472                                       Ghana  1990 45.06751267
## 8484                                       Ghana  1990 45.06751267
## 8485                                       Ghana  1990 45.06751267
## 8486                                       Ghana  1990 45.06751267
## 8487                                       Ghana  1990 45.06751267
## 8488                                       Ghana  1990 45.06751267
## 8489                                       Ghana  1990 45.06751267
## 8490                                       Ghana  1990 45.06751267
## 8492                                       Ghana  1990 45.06751267
## 8493                                       Ghana  1990 45.06751267
## 8494                                       Ghana  1990 45.06751267
## 8495                                       Ghana  1990 45.06751267
## 8504                                       Ghana  1990 45.06751267
## 8505                                       Ghana  1990 45.06751267
## 8506                                       Ghana  1990 45.06751267
## 8507                                       Ghana  1990 45.06751267
## 8508                                       Ghana  1990 45.06751267
## 8509                                       Ghana  1990 45.06751267
## 8526                                       Ghana  1990 45.06751267
## 8541                                       Ghana  1990 45.06751267
## 8543                                       Ghana  1990 45.06751267
## 8552                                       Ghana  1990 45.06751267
## 8553                                       Ghana  1990 45.06751267
## 8554                                       Ghana  1990 45.06751267
## 8555                                       Ghana  1990 45.06751267
## 8556                                       Ghana  1990 45.06751267
## 8557                                       Ghana  1990 45.06751267
## 8562                                       Ghana  1990 45.06751267
## 8563                                       Ghana  1990 45.06751267
## 8564                                       Ghana  1990 45.06751267
## 8572                                     Grenada  1990 10.55975252
## 8573                                     Grenada  1990 10.55975252
## 8574                                     Grenada  1990 10.55975252
## 8575                                     Grenada  1990 10.55975252
## 8576                                     Grenada  1990 10.55975252
## 8577                                     Grenada  1990 10.55975252
## 8578                                     Grenada  1990 10.55975252
## 8579                                     Grenada  1990 10.55975252
## 8580                                     Grenada  1990 10.55975252
## 8582                                     Grenada  1990 10.55975252
## 8587                                     Grenada  1990 10.55975252
## 8588                                     Grenada  1990 10.55975252
## 8593                                     Grenada  1990 10.55975252
## 8595                                     Grenada  1990 10.55975252
## 8596                                     Grenada  1990 10.55975252
## 8597                                     Grenada  1990 10.55975252
## 8599                                     Grenada  1990 10.55975252
## 8604                                     Grenada  1990 10.55975252
## 8605                                     Grenada  1990 10.55975252
## 8606                                     Grenada  1990 10.55975252
## 8607                                     Grenada  1990 10.55975252
## 8610                                     Grenada  1990 10.55975252
## 8614                                     Grenada  1990 10.55975252
## 8615                                     Grenada  1990 10.55975252
## 8616                                     Grenada  1990 10.55975252
## 8617                                     Grenada  1990 10.55975252
## 8618                                     Grenada  1990 10.55975252
## 8619                                     Grenada  1990 10.55975252
## 8620                                     Grenada  1990 10.55975252
## 8621                                     Grenada  1990 10.55975252
## 8622                                     Grenada  1990 10.55975252
## 8623                                     Grenada  1990 10.55975252
## 8631                                     Grenada  1990 10.55975252
## 8632                                     Grenada  1990 10.55975252
## 8633                                     Grenada  1990 10.55975252
## 8634                                     Grenada  1990 10.55975252
## 8635                                     Grenada  1990 10.55975252
## 8642                                     Grenada  1990 10.55975252
## 8646                                     Grenada  1990 10.55975252
## 8647                                     Grenada  1990 10.55975252
## 8648                                     Grenada  1990 10.55975252
## 8649                                     Grenada  1990 10.55975252
## 8650                                     Grenada  1990 10.55975252
## 8651                                     Grenada  1990 10.55975252
## 8652                                     Grenada  1990 10.55975252
## 8655                                      Guinea  1990 23.77756121
## 8656                                      Guinea  1990 23.77756121
## 8657                                      Guinea  1990 23.77756121
## 8658                                      Guinea  1990 23.77756121
## 8659                                      Guinea  1990 23.77756121
## 8660                                      Guinea  1990 23.77756121
## 8661                                      Guinea  1990 23.77756121
## 8662                                      Guinea  1990 23.77756121
## 8663                                      Guinea  1990 23.77756121
## 8664                                      Guinea  1990 23.77756121
## 8665                                      Guinea  1990 23.77756121
## 8666                                      Guinea  1990 23.77756121
## 8667                                      Guinea  1990 23.77756121
## 8668                                      Guinea  1990 23.77756121
## 8671                                      Guinea  1990 23.77756121
## 8672                                      Guinea  1990 23.77756121
## 8673                                      Guinea  1990 23.77756121
## 8675                                      Guinea  1990 23.77756121
## 8679                                      Guinea  1990 23.77756121
## 8681                                      Guinea  1990 23.77756121
## 8682                                      Guinea  1990 23.77756121
## 8683                                      Guinea  1990 23.77756121
## 8684                                      Guinea  1990 23.77756121
## 8685                                      Guinea  1990 23.77756121
## 8690                                      Guinea  1990 23.77756121
## 8691                                      Guinea  1990 23.77756121
## 8701                                      Guinea  1990 23.77756121
## 8711                                      Guinea  1990 23.77756121
## 8712                                      Guinea  1990 23.77756121
## 8713                                      Guinea  1990 23.77756121
## 8714                                      Guinea  1990 23.77756121
## 8715                                      Guinea  1990 23.77756121
## 8716                                      Guinea  1990 23.77756121
## 8717                                      Guinea  1990 23.77756121
## 8719                                      Guinea  1990 23.77756121
## 8720                                      Guinea  1990 23.77756121
## 8721                                      Guinea  1990 23.77756121
## 8722                                      Guinea  1990 23.77756121
## 8732                                      Guinea  1990 23.77756121
## 8733                                      Guinea  1990 23.77756121
## 8734                                      Guinea  1990 23.77756121
## 8735                                      Guinea  1990 23.77756121
## 8736                                      Guinea  1990 23.77756121
## 8753                                      Guinea  1990 23.77756121
## 8768                                      Guinea  1990 23.77756121
## 8770                                      Guinea  1990 23.77756121
## 8777                                      Guinea  1990 23.77756121
## 8778                                      Guinea  1990 23.77756121
## 8779                                      Guinea  1990 23.77756121
## 8780                                      Guinea  1990 23.77756121
## 8782                                      Guinea  1990 23.77756121
## 8787                                      Guinea  1990 23.77756121
## 8788                                      Guinea  1990 23.77756121
## 8789                                      Guinea  1990 23.77756121
## 8796                               Guinea-Bissau  1990 60.80318734
## 8797                               Guinea-Bissau  1990 60.80318734
## 8798                               Guinea-Bissau  1990 60.80318734
## 8799                               Guinea-Bissau  1990 60.80318734
## 8800                               Guinea-Bissau  1990 60.80318734
## 8801                               Guinea-Bissau  1990 60.80318734
## 8802                               Guinea-Bissau  1990 60.80318734
## 8803                               Guinea-Bissau  1990 60.80318734
## 8804                               Guinea-Bissau  1990 60.80318734
## 8806                               Guinea-Bissau  1990 60.80318734
## 8818                               Guinea-Bissau  1990 60.80318734
## 8819                               Guinea-Bissau  1990 60.80318734
## 8820                               Guinea-Bissau  1990 60.80318734
## 8822                               Guinea-Bissau  1990 60.80318734
## 8827                               Guinea-Bissau  1990 60.80318734
## 8828                               Guinea-Bissau  1990 60.80318734
## 8835                               Guinea-Bissau  1990 60.80318734
## 8844                               Guinea-Bissau  1990 60.80318734
## 8845                               Guinea-Bissau  1990 60.80318734
## 8846                               Guinea-Bissau  1990 60.80318734
## 8847                               Guinea-Bissau  1990 60.80318734
## 8848                               Guinea-Bissau  1990 60.80318734
## 8849                               Guinea-Bissau  1990 60.80318734
## 8850                               Guinea-Bissau  1990 60.80318734
## 8852                               Guinea-Bissau  1990 60.80318734
## 8853                               Guinea-Bissau  1990 60.80318734
## 8854                               Guinea-Bissau  1990 60.80318734
## 8855                               Guinea-Bissau  1990 60.80318734
## 8863                               Guinea-Bissau  1990 60.80318734
## 8864                               Guinea-Bissau  1990 60.80318734
## 8865                               Guinea-Bissau  1990 60.80318734
## 8866                               Guinea-Bissau  1990 60.80318734
## 8867                               Guinea-Bissau  1990 60.80318734
## 8868                               Guinea-Bissau  1990 60.80318734
## 8884                               Guinea-Bissau  1990 60.80318734
## 8899                               Guinea-Bissau  1990 60.80318734
## 8901                               Guinea-Bissau  1990 60.80318734
## 8908                               Guinea-Bissau  1990 60.80318734
## 8909                               Guinea-Bissau  1990 60.80318734
## 8910                               Guinea-Bissau  1990 60.80318734
## 8911                               Guinea-Bissau  1990 60.80318734
## 8912                               Guinea-Bissau  1990 60.80318734
## 8913                               Guinea-Bissau  1990 60.80318734
## 8918                               Guinea-Bissau  1990 60.80318734
## 8919                               Guinea-Bissau  1990 60.80318734
## 8920                               Guinea-Bissau  1990 60.80318734
## 8926                                      Guyana  1990 38.08179632
## 8927                                      Guyana  1990 38.08179632
## 8928                                      Guyana  1990 38.08179632
## 8929                                      Guyana  1990 38.08179632
## 8930                                      Guyana  1990 38.08179632
## 8931                                      Guyana  1990 38.08179632
## 8932                                      Guyana  1990 38.08179632
## 8933                                      Guyana  1990 38.08179632
## 8934                                      Guyana  1990 38.08179632
## 8935                                      Guyana  1990 38.08179632
## 8936                                      Guyana  1990 38.08179632
## 8937                                      Guyana  1990 38.08179632
## 8944                                      Guyana  1990 38.08179632
## 8946                                      Guyana  1990 38.08179632
## 8947                                      Guyana  1990 38.08179632
## 8948                                      Guyana  1990 38.08179632
## 8949                                      Guyana  1990 38.08179632
## 8950                                      Guyana  1990 38.08179632
## 8951                                      Guyana  1990 38.08179632
## 8957                                      Guyana  1990 38.08179632
## 8958                                      Guyana  1990 38.08179632
## 8959                                      Guyana  1990 38.08179632
## 8961                                      Guyana  1990 38.08179632
## 8966                                      Guyana  1990 38.08179632
## 8967                                      Guyana  1990 38.08179632
## 8980                                      Guyana  1990 38.08179632
## 8989                                      Guyana  1990 38.08179632
## 8990                                      Guyana  1990 38.08179632
## 8991                                      Guyana  1990 38.08179632
## 8992                                      Guyana  1990 38.08179632
## 8993                                      Guyana  1990 38.08179632
## 8994                                      Guyana  1990 38.08179632
## 8995                                      Guyana  1990 38.08179632
## 8997                                      Guyana  1990 38.08179632
## 8998                                      Guyana  1990 38.08179632
## 8999                                      Guyana  1990 38.08179632
## 9000                                      Guyana  1990 38.08179632
## 9009                                      Guyana  1990 38.08179632
## 9010                                      Guyana  1990 38.08179632
## 9011                                      Guyana  1990 38.08179632
## 9012                                      Guyana  1990 38.08179632
## 9013                                      Guyana  1990 38.08179632
## 9014                                      Guyana  1990 38.08179632
## 9028                                      Guyana  1990 38.08179632
## 9043                                      Guyana  1990 38.08179632
## 9048                                      Guyana  1990 38.08179632
## 9050                                      Guyana  1990 38.08179632
## 9051                                      Guyana  1990 38.08179632
## 9052                                      Guyana  1990 38.08179632
## 9059                                      Guyana  1990 38.08179632
## 9060                                      Guyana  1990 38.08179632
## 9061                                      Guyana  1990 38.08179632
## 9068                                    Honduras  1990 22.43635821
## 9069                                    Honduras  1990 22.43635821
## 9070                                    Honduras  1990 22.43635821
## 9071                                    Honduras  1990 22.43635821
## 9072                                    Honduras  1990 22.43635821
## 9073                                    Honduras  1990 22.43635821
## 9074                                    Honduras  1990 22.43635821
## 9075                                    Honduras  1990 22.43635821
## 9076                                    Honduras  1990 22.43635821
## 9077                                    Honduras  1990 22.43635821
## 9078                                    Honduras  1990 22.43635821
## 9079                                    Honduras  1990 22.43635821
## 9080                                    Honduras  1990 22.43635821
## 9081                                    Honduras  1990 22.43635821
## 9083                                    Honduras  1990 22.43635821
## 9084                                    Honduras  1990 22.43635821
## 9086                                    Honduras  1990 22.43635821
## 9088                                    Honduras  1990 22.43635821
## 9089                                    Honduras  1990 22.43635821
## 9090                                    Honduras  1990 22.43635821
## 9091                                    Honduras  1990 22.43635821
## 9092                                    Honduras  1990 22.43635821
## 9093                                    Honduras  1990 22.43635821
## 9095                                    Honduras  1990 22.43635821
## 9097                                    Honduras  1990 22.43635821
## 9098                                    Honduras  1990 22.43635821
## 9099                                    Honduras  1990 22.43635821
## 9101                                    Honduras  1990 22.43635821
## 9105                                    Honduras  1990 22.43635821
## 9106                                    Honduras  1990 22.43635821
## 9119                                    Honduras  1990 22.43635821
## 9130                                    Honduras  1990 22.43635821
## 9131                                    Honduras  1990 22.43635821
## 9132                                    Honduras  1990 22.43635821
## 9133                                    Honduras  1990 22.43635821
## 9134                                    Honduras  1990 22.43635821
## 9135                                    Honduras  1990 22.43635821
## 9136                                    Honduras  1990 22.43635821
## 9138                                    Honduras  1990 22.43635821
## 9139                                    Honduras  1990 22.43635821
## 9140                                    Honduras  1990 22.43635821
## 9141                                    Honduras  1990 22.43635821
## 9150                                    Honduras  1990 22.43635821
## 9151                                    Honduras  1990 22.43635821
## 9152                                    Honduras  1990 22.43635821
## 9153                                    Honduras  1990 22.43635821
## 9154                                    Honduras  1990 22.43635821
## 9155                                    Honduras  1990 22.43635821
## 9172                                    Honduras  1990 22.43635821
## 9187                                    Honduras  1990 22.43635821
## 9189                                    Honduras  1990 22.43635821
## 9196                                    Honduras  1990 22.43635821
## 9198                                    Honduras  1990 22.43635821
## 9199                                    Honduras  1990 22.43635821
## 9200                                    Honduras  1990 22.43635821
## 9201                                    Honduras  1990 22.43635821
## 9202                                    Honduras  1990 22.43635821
## 9203                                    Honduras  1990 22.43635821
## 9207                                    Honduras  1990 22.43635821
## 9208                                    Honduras  1990 22.43635821
## 9209                                    Honduras  1990 22.43635821
## 9216                                       India  1990 30.09983944
## 9217                                       India  1990 30.09983944
## 9218                                       India  1990 30.09983944
## 9219                                       India  1990 30.09983944
## 9220                                       India  1990 30.09983944
## 9221                                       India  1990 30.09983944
## 9222                                       India  1990 30.09983944
## 9223                                       India  1990 30.09983944
## 9224                                       India  1990 30.09983944
## 9225                                       India  1990 30.09983944
## 9226                                       India  1990 30.09983944
## 9227                                       India  1990 30.09983944
## 9228                                       India  1990 30.09983944
## 9229                                       India  1990 30.09983944
## 9231                                       India  1990 30.09983944
## 9232                                       India  1990 30.09983944
## 9234                                       India  1990 30.09983944
## 9236                                       India  1990 30.09983944
## 9237                                       India  1990 30.09983944
## 9238                                       India  1990 30.09983944
## 9239                                       India  1990 30.09983944
## 9240                                       India  1990 30.09983944
## 9241                                       India  1990 30.09983944
## 9246                                       India  1990 30.09983944
## 9247                                       India  1990 30.09983944
## 9248                                       India  1990 30.09983944
## 9250                                       India  1990 30.09983944
## 9251                                       India  1990 30.09983944
## 9255                                       India  1990 30.09983944
## 9256                                       India  1990 30.09983944
## 9268                                       India  1990 30.09983944
## 9279                                       India  1990 30.09983944
## 9280                                       India  1990 30.09983944
## 9281                                       India  1990 30.09983944
## 9282                                       India  1990 30.09983944
## 9283                                       India  1990 30.09983944
## 9284                                       India  1990 30.09983944
## 9285                                       India  1990 30.09983944
## 9287                                       India  1990 30.09983944
## 9288                                       India  1990 30.09983944
## 9289                                       India  1990 30.09983944
## 9290                                       India  1990 30.09983944
## 9299                                       India  1990 30.09983944
## 9300                                       India  1990 30.09983944
## 9301                                       India  1990 30.09983944
## 9302                                       India  1990 30.09983944
## 9303                                       India  1990 30.09983944
## 9304                                       India  1990 30.09983944
## 9321                                       India  1990 30.09983944
## 9336                                       India  1990 30.09983944
## 9338                                       India  1990 30.09983944
## 9344                                       India  1990 30.09983944
## 9346                                       India  1990 30.09983944
## 9347                                       India  1990 30.09983944
## 9348                                       India  1990 30.09983944
## 9349                                       India  1990 30.09983944
## 9350                                       India  1990 30.09983944
## 9351                                       India  1990 30.09983944
## 9355                                       India  1990 30.09983944
## 9356                                       India  1990 30.09983944
## 9357                                       India  1990 30.09983944
## 9364                  Iran (Islamic Republic of)  1990 12.76277027
## 9365                  Iran (Islamic Republic of)  1990 12.76277027
## 9366                  Iran (Islamic Republic of)  1990 12.76277027
## 9367                  Iran (Islamic Republic of)  1990 12.76277027
## 9368                  Iran (Islamic Republic of)  1990 12.76277027
## 9369                  Iran (Islamic Republic of)  1990 12.76277027
## 9370                  Iran (Islamic Republic of)  1990 12.76277027
## 9371                  Iran (Islamic Republic of)  1990 12.76277027
## 9372                  Iran (Islamic Republic of)  1990 12.76277027
## 9373                  Iran (Islamic Republic of)  1990 12.76277027
## 9374                  Iran (Islamic Republic of)  1990 12.76277027
## 9375                  Iran (Islamic Republic of)  1990 12.76277027
## 9378                  Iran (Islamic Republic of)  1990 12.76277027
## 9379                  Iran (Islamic Republic of)  1990 12.76277027
## 9380                  Iran (Islamic Republic of)  1990 12.76277027
## 9381                  Iran (Islamic Republic of)  1990 12.76277027
## 9384                  Iran (Islamic Republic of)  1990 12.76277027
## 9385                  Iran (Islamic Republic of)  1990 12.76277027
## 9386                  Iran (Islamic Republic of)  1990 12.76277027
## 9387                  Iran (Islamic Republic of)  1990 12.76277027
## 9388                  Iran (Islamic Republic of)  1990 12.76277027
## 9389                  Iran (Islamic Republic of)  1990 12.76277027
## 9390                  Iran (Islamic Republic of)  1990 12.76277027
## 9394                  Iran (Islamic Republic of)  1990 12.76277027
## 9395                  Iran (Islamic Republic of)  1990 12.76277027
## 9396                  Iran (Islamic Republic of)  1990 12.76277027
## 9397                  Iran (Islamic Republic of)  1990 12.76277027
## 9399                  Iran (Islamic Republic of)  1990 12.76277027
## 9404                  Iran (Islamic Republic of)  1990 12.76277027
## 9405                  Iran (Islamic Republic of)  1990 12.76277027
## 9417                  Iran (Islamic Republic of)  1990 12.76277027
## 9427                  Iran (Islamic Republic of)  1990 12.76277027
## 9428                  Iran (Islamic Republic of)  1990 12.76277027
## 9429                  Iran (Islamic Republic of)  1990 12.76277027
## 9430                  Iran (Islamic Republic of)  1990 12.76277027
## 9431                  Iran (Islamic Republic of)  1990 12.76277027
## 9432                  Iran (Islamic Republic of)  1990 12.76277027
## 9433                  Iran (Islamic Republic of)  1990 12.76277027
## 9435                  Iran (Islamic Republic of)  1990 12.76277027
## 9436                  Iran (Islamic Republic of)  1990 12.76277027
## 9437                  Iran (Islamic Republic of)  1990 12.76277027
## 9438                  Iran (Islamic Republic of)  1990 12.76277027
## 9447                  Iran (Islamic Republic of)  1990 12.76277027
## 9448                  Iran (Islamic Republic of)  1990 12.76277027
## 9449                  Iran (Islamic Republic of)  1990 12.76277027
## 9450                  Iran (Islamic Republic of)  1990 12.76277027
## 9451                  Iran (Islamic Republic of)  1990 12.76277027
## 9452                  Iran (Islamic Republic of)  1990 12.76277027
## 9470                  Iran (Islamic Republic of)  1990 12.76277027
## 9472                  Iran (Islamic Republic of)  1990 12.76277027
## 9474                  Iran (Islamic Republic of)  1990 12.76277027
## 9480                  Iran (Islamic Republic of)  1990 12.76277027
## 9481                  Iran (Islamic Republic of)  1990 12.76277027
## 9482                  Iran (Islamic Republic of)  1990 12.76277027
## 9483                  Iran (Islamic Republic of)  1990 12.76277027
## 9484                  Iran (Islamic Republic of)  1990 12.76277027
## 9485                  Iran (Islamic Republic of)  1990 12.76277027
## 9490                  Iran (Islamic Republic of)  1990 12.76277027
## 9491                  Iran (Islamic Republic of)  1990 12.76277027
## 9492                  Iran (Islamic Republic of)  1990 12.76277027
## 9499                                       Italy  1990  3.46573684
## 9500                                       Italy  1990  3.46573684
## 9501                                       Italy  1990  3.46573684
## 9502                                       Italy  1990  3.46573684
## 9503                                       Italy  1990  3.46573684
## 9504                                       Italy  1990  3.46573684
## 9505                                       Italy  1990  3.46573684
## 9506                                       Italy  1990  3.46573684
## 9507                                       Italy  1990  3.46573684
## 9508                                       Italy  1990  3.46573684
## 9509                                       Italy  1990  3.46573684
## 9510                                       Italy  1990  3.46573684
## 9511                                       Italy  1990  3.46573684
## 9512                                       Italy  1990  3.46573684
## 9514                                       Italy  1990  3.46573684
## 9515                                       Italy  1990  3.46573684
## 9516                                       Italy  1990  3.46573684
## 9517                                       Italy  1990  3.46573684
## 9519                                       Italy  1990  3.46573684
## 9520                                       Italy  1990  3.46573684
## 9521                                       Italy  1990  3.46573684
## 9522                                       Italy  1990  3.46573684
## 9523                                       Italy  1990  3.46573684
## 9524                                       Italy  1990  3.46573684
## 9529                                       Italy  1990  3.46573684
## 9530                                       Italy  1990  3.46573684
## 9531                                       Italy  1990  3.46573684
## 9532                                       Italy  1990  3.46573684
## 9533                                       Italy  1990  3.46573684
## 9535                                       Italy  1990  3.46573684
## 9540                                       Italy  1990  3.46573684
## 9541                                       Italy  1990  3.46573684
## 9552                                       Italy  1990  3.46573684
## 9562                                       Italy  1990  3.46573684
## 9563                                       Italy  1990  3.46573684
## 9564                                       Italy  1990  3.46573684
## 9565                                       Italy  1990  3.46573684
## 9566                                       Italy  1990  3.46573684
## 9567                                       Italy  1990  3.46573684
## 9568                                       Italy  1990  3.46573684
## 9569                                       Italy  1990  3.46573684
## 9570                                       Italy  1990  3.46573684
## 9571                                       Italy  1990  3.46573684
## 9572                                       Italy  1990  3.46573684
## 9582                                       Italy  1990  3.46573684
## 9583                                       Italy  1990  3.46573684
## 9584                                       Italy  1990  3.46573684
## 9585                                       Italy  1990  3.46573684
## 9586                                       Italy  1990  3.46573684
## 9604                                       Italy  1990  3.46573684
## 9605                                       Italy  1990  3.46573684
## 9607                                       Italy  1990  3.46573684
## 9614                                       Italy  1990  3.46573684
## 9616                                       Italy  1990  3.46573684
## 9617                                       Italy  1990  3.46573684
## 9618                                       Italy  1990  3.46573684
## 9619                                       Italy  1990  3.46573684
## 9623                                       Italy  1990  3.46573684
## 9624                                       Italy  1990  3.46573684
## 9625                                       Italy  1990  3.46573684
## 9632                                      Jordan  1990  7.71135192
## 9633                                      Jordan  1990  7.71135192
## 9634                                      Jordan  1990  7.71135192
## 9635                                      Jordan  1990  7.71135192
## 9636                                      Jordan  1990  7.71135192
## 9637                                      Jordan  1990  7.71135192
## 9638                                      Jordan  1990  7.71135192
## 9639                                      Jordan  1990  7.71135192
## 9640                                      Jordan  1990  7.71135192
## 9641                                      Jordan  1990  7.71135192
## 9642                                      Jordan  1990  7.71135192
## 9643                                      Jordan  1990  7.71135192
## 9644                                      Jordan  1990  7.71135192
## 9645                                      Jordan  1990  7.71135192
## 9647                                      Jordan  1990  7.71135192
## 9648                                      Jordan  1990  7.71135192
## 9649                                      Jordan  1990  7.71135192
## 9650                                      Jordan  1990  7.71135192
## 9652                                      Jordan  1990  7.71135192
## 9653                                      Jordan  1990  7.71135192
## 9654                                      Jordan  1990  7.71135192
## 9655                                      Jordan  1990  7.71135192
## 9656                                      Jordan  1990  7.71135192
## 9657                                      Jordan  1990  7.71135192
## 9666                                      Jordan  1990  7.71135192
## 9667                                      Jordan  1990  7.71135192
## 9668                                      Jordan  1990  7.71135192
## 9670                                      Jordan  1990  7.71135192
## 9675                                      Jordan  1990  7.71135192
## 9676                                      Jordan  1990  7.71135192
## 9677                                      Jordan  1990  7.71135192
## 9679                                      Jordan  1990  7.71135192
## 9688                                      Jordan  1990  7.71135192
## 9689                                      Jordan  1990  7.71135192
## 9693                                      Jordan  1990  7.71135192
## 9699                                      Jordan  1990  7.71135192
## 9700                                      Jordan  1990  7.71135192
## 9701                                      Jordan  1990  7.71135192
## 9702                                      Jordan  1990  7.71135192
## 9703                                      Jordan  1990  7.71135192
## 9704                                      Jordan  1990  7.71135192
## 9705                                      Jordan  1990  7.71135192
## 9706                                      Jordan  1990  7.71135192
## 9707                                      Jordan  1990  7.71135192
## 9708                                      Jordan  1990  7.71135192
## 9709                                      Jordan  1990  7.71135192
## 9718                                      Jordan  1990  7.71135192
## 9719                                      Jordan  1990  7.71135192
## 9720                                      Jordan  1990  7.71135192
## 9721                                      Jordan  1990  7.71135192
## 9722                                      Jordan  1990  7.71135192
## 9723                                      Jordan  1990  7.71135192
## 9740                                      Jordan  1990  7.71135192
## 9755                                      Jordan  1990  7.71135192
## 9757                                      Jordan  1990  7.71135192
## 9763                                      Jordan  1990  7.71135192
## 9764                                      Jordan  1990  7.71135192
## 9765                                      Jordan  1990  7.71135192
## 9766                                      Jordan  1990  7.71135192
## 9767                                      Jordan  1990  7.71135192
## 9768                                      Jordan  1990  7.71135192
## 9769                                      Jordan  1990  7.71135192
## 9774                                      Jordan  1990  7.71135192
## 9775                                      Jordan  1990  7.71135192
## 9776                                      Jordan  1990  7.71135192
## 9782                                       Kenya  1990 29.51857890
## 9783                                       Kenya  1990 29.51857890
## 9784                                       Kenya  1990 29.51857890
## 9785                                       Kenya  1990 29.51857890
## 9786                                       Kenya  1990 29.51857890
## 9787                                       Kenya  1990 29.51857890
## 9788                                       Kenya  1990 29.51857890
## 9789                                       Kenya  1990 29.51857890
## 9790                                       Kenya  1990 29.51857890
## 9791                                       Kenya  1990 29.51857890
## 9792                                       Kenya  1990 29.51857890
## 9793                                       Kenya  1990 29.51857890
## 9797                                       Kenya  1990 29.51857890
## 9798                                       Kenya  1990 29.51857890
## 9802                                       Kenya  1990 29.51857890
## 9803                                       Kenya  1990 29.51857890
## 9804                                       Kenya  1990 29.51857890
## 9805                                       Kenya  1990 29.51857890
## 9806                                       Kenya  1990 29.51857890
## 9807                                       Kenya  1990 29.51857890
## 9812                                       Kenya  1990 29.51857890
## 9813                                       Kenya  1990 29.51857890
## 9814                                       Kenya  1990 29.51857890
## 9816                                       Kenya  1990 29.51857890
## 9817                                       Kenya  1990 29.51857890
## 9821                                       Kenya  1990 29.51857890
## 9822                                       Kenya  1990 29.51857890
## 9833                                       Kenya  1990 29.51857890
## 9844                                       Kenya  1990 29.51857890
## 9845                                       Kenya  1990 29.51857890
## 9846                                       Kenya  1990 29.51857890
## 9847                                       Kenya  1990 29.51857890
## 9848                                       Kenya  1990 29.51857890
## 9849                                       Kenya  1990 29.51857890
## 9850                                       Kenya  1990 29.51857890
## 9852                                       Kenya  1990 29.51857890
## 9853                                       Kenya  1990 29.51857890
## 9854                                       Kenya  1990 29.51857890
## 9855                                       Kenya  1990 29.51857890
## 9864                                       Kenya  1990 29.51857890
## 9865                                       Kenya  1990 29.51857890
## 9866                                       Kenya  1990 29.51857890
## 9867                                       Kenya  1990 29.51857890
## 9868                                       Kenya  1990 29.51857890
## 9869                                       Kenya  1990 29.51857890
## 9885                                       Kenya  1990 29.51857890
## 9899                                       Kenya  1990 29.51857890
## 9901                                       Kenya  1990 29.51857890
## 9909                                       Kenya  1990 29.51857890
## 9910                                       Kenya  1990 29.51857890
## 9911                                       Kenya  1990 29.51857890
## 9912                                       Kenya  1990 29.51857890
## 9913                                       Kenya  1990 29.51857890
## 9914                                       Kenya  1990 29.51857890
## 9918                                       Kenya  1990 29.51857890
## 9919                                       Kenya  1990 29.51857890
## 9920                                       Kenya  1990 29.51857890
## 9927                                    Kiribati  1990 18.60236543
## 9928                                    Kiribati  1990 18.60236543
## 9929                                    Kiribati  1990 18.60236543
## 9930                                    Kiribati  1990 18.60236543
## 9931                                    Kiribati  1990 18.60236543
## 9932                                    Kiribati  1990 18.60236543
## 9933                                    Kiribati  1990 18.60236543
## 9934                                    Kiribati  1990 18.60236543
## 9935                                    Kiribati  1990 18.60236543
## 9937                                    Kiribati  1990 18.60236543
## 9938                                    Kiribati  1990 18.60236543
## 9939                                    Kiribati  1990 18.60236543
## 9941                                    Kiribati  1990 18.60236543
## 9942                                    Kiribati  1990 18.60236543
## 9946                                    Kiribati  1990 18.60236543
## 9948                                    Kiribati  1990 18.60236543
## 9949                                    Kiribati  1990 18.60236543
## 9950                                    Kiribati  1990 18.60236543
## 9952                                    Kiribati  1990 18.60236543
## 9956                                    Kiribati  1990 18.60236543
## 9957                                    Kiribati  1990 18.60236543
## 9962                                    Kiribati  1990 18.60236543
## 9963                                    Kiribati  1990 18.60236543
## 9969                                    Kiribati  1990 18.60236543
## 9970                                    Kiribati  1990 18.60236543
## 9971                                    Kiribati  1990 18.60236543
## 9972                                    Kiribati  1990 18.60236543
## 9973                                    Kiribati  1990 18.60236543
## 9974                                    Kiribati  1990 18.60236543
## 9975                                    Kiribati  1990 18.60236543
## 9976                                    Kiribati  1990 18.60236543
## 9977                                    Kiribati  1990 18.60236543
## 9978                                    Kiribati  1990 18.60236543
## 9987                                    Kiribati  1990 18.60236543
## 9988                                    Kiribati  1990 18.60236543
## 9989                                    Kiribati  1990 18.60236543
## 9990                                    Kiribati  1990 18.60236543
## 9991                                    Kiribati  1990 18.60236543
## 10007                                   Kiribati  1990 18.60236543
## 10009                                   Kiribati  1990 18.60236543
## 10013                                   Kiribati  1990 18.60236543
## 10014                                   Kiribati  1990 18.60236543
## 10015                                   Kiribati  1990 18.60236543
## 10016                                   Kiribati  1990 18.60236543
## 10017                                   Kiribati  1990 18.60236543
## 10019                                 Kyrgyzstan  1990 33.53643909
## 10020                                 Kyrgyzstan  1990 33.53643909
## 10021                                 Kyrgyzstan  1990 33.53643909
## 10022                                 Kyrgyzstan  1990 33.53643909
## 10023                                 Kyrgyzstan  1990 33.53643909
## 10024                                 Kyrgyzstan  1990 33.53643909
## 10025                                 Kyrgyzstan  1990 33.53643909
## 10026                                 Kyrgyzstan  1990 33.53643909
## 10027                                 Kyrgyzstan  1990 33.53643909
## 10028                                 Kyrgyzstan  1990 33.53643909
## 10029                                 Kyrgyzstan  1990 33.53643909
## 10030                                 Kyrgyzstan  1990 33.53643909
## 10034                                 Kyrgyzstan  1990 33.53643909
## 10035                                 Kyrgyzstan  1990 33.53643909
## 10036                                 Kyrgyzstan  1990 33.53643909
## 10037                                 Kyrgyzstan  1990 33.53643909
## 10039                                 Kyrgyzstan  1990 33.53643909
## 10040                                 Kyrgyzstan  1990 33.53643909
## 10041                                 Kyrgyzstan  1990 33.53643909
## 10042                                 Kyrgyzstan  1990 33.53643909
## 10043                                 Kyrgyzstan  1990 33.53643909
## 10044                                 Kyrgyzstan  1990 33.53643909
## 10052                                 Kyrgyzstan  1990 33.53643909
## 10054                                 Kyrgyzstan  1990 33.53643909
## 10059                                 Kyrgyzstan  1990 33.53643909
## 10060                                 Kyrgyzstan  1990 33.53643909
## 10072                                 Kyrgyzstan  1990 33.53643909
## 10073                                 Kyrgyzstan  1990 33.53643909
## 10084                                 Kyrgyzstan  1990 33.53643909
## 10087                                 Kyrgyzstan  1990 33.53643909
## 10088                                 Kyrgyzstan  1990 33.53643909
## 10089                                 Kyrgyzstan  1990 33.53643909
## 10090                                 Kyrgyzstan  1990 33.53643909
## 10092                                 Kyrgyzstan  1990 33.53643909
## 10093                                 Kyrgyzstan  1990 33.53643909
## 10094                                 Kyrgyzstan  1990 33.53643909
## 10095                                 Kyrgyzstan  1990 33.53643909
## 10105                                 Kyrgyzstan  1990 33.53643909
## 10106                                 Kyrgyzstan  1990 33.53643909
## 10107                                 Kyrgyzstan  1990 33.53643909
## 10108                                 Kyrgyzstan  1990 33.53643909
## 10109                                 Kyrgyzstan  1990 33.53643909
## 10126                                 Kyrgyzstan  1990 33.53643909
## 10143                                 Kyrgyzstan  1990 33.53643909
## 10150                                 Kyrgyzstan  1990 33.53643909
## 10153                                 Kyrgyzstan  1990 33.53643909
## 10162                                 Kyrgyzstan  1990 33.53643909
## 10163                                 Kyrgyzstan  1990 33.53643909
## 10164                                 Kyrgyzstan  1990 33.53643909
## 10171           Lao People's Democratic Republic  1990 61.22825659
## 10172           Lao People's Democratic Republic  1990 61.22825659
## 10173           Lao People's Democratic Republic  1990 61.22825659
## 10174           Lao People's Democratic Republic  1990 61.22825659
## 10175           Lao People's Democratic Republic  1990 61.22825659
## 10176           Lao People's Democratic Republic  1990 61.22825659
## 10177           Lao People's Democratic Republic  1990 61.22825659
## 10178           Lao People's Democratic Republic  1990 61.22825659
## 10179           Lao People's Democratic Republic  1990 61.22825659
## 10180           Lao People's Democratic Republic  1990 61.22825659
## 10181           Lao People's Democratic Republic  1990 61.22825659
## 10182           Lao People's Democratic Republic  1990 61.22825659
## 10183           Lao People's Democratic Republic  1990 61.22825659
## 10184           Lao People's Democratic Republic  1990 61.22825659
## 10186           Lao People's Democratic Republic  1990 61.22825659
## 10187           Lao People's Democratic Republic  1990 61.22825659
## 10188           Lao People's Democratic Republic  1990 61.22825659
## 10189           Lao People's Democratic Republic  1990 61.22825659
## 10191           Lao People's Democratic Republic  1990 61.22825659
## 10192           Lao People's Democratic Republic  1990 61.22825659
## 10193           Lao People's Democratic Republic  1990 61.22825659
## 10194           Lao People's Democratic Republic  1990 61.22825659
## 10195           Lao People's Democratic Republic  1990 61.22825659
## 10196           Lao People's Democratic Republic  1990 61.22825659
## 10199           Lao People's Democratic Republic  1990 61.22825659
## 10201           Lao People's Democratic Republic  1990 61.22825659
## 10202           Lao People's Democratic Republic  1990 61.22825659
## 10203           Lao People's Democratic Republic  1990 61.22825659
## 10209           Lao People's Democratic Republic  1990 61.22825659
## 10210           Lao People's Democratic Republic  1990 61.22825659
## 10222           Lao People's Democratic Republic  1990 61.22825659
## 10234           Lao People's Democratic Republic  1990 61.22825659
## 10235           Lao People's Democratic Republic  1990 61.22825659
## 10236           Lao People's Democratic Republic  1990 61.22825659
## 10237           Lao People's Democratic Republic  1990 61.22825659
## 10238           Lao People's Democratic Republic  1990 61.22825659
## 10239           Lao People's Democratic Republic  1990 61.22825659
## 10240           Lao People's Democratic Republic  1990 61.22825659
## 10242           Lao People's Democratic Republic  1990 61.22825659
## 10243           Lao People's Democratic Republic  1990 61.22825659
## 10244           Lao People's Democratic Republic  1990 61.22825659
## 10245           Lao People's Democratic Republic  1990 61.22825659
## 10254           Lao People's Democratic Republic  1990 61.22825659
## 10255           Lao People's Democratic Republic  1990 61.22825659
## 10256           Lao People's Democratic Republic  1990 61.22825659
## 10258           Lao People's Democratic Republic  1990 61.22825659
## 10259           Lao People's Democratic Republic  1990 61.22825659
## 10276           Lao People's Democratic Republic  1990 61.22825659
## 10299           Lao People's Democratic Republic  1990 61.22825659
## 10301           Lao People's Democratic Republic  1990 61.22825659
## 10302           Lao People's Democratic Republic  1990 61.22825659
## 10303           Lao People's Democratic Republic  1990 61.22825659
## 10304           Lao People's Democratic Republic  1990 61.22825659
## 10305           Lao People's Democratic Republic  1990 61.22825659
## 10306           Lao People's Democratic Republic  1990 61.22825659
## 10311           Lao People's Democratic Republic  1990 61.22825659
## 10312           Lao People's Democratic Republic  1990 61.22825659
## 10313           Lao People's Democratic Republic  1990 61.22825659
## 10320                                    Lesotho  1990 13.59783811
## 10321                                    Lesotho  1990 13.59783811
## 10322                                    Lesotho  1990 13.59783811
## 10323                                    Lesotho  1990 13.59783811
## 10324                                    Lesotho  1990 13.59783811
## 10325                                    Lesotho  1990 13.59783811
## 10326                                    Lesotho  1990 13.59783811
## 10327                                    Lesotho  1990 13.59783811
## 10328                                    Lesotho  1990 13.59783811
## 10329                                    Lesotho  1990 13.59783811
## 10330                                    Lesotho  1990 13.59783811
## 10331                                    Lesotho  1990 13.59783811
## 10332                                    Lesotho  1990 13.59783811
## 10333                                    Lesotho  1990 13.59783811
## 10336                                    Lesotho  1990 13.59783811
## 10337                                    Lesotho  1990 13.59783811
## 10338                                    Lesotho  1990 13.59783811
## 10340                                    Lesotho  1990 13.59783811
## 10341                                    Lesotho  1990 13.59783811
## 10342                                    Lesotho  1990 13.59783811
## 10343                                    Lesotho  1990 13.59783811
## 10344                                    Lesotho  1990 13.59783811
## 10345                                    Lesotho  1990 13.59783811
## 10346                                    Lesotho  1990 13.59783811
## 10349                                    Lesotho  1990 13.59783811
## 10351                                    Lesotho  1990 13.59783811
## 10352                                    Lesotho  1990 13.59783811
## 10353                                    Lesotho  1990 13.59783811
## 10360                                    Lesotho  1990 13.59783811
## 10361                                    Lesotho  1990 13.59783811
## 10373                                    Lesotho  1990 13.59783811
## 10383                                    Lesotho  1990 13.59783811
## 10384                                    Lesotho  1990 13.59783811
## 10385                                    Lesotho  1990 13.59783811
## 10386                                    Lesotho  1990 13.59783811
## 10387                                    Lesotho  1990 13.59783811
## 10388                                    Lesotho  1990 13.59783811
## 10389                                    Lesotho  1990 13.59783811
## 10390                                    Lesotho  1990 13.59783811
## 10391                                    Lesotho  1990 13.59783811
## 10392                                    Lesotho  1990 13.59783811
## 10393                                    Lesotho  1990 13.59783811
## 10402                                    Lesotho  1990 13.59783811
## 10403                                    Lesotho  1990 13.59783811
## 10404                                    Lesotho  1990 13.59783811
## 10406                                    Lesotho  1990 13.59783811
## 10407                                    Lesotho  1990 13.59783811
## 10424                                    Lesotho  1990 13.59783811
## 10448                                    Lesotho  1990 13.59783811
## 10450                                    Lesotho  1990 13.59783811
## 10452                                    Lesotho  1990 13.59783811
## 10453                                    Lesotho  1990 13.59783811
## 10454                                    Lesotho  1990 13.59783811
## 10455                                    Lesotho  1990 13.59783811
## 10459                                    Lesotho  1990 13.59783811
## 10460                                    Lesotho  1990 13.59783811
## 10461                                    Lesotho  1990 13.59783811
## 10468                                    Liberia  1990 54.37044745
## 10469                                    Liberia  1990 54.37044745
## 10470                                    Liberia  1990 54.37044745
## 10471                                    Liberia  1990 54.37044745
## 10472                                    Liberia  1990 54.37044745
## 10473                                    Liberia  1990 54.37044745
## 10474                                    Liberia  1990 54.37044745
## 10475                                    Liberia  1990 54.37044745
## 10476                                    Liberia  1990 54.37044745
## 10487                                    Liberia  1990 54.37044745
## 10488                                    Liberia  1990 54.37044745
## 10489                                    Liberia  1990 54.37044745
## 10490                                    Liberia  1990 54.37044745
## 10491                                    Liberia  1990 54.37044745
## 10492                                    Liberia  1990 54.37044745
## 10497                                    Liberia  1990 54.37044745
## 10498                                    Liberia  1990 54.37044745
## 10499                                    Liberia  1990 54.37044745
## 10505                                    Liberia  1990 54.37044745
## 10506                                    Liberia  1990 54.37044745
## 10518                                    Liberia  1990 54.37044745
## 10530                                    Liberia  1990 54.37044745
## 10533                                    Liberia  1990 54.37044745
## 10534                                    Liberia  1990 54.37044745
## 10535                                    Liberia  1990 54.37044745
## 10536                                    Liberia  1990 54.37044745
## 10538                                    Liberia  1990 54.37044745
## 10539                                    Liberia  1990 54.37044745
## 10540                                    Liberia  1990 54.37044745
## 10541                                    Liberia  1990 54.37044745
## 10551                                    Liberia  1990 54.37044745
## 10552                                    Liberia  1990 54.37044745
## 10554                                    Liberia  1990 54.37044745
## 10555                                    Liberia  1990 54.37044745
## 10570                                    Liberia  1990 54.37044745
## 10592                                    Liberia  1990 54.37044745
## 10596                                    Liberia  1990 54.37044745
## 10604                                    Liberia  1990 54.37044745
## 10605                                    Liberia  1990 54.37044745
## 10606                                    Liberia  1990 54.37044745
## 10613                                 Madagascar  1990 28.57762837
## 10614                                 Madagascar  1990 28.57762837
## 10615                                 Madagascar  1990 28.57762837
## 10616                                 Madagascar  1990 28.57762837
## 10617                                 Madagascar  1990 28.57762837
## 10618                                 Madagascar  1990 28.57762837
## 10619                                 Madagascar  1990 28.57762837
## 10620                                 Madagascar  1990 28.57762837
## 10621                                 Madagascar  1990 28.57762837
## 10623                                 Madagascar  1990 28.57762837
## 10624                                 Madagascar  1990 28.57762837
## 10625                                 Madagascar  1990 28.57762837
## 10628                                 Madagascar  1990 28.57762837
## 10629                                 Madagascar  1990 28.57762837
## 10630                                 Madagascar  1990 28.57762837
## 10635                                 Madagascar  1990 28.57762837
## 10637                                 Madagascar  1990 28.57762837
## 10638                                 Madagascar  1990 28.57762837
## 10639                                 Madagascar  1990 28.57762837
## 10640                                 Madagascar  1990 28.57762837
## 10641                                 Madagascar  1990 28.57762837
## 10647                                 Madagascar  1990 28.57762837
## 10648                                 Madagascar  1990 28.57762837
## 10660                                 Madagascar  1990 28.57762837
## 10670                                 Madagascar  1990 28.57762837
## 10671                                 Madagascar  1990 28.57762837
## 10672                                 Madagascar  1990 28.57762837
## 10673                                 Madagascar  1990 28.57762837
## 10674                                 Madagascar  1990 28.57762837
## 10675                                 Madagascar  1990 28.57762837
## 10676                                 Madagascar  1990 28.57762837
## 10678                                 Madagascar  1990 28.57762837
## 10679                                 Madagascar  1990 28.57762837
## 10680                                 Madagascar  1990 28.57762837
## 10681                                 Madagascar  1990 28.57762837
## 10690                                 Madagascar  1990 28.57762837
## 10691                                 Madagascar  1990 28.57762837
## 10692                                 Madagascar  1990 28.57762837
## 10693                                 Madagascar  1990 28.57762837
## 10694                                 Madagascar  1990 28.57762837
## 10695                                 Madagascar  1990 28.57762837
## 10712                                 Madagascar  1990 28.57762837
## 10727                                 Madagascar  1990 28.57762837
## 10729                                 Madagascar  1990 28.57762837
## 10736                                 Madagascar  1990 28.57762837
## 10738                                 Madagascar  1990 28.57762837
## 10739                                 Madagascar  1990 28.57762837
## 10740                                 Madagascar  1990 28.57762837
## 10741                                 Madagascar  1990 28.57762837
## 10742                                 Madagascar  1990 28.57762837
## 10743                                 Madagascar  1990 28.57762837
## 10747                                 Madagascar  1990 28.57762837
## 10748                                 Madagascar  1990 28.57762837
## 10749                                 Madagascar  1990 28.57762837
## 10756                                     Malawi  1990 45.00001595
## 10757                                     Malawi  1990 45.00001595
## 10758                                     Malawi  1990 45.00001595
## 10759                                     Malawi  1990 45.00001595
## 10760                                     Malawi  1990 45.00001595
## 10761                                     Malawi  1990 45.00001595
## 10762                                     Malawi  1990 45.00001595
## 10763                                     Malawi  1990 45.00001595
## 10764                                     Malawi  1990 45.00001595
## 10765                                     Malawi  1990 45.00001595
## 10766                                     Malawi  1990 45.00001595
## 10767                                     Malawi  1990 45.00001595
## 10768                                     Malawi  1990 45.00001595
## 10769                                     Malawi  1990 45.00001595
## 10770                                     Malawi  1990 45.00001595
## 10772                                     Malawi  1990 45.00001595
## 10773                                     Malawi  1990 45.00001595
## 10774                                     Malawi  1990 45.00001595
## 10776                                     Malawi  1990 45.00001595
## 10777                                     Malawi  1990 45.00001595
## 10778                                     Malawi  1990 45.00001595
## 10779                                     Malawi  1990 45.00001595
## 10780                                     Malawi  1990 45.00001595
## 10781                                     Malawi  1990 45.00001595
## 10782                                     Malawi  1990 45.00001595
## 10786                                     Malawi  1990 45.00001595
## 10787                                     Malawi  1990 45.00001595
## 10788                                     Malawi  1990 45.00001595
## 10794                                     Malawi  1990 45.00001595
## 10795                                     Malawi  1990 45.00001595
## 10806                                     Malawi  1990 45.00001595
## 10817                                     Malawi  1990 45.00001595
## 10818                                     Malawi  1990 45.00001595
## 10819                                     Malawi  1990 45.00001595
## 10820                                     Malawi  1990 45.00001595
## 10821                                     Malawi  1990 45.00001595
## 10822                                     Malawi  1990 45.00001595
## 10823                                     Malawi  1990 45.00001595
## 10825                                     Malawi  1990 45.00001595
## 10826                                     Malawi  1990 45.00001595
## 10827                                     Malawi  1990 45.00001595
## 10828                                     Malawi  1990 45.00001595
## 10837                                     Malawi  1990 45.00001595
## 10838                                     Malawi  1990 45.00001595
## 10839                                     Malawi  1990 45.00001595
## 10840                                     Malawi  1990 45.00001595
## 10841                                     Malawi  1990 45.00001595
## 10842                                     Malawi  1990 45.00001595
## 10859                                     Malawi  1990 45.00001595
## 10874                                     Malawi  1990 45.00001595
## 10876                                     Malawi  1990 45.00001595
## 10884                                     Malawi  1990 45.00001595
## 10885                                     Malawi  1990 45.00001595
## 10886                                     Malawi  1990 45.00001595
## 10887                                     Malawi  1990 45.00001595
## 10888                                     Malawi  1990 45.00001595
## 10894                                     Malawi  1990 45.00001595
## 10895                                     Malawi  1990 45.00001595
## 10896                                     Malawi  1990 45.00001595
## 10902                                   Malaysia  1990 15.21653328
## 10903                                   Malaysia  1990 15.21653328
## 10904                                   Malaysia  1990 15.21653328
## 10905                                   Malaysia  1990 15.21653328
## 10906                                   Malaysia  1990 15.21653328
## 10907                                   Malaysia  1990 15.21653328
## 10908                                   Malaysia  1990 15.21653328
## 10909                                   Malaysia  1990 15.21653328
## 10910                                   Malaysia  1990 15.21653328
## 10911                                   Malaysia  1990 15.21653328
## 10912                                   Malaysia  1990 15.21653328
## 10913                                   Malaysia  1990 15.21653328
## 10917                                   Malaysia  1990 15.21653328
## 10918                                   Malaysia  1990 15.21653328
## 10919                                   Malaysia  1990 15.21653328
## 10920                                   Malaysia  1990 15.21653328
## 10922                                   Malaysia  1990 15.21653328
## 10923                                   Malaysia  1990 15.21653328
## 10924                                   Malaysia  1990 15.21653328
## 10925                                   Malaysia  1990 15.21653328
## 10926                                   Malaysia  1990 15.21653328
## 10927                                   Malaysia  1990 15.21653328
## 10928                                   Malaysia  1990 15.21653328
## 10931                                   Malaysia  1990 15.21653328
## 10933                                   Malaysia  1990 15.21653328
## 10934                                   Malaysia  1990 15.21653328
## 10935                                   Malaysia  1990 15.21653328
## 10937                                   Malaysia  1990 15.21653328
## 10938                                   Malaysia  1990 15.21653328
## 10942                                   Malaysia  1990 15.21653328
## 10943                                   Malaysia  1990 15.21653328
## 10955                                   Malaysia  1990 15.21653328
## 10956                                   Malaysia  1990 15.21653328
## 10964                                   Malaysia  1990 15.21653328
## 10965                                   Malaysia  1990 15.21653328
## 10966                                   Malaysia  1990 15.21653328
## 10967                                   Malaysia  1990 15.21653328
## 10968                                   Malaysia  1990 15.21653328
## 10969                                   Malaysia  1990 15.21653328
## 10970                                   Malaysia  1990 15.21653328
## 10972                                   Malaysia  1990 15.21653328
## 10973                                   Malaysia  1990 15.21653328
## 10974                                   Malaysia  1990 15.21653328
## 10975                                   Malaysia  1990 15.21653328
## 10983                                   Malaysia  1990 15.21653328
## 10984                                   Malaysia  1990 15.21653328
## 10985                                   Malaysia  1990 15.21653328
## 10986                                   Malaysia  1990 15.21653328
## 10987                                   Malaysia  1990 15.21653328
## 10988                                   Malaysia  1990 15.21653328
## 11003                                   Malaysia  1990 15.21653328
## 11005                                   Malaysia  1990 15.21653328
## 11007                                   Malaysia  1990 15.21653328
## 11013                                   Malaysia  1990 15.21653328
## 11015                                   Malaysia  1990 15.21653328
## 11016                                   Malaysia  1990 15.21653328
## 11017                                   Malaysia  1990 15.21653328
## 11018                                   Malaysia  1990 15.21653328
## 11019                                   Malaysia  1990 15.21653328
## 11020                                   Malaysia  1990 15.21653328
## 11024                                   Malaysia  1990 15.21653328
## 11025                                   Malaysia  1990 15.21653328
## 11026                                   Malaysia  1990 15.21653328
## 11033                                       Mali  1990 39.46055509
## 11034                                       Mali  1990 39.46055509
## 11035                                       Mali  1990 39.46055509
## 11036                                       Mali  1990 39.46055509
## 11037                                       Mali  1990 39.46055509
## 11038                                       Mali  1990 39.46055509
## 11039                                       Mali  1990 39.46055509
## 11040                                       Mali  1990 39.46055509
## 11041                                       Mali  1990 39.46055509
## 11042                                       Mali  1990 39.46055509
## 11043                                       Mali  1990 39.46055509
## 11044                                       Mali  1990 39.46055509
## 11045                                       Mali  1990 39.46055509
## 11046                                       Mali  1990 39.46055509
## 11049                                       Mali  1990 39.46055509
## 11050                                       Mali  1990 39.46055509
## 11051                                       Mali  1990 39.46055509
## 11053                                       Mali  1990 39.46055509
## 11054                                       Mali  1990 39.46055509
## 11055                                       Mali  1990 39.46055509
## 11056                                       Mali  1990 39.46055509
## 11057                                       Mali  1990 39.46055509
## 11058                                       Mali  1990 39.46055509
## 11061                                       Mali  1990 39.46055509
## 11063                                       Mali  1990 39.46055509
## 11064                                       Mali  1990 39.46055509
## 11065                                       Mali  1990 39.46055509
## 11071                                       Mali  1990 39.46055509
## 11072                                       Mali  1990 39.46055509
## 11084                                       Mali  1990 39.46055509
## 11095                                       Mali  1990 39.46055509
## 11096                                       Mali  1990 39.46055509
## 11097                                       Mali  1990 39.46055509
## 11098                                       Mali  1990 39.46055509
## 11099                                       Mali  1990 39.46055509
## 11100                                       Mali  1990 39.46055509
## 11101                                       Mali  1990 39.46055509
## 11103                                       Mali  1990 39.46055509
## 11104                                       Mali  1990 39.46055509
## 11105                                       Mali  1990 39.46055509
## 11106                                       Mali  1990 39.46055509
## 11115                                       Mali  1990 39.46055509
## 11116                                       Mali  1990 39.46055509
## 11117                                       Mali  1990 39.46055509
## 11118                                       Mali  1990 39.46055509
## 11119                                       Mali  1990 39.46055509
## 11120                                       Mali  1990 39.46055509
## 11137                                       Mali  1990 39.46055509
## 11152                                       Mali  1990 39.46055509
## 11154                                       Mali  1990 39.46055509
## 11163                                       Mali  1990 39.46055509
## 11164                                       Mali  1990 39.46055509
## 11165                                       Mali  1990 39.46055509
## 11166                                       Mali  1990 39.46055509
## 11167                                       Mali  1990 39.46055509
## 11168                                       Mali  1990 39.46055509
## 11173                                       Mali  1990 39.46055509
## 11174                                       Mali  1990 39.46055509
## 11175                                       Mali  1990 39.46055509
## 11182                                      Malta  1990  3.46678566
## 11183                                      Malta  1990  3.46678566
## 11184                                      Malta  1990  3.46678566
## 11185                                      Malta  1990  3.46678566
## 11186                                      Malta  1990  3.46678566
## 11187                                      Malta  1990  3.46678566
## 11188                                      Malta  1990  3.46678566
## 11189                                      Malta  1990  3.46678566
## 11190                                      Malta  1990  3.46678566
## 11191                                      Malta  1990  3.46678566
## 11192                                      Malta  1990  3.46678566
## 11193                                      Malta  1990  3.46678566
## 11194                                      Malta  1990  3.46678566
## 11195                                      Malta  1990  3.46678566
## 11196                                      Malta  1990  3.46678566
## 11197                                      Malta  1990  3.46678566
## 11198                                      Malta  1990  3.46678566
## 11199                                      Malta  1990  3.46678566
## 11200                                      Malta  1990  3.46678566
## 11202                                      Malta  1990  3.46678566
## 11203                                      Malta  1990  3.46678566
## 11204                                      Malta  1990  3.46678566
## 11205                                      Malta  1990  3.46678566
## 11206                                      Malta  1990  3.46678566
## 11207                                      Malta  1990  3.46678566
## 11213                                      Malta  1990  3.46678566
## 11214                                      Malta  1990  3.46678566
## 11215                                      Malta  1990  3.46678566
## 11216                                      Malta  1990  3.46678566
## 11217                                      Malta  1990  3.46678566
## 11219                                      Malta  1990  3.46678566
## 11224                                      Malta  1990  3.46678566
## 11225                                      Malta  1990  3.46678566
## 11235                                      Malta  1990  3.46678566
## 11245                                      Malta  1990  3.46678566
## 11246                                      Malta  1990  3.46678566
## 11247                                      Malta  1990  3.46678566
## 11248                                      Malta  1990  3.46678566
## 11249                                      Malta  1990  3.46678566
## 11250                                      Malta  1990  3.46678566
## 11251                                      Malta  1990  3.46678566
## 11252                                      Malta  1990  3.46678566
## 11253                                      Malta  1990  3.46678566
## 11254                                      Malta  1990  3.46678566
## 11255                                      Malta  1990  3.46678566
## 11263                                      Malta  1990  3.46678566
## 11264                                      Malta  1990  3.46678566
## 11265                                      Malta  1990  3.46678566
## 11266                                      Malta  1990  3.46678566
## 11267                                      Malta  1990  3.46678566
## 11285                                      Malta  1990  3.46678566
## 11287                                      Malta  1990  3.46678566
## 11292                                      Malta  1990  3.46678566
## 11294                                      Malta  1990  3.46678566
## 11295                                      Malta  1990  3.46678566
## 11296                                      Malta  1990  3.46678566
## 11297                                      Malta  1990  3.46678566
## 11298                                      Malta  1990  3.46678566
## 11302                                      Malta  1990  3.46678566
## 11303                                      Malta  1990  3.46678566
## 11304                                      Malta  1990  3.46678566
## 11311                                 Mauritania  1990 29.61771693
## 11312                                 Mauritania  1990 29.61771693
## 11313                                 Mauritania  1990 29.61771693
## 11314                                 Mauritania  1990 29.61771693
## 11315                                 Mauritania  1990 29.61771693
## 11316                                 Mauritania  1990 29.61771693
## 11317                                 Mauritania  1990 29.61771693
## 11318                                 Mauritania  1990 29.61771693
## 11319                                 Mauritania  1990 29.61771693
## 11320                                 Mauritania  1990 29.61771693
## 11321                                 Mauritania  1990 29.61771693
## 11322                                 Mauritania  1990 29.61771693
## 11323                                 Mauritania  1990 29.61771693
## 11324                                 Mauritania  1990 29.61771693
## 11327                                 Mauritania  1990 29.61771693
## 11328                                 Mauritania  1990 29.61771693
## 11329                                 Mauritania  1990 29.61771693
## 11331                                 Mauritania  1990 29.61771693
## 11332                                 Mauritania  1990 29.61771693
## 11333                                 Mauritania  1990 29.61771693
## 11334                                 Mauritania  1990 29.61771693
## 11335                                 Mauritania  1990 29.61771693
## 11336                                 Mauritania  1990 29.61771693
## 11337                                 Mauritania  1990 29.61771693
## 11339                                 Mauritania  1990 29.61771693
## 11341                                 Mauritania  1990 29.61771693
## 11342                                 Mauritania  1990 29.61771693
## 11343                                 Mauritania  1990 29.61771693
## 11349                                 Mauritania  1990 29.61771693
## 11350                                 Mauritania  1990 29.61771693
## 11362                                 Mauritania  1990 29.61771693
## 11372                                 Mauritania  1990 29.61771693
## 11373                                 Mauritania  1990 29.61771693
## 11374                                 Mauritania  1990 29.61771693
## 11375                                 Mauritania  1990 29.61771693
## 11376                                 Mauritania  1990 29.61771693
## 11377                                 Mauritania  1990 29.61771693
## 11378                                 Mauritania  1990 29.61771693
## 11380                                 Mauritania  1990 29.61771693
## 11381                                 Mauritania  1990 29.61771693
## 11382                                 Mauritania  1990 29.61771693
## 11383                                 Mauritania  1990 29.61771693
## 11392                                 Mauritania  1990 29.61771693
## 11393                                 Mauritania  1990 29.61771693
## 11394                                 Mauritania  1990 29.61771693
## 11395                                 Mauritania  1990 29.61771693
## 11396                                 Mauritania  1990 29.61771693
## 11397                                 Mauritania  1990 29.61771693
## 11414                                 Mauritania  1990 29.61771693
## 11429                                 Mauritania  1990 29.61771693
## 11431                                 Mauritania  1990 29.61771693
## 11439                                 Mauritania  1990 29.61771693
## 11440                                 Mauritania  1990 29.61771693
## 11441                                 Mauritania  1990 29.61771693
## 11442                                 Mauritania  1990 29.61771693
## 11443                                 Mauritania  1990 29.61771693
## 11444                                 Mauritania  1990 29.61771693
## 11449                                 Mauritania  1990 29.61771693
## 11450                                 Mauritania  1990 29.61771693
## 11451                                 Mauritania  1990 29.61771693
## 11458                                  Mauritius  1990 12.85051624
## 11459                                  Mauritius  1990 12.85051624
## 11460                                  Mauritius  1990 12.85051624
## 11461                                  Mauritius  1990 12.85051624
## 11462                                  Mauritius  1990 12.85051624
## 11463                                  Mauritius  1990 12.85051624
## 11464                                  Mauritius  1990 12.85051624
## 11465                                  Mauritius  1990 12.85051624
## 11466                                  Mauritius  1990 12.85051624
## 11467                                  Mauritius  1990 12.85051624
## 11468                                  Mauritius  1990 12.85051624
## 11469                                  Mauritius  1990 12.85051624
## 11470                                  Mauritius  1990 12.85051624
## 11471                                  Mauritius  1990 12.85051624
## 11472                                  Mauritius  1990 12.85051624
## 11473                                  Mauritius  1990 12.85051624
## 11474                                  Mauritius  1990 12.85051624
## 11475                                  Mauritius  1990 12.85051624
## 11476                                  Mauritius  1990 12.85051624
## 11477                                  Mauritius  1990 12.85051624
## 11478                                  Mauritius  1990 12.85051624
## 11479                                  Mauritius  1990 12.85051624
## 11480                                  Mauritius  1990 12.85051624
## 11481                                  Mauritius  1990 12.85051624
## 11482                                  Mauritius  1990 12.85051624
## 11483                                  Mauritius  1990 12.85051624
## 11484                                  Mauritius  1990 12.85051624
## 11487                                  Mauritius  1990 12.85051624
## 11488                                  Mauritius  1990 12.85051624
## 11489                                  Mauritius  1990 12.85051624
## 11490                                  Mauritius  1990 12.85051624
## 11491                                  Mauritius  1990 12.85051624
## 11493                                  Mauritius  1990 12.85051624
## 11494                                  Mauritius  1990 12.85051624
## 11498                                  Mauritius  1990 12.85051624
## 11499                                  Mauritius  1990 12.85051624
## 11509                                  Mauritius  1990 12.85051624
## 11510                                  Mauritius  1990 12.85051624
## 11518                                  Mauritius  1990 12.85051624
## 11519                                  Mauritius  1990 12.85051624
## 11520                                  Mauritius  1990 12.85051624
## 11521                                  Mauritius  1990 12.85051624
## 11522                                  Mauritius  1990 12.85051624
## 11523                                  Mauritius  1990 12.85051624
## 11524                                  Mauritius  1990 12.85051624
## 11525                                  Mauritius  1990 12.85051624
## 11526                                  Mauritius  1990 12.85051624
## 11527                                  Mauritius  1990 12.85051624
## 11535                                  Mauritius  1990 12.85051624
## 11536                                  Mauritius  1990 12.85051624
## 11537                                  Mauritius  1990 12.85051624
## 11538                                  Mauritius  1990 12.85051624
## 11539                                  Mauritius  1990 12.85051624
## 11540                                  Mauritius  1990 12.85051624
## 11558                                  Mauritius  1990 12.85051624
## 11560                                  Mauritius  1990 12.85051624
## 11562                                  Mauritius  1990 12.85051624
## 11567                                  Mauritius  1990 12.85051624
## 11569                                  Mauritius  1990 12.85051624
## 11570                                  Mauritius  1990 12.85051624
## 11571                                  Mauritius  1990 12.85051624
## 11572                                  Mauritius  1990 12.85051624
## 11573                                  Mauritius  1990 12.85051624
## 11578                                  Mauritius  1990 12.85051624
## 11579                                  Mauritius  1990 12.85051624
## 11580                                  Mauritius  1990 12.85051624
## 11586                                     Mexico  1990  7.84787691
## 11587                                     Mexico  1990  7.84787691
## 11588                                     Mexico  1990  7.84787691
## 11589                                     Mexico  1990  7.84787691
## 11590                                     Mexico  1990  7.84787691
## 11591                                     Mexico  1990  7.84787691
## 11592                                     Mexico  1990  7.84787691
## 11593                                     Mexico  1990  7.84787691
## 11594                                     Mexico  1990  7.84787691
## 11595                                     Mexico  1990  7.84787691
## 11596                                     Mexico  1990  7.84787691
## 11597                                     Mexico  1990  7.84787691
## 11598                                     Mexico  1990  7.84787691
## 11599                                     Mexico  1990  7.84787691
## 11600                                     Mexico  1990  7.84787691
## 11601                                     Mexico  1990  7.84787691
## 11602                                     Mexico  1990  7.84787691
## 11603                                     Mexico  1990  7.84787691
## 11604                                     Mexico  1990  7.84787691
## 11605                                     Mexico  1990  7.84787691
## 11606                                     Mexico  1990  7.84787691
## 11607                                     Mexico  1990  7.84787691
## 11608                                     Mexico  1990  7.84787691
## 11609                                     Mexico  1990  7.84787691
## 11610                                     Mexico  1990  7.84787691
## 11611                                     Mexico  1990  7.84787691
## 11612                                     Mexico  1990  7.84787691
## 11618                                     Mexico  1990  7.84787691
## 11619                                     Mexico  1990  7.84787691
## 11620                                     Mexico  1990  7.84787691
## 11621                                     Mexico  1990  7.84787691
## 11622                                     Mexico  1990  7.84787691
## 11624                                     Mexico  1990  7.84787691
## 11629                                     Mexico  1990  7.84787691
## 11630                                     Mexico  1990  7.84787691
## 11643                                     Mexico  1990  7.84787691
## 11644                                     Mexico  1990  7.84787691
## 11654                                     Mexico  1990  7.84787691
## 11655                                     Mexico  1990  7.84787691
## 11656                                     Mexico  1990  7.84787691
## 11657                                     Mexico  1990  7.84787691
## 11658                                     Mexico  1990  7.84787691
## 11659                                     Mexico  1990  7.84787691
## 11660                                     Mexico  1990  7.84787691
## 11662                                     Mexico  1990  7.84787691
## 11663                                     Mexico  1990  7.84787691
## 11664                                     Mexico  1990  7.84787691
## 11665                                     Mexico  1990  7.84787691
## 11674                                     Mexico  1990  7.84787691
## 11675                                     Mexico  1990  7.84787691
## 11676                                     Mexico  1990  7.84787691
## 11677                                     Mexico  1990  7.84787691
## 11678                                     Mexico  1990  7.84787691
## 11679                                     Mexico  1990  7.84787691
## 11697                                     Mexico  1990  7.84787691
## 11712                                     Mexico  1990  7.84787691
## 11714                                     Mexico  1990  7.84787691
## 11721                                     Mexico  1990  7.84787691
## 11723                                     Mexico  1990  7.84787691
## 11724                                     Mexico  1990  7.84787691
## 11725                                     Mexico  1990  7.84787691
## 11726                                     Mexico  1990  7.84787691
## 11727                                     Mexico  1990  7.84787691
## 11728                                     Mexico  1990  7.84787691
## 11733                                     Mexico  1990  7.84787691
## 11734                                     Mexico  1990  7.84787691
## 11735                                     Mexico  1990  7.84787691
## 11742                                   Mongolia  1990 12.85691542
## 11743                                   Mongolia  1990 12.85691542
## 11744                                   Mongolia  1990 12.85691542
## 11745                                   Mongolia  1990 12.85691542
## 11746                                   Mongolia  1990 12.85691542
## 11747                                   Mongolia  1990 12.85691542
## 11748                                   Mongolia  1990 12.85691542
## 11749                                   Mongolia  1990 12.85691542
## 11750                                   Mongolia  1990 12.85691542
## 11751                                   Mongolia  1990 12.85691542
## 11752                                   Mongolia  1990 12.85691542
## 11753                                   Mongolia  1990 12.85691542
## 11757                                   Mongolia  1990 12.85691542
## 11758                                   Mongolia  1990 12.85691542
## 11759                                   Mongolia  1990 12.85691542
## 11760                                   Mongolia  1990 12.85691542
## 11762                                   Mongolia  1990 12.85691542
## 11763                                   Mongolia  1990 12.85691542
## 11764                                   Mongolia  1990 12.85691542
## 11765                                   Mongolia  1990 12.85691542
## 11766                                   Mongolia  1990 12.85691542
## 11767                                   Mongolia  1990 12.85691542
## 11771                                   Mongolia  1990 12.85691542
## 11773                                   Mongolia  1990 12.85691542
## 11774                                   Mongolia  1990 12.85691542
## 11775                                   Mongolia  1990 12.85691542
## 11777                                   Mongolia  1990 12.85691542
## 11782                                   Mongolia  1990 12.85691542
## 11783                                   Mongolia  1990 12.85691542
## 11796                                   Mongolia  1990 12.85691542
## 11797                                   Mongolia  1990 12.85691542
## 11806                                   Mongolia  1990 12.85691542
## 11807                                   Mongolia  1990 12.85691542
## 11808                                   Mongolia  1990 12.85691542
## 11809                                   Mongolia  1990 12.85691542
## 11810                                   Mongolia  1990 12.85691542
## 11811                                   Mongolia  1990 12.85691542
## 11812                                   Mongolia  1990 12.85691542
## 11813                                   Mongolia  1990 12.85691542
## 11814                                   Mongolia  1990 12.85691542
## 11815                                   Mongolia  1990 12.85691542
## 11816                                   Mongolia  1990 12.85691542
## 11826                                   Mongolia  1990 12.85691542
## 11827                                   Mongolia  1990 12.85691542
## 11828                                   Mongolia  1990 12.85691542
## 11829                                   Mongolia  1990 12.85691542
## 11830                                   Mongolia  1990 12.85691542
## 11847                                   Mongolia  1990 12.85691542
## 11862                                   Mongolia  1990 12.85691542
## 11864                                   Mongolia  1990 12.85691542
## 11871                                   Mongolia  1990 12.85691542
## 11874                                   Mongolia  1990 12.85691542
## 11876                                   Mongolia  1990 12.85691542
## 11883                                   Mongolia  1990 12.85691542
## 11884                                   Mongolia  1990 12.85691542
## 11885                                   Mongolia  1990 12.85691542
## 11892                                    Morocco  1990 17.22135358
## 11893                                    Morocco  1990 17.22135358
## 11894                                    Morocco  1990 17.22135358
## 11895                                    Morocco  1990 17.22135358
## 11896                                    Morocco  1990 17.22135358
## 11897                                    Morocco  1990 17.22135358
## 11898                                    Morocco  1990 17.22135358
## 11899                                    Morocco  1990 17.22135358
## 11900                                    Morocco  1990 17.22135358
## 11901                                    Morocco  1990 17.22135358
## 11902                                    Morocco  1990 17.22135358
## 11903                                    Morocco  1990 17.22135358
## 11904                                    Morocco  1990 17.22135358
## 11905                                    Morocco  1990 17.22135358
## 11906                                    Morocco  1990 17.22135358
## 11907                                    Morocco  1990 17.22135358
## 11908                                    Morocco  1990 17.22135358
## 11909                                    Morocco  1990 17.22135358
## 11910                                    Morocco  1990 17.22135358
## 11912                                    Morocco  1990 17.22135358
## 11913                                    Morocco  1990 17.22135358
## 11914                                    Morocco  1990 17.22135358
## 11915                                    Morocco  1990 17.22135358
## 11916                                    Morocco  1990 17.22135358
## 11917                                    Morocco  1990 17.22135358
## 11918                                    Morocco  1990 17.22135358
## 11921                                    Morocco  1990 17.22135358
## 11923                                    Morocco  1990 17.22135358
## 11924                                    Morocco  1990 17.22135358
## 11925                                    Morocco  1990 17.22135358
## 11927                                    Morocco  1990 17.22135358
## 11932                                    Morocco  1990 17.22135358
## 11933                                    Morocco  1990 17.22135358
## 11945                                    Morocco  1990 17.22135358
## 11955                                    Morocco  1990 17.22135358
## 11956                                    Morocco  1990 17.22135358
## 11957                                    Morocco  1990 17.22135358
## 11958                                    Morocco  1990 17.22135358
## 11959                                    Morocco  1990 17.22135358
## 11960                                    Morocco  1990 17.22135358
## 11961                                    Morocco  1990 17.22135358
## 11962                                    Morocco  1990 17.22135358
## 11963                                    Morocco  1990 17.22135358
## 11964                                    Morocco  1990 17.22135358
## 11965                                    Morocco  1990 17.22135358
## 11974                                    Morocco  1990 17.22135358
## 11975                                    Morocco  1990 17.22135358
## 11976                                    Morocco  1990 17.22135358
## 11977                                    Morocco  1990 17.22135358
## 11978                                    Morocco  1990 17.22135358
## 11979                                    Morocco  1990 17.22135358
## 11997                                    Morocco  1990 17.22135358
## 12012                                    Morocco  1990 17.22135358
## 12014                                    Morocco  1990 17.22135358
## 12019                                    Morocco  1990 17.22135358
## 12021                                    Morocco  1990 17.22135358
## 12022                                    Morocco  1990 17.22135358
## 12023                                    Morocco  1990 17.22135358
## 12024                                    Morocco  1990 17.22135358
## 12025                                    Morocco  1990 17.22135358
## 12026                                    Morocco  1990 17.22135358
## 12030                                    Morocco  1990 17.22135358
## 12031                                    Morocco  1990 17.22135358
## 12032                                    Morocco  1990 17.22135358
## 12038                                 Mozambique  1990 37.11874001
## 12039                                 Mozambique  1990 37.11874001
## 12040                                 Mozambique  1990 37.11874001
## 12041                                 Mozambique  1990 37.11874001
## 12042                                 Mozambique  1990 37.11874001
## 12043                                 Mozambique  1990 37.11874001
## 12044                                 Mozambique  1990 37.11874001
## 12045                                 Mozambique  1990 37.11874001
## 12046                                 Mozambique  1990 37.11874001
## 12047                                 Mozambique  1990 37.11874001
## 12048                                 Mozambique  1990 37.11874001
## 12049                                 Mozambique  1990 37.11874001
## 12050                                 Mozambique  1990 37.11874001
## 12051                                 Mozambique  1990 37.11874001
## 12054                                 Mozambique  1990 37.11874001
## 12055                                 Mozambique  1990 37.11874001
## 12058                                 Mozambique  1990 37.11874001
## 12059                                 Mozambique  1990 37.11874001
## 12060                                 Mozambique  1990 37.11874001
## 12061                                 Mozambique  1990 37.11874001
## 12064                                 Mozambique  1990 37.11874001
## 12066                                 Mozambique  1990 37.11874001
## 12068                                 Mozambique  1990 37.11874001
## 12069                                 Mozambique  1990 37.11874001
## 12070                                 Mozambique  1990 37.11874001
## 12072                                 Mozambique  1990 37.11874001
## 12073                                 Mozambique  1990 37.11874001
## 12077                                 Mozambique  1990 37.11874001
## 12078                                 Mozambique  1990 37.11874001
## 12091                                 Mozambique  1990 37.11874001
## 12102                                 Mozambique  1990 37.11874001
## 12103                                 Mozambique  1990 37.11874001
## 12104                                 Mozambique  1990 37.11874001
## 12105                                 Mozambique  1990 37.11874001
## 12106                                 Mozambique  1990 37.11874001
## 12107                                 Mozambique  1990 37.11874001
## 12108                                 Mozambique  1990 37.11874001
## 12110                                 Mozambique  1990 37.11874001
## 12111                                 Mozambique  1990 37.11874001
## 12112                                 Mozambique  1990 37.11874001
## 12113                                 Mozambique  1990 37.11874001
## 12122                                 Mozambique  1990 37.11874001
## 12123                                 Mozambique  1990 37.11874001
## 12124                                 Mozambique  1990 37.11874001
## 12125                                 Mozambique  1990 37.11874001
## 12126                                 Mozambique  1990 37.11874001
## 12127                                 Mozambique  1990 37.11874001
## 12144                                 Mozambique  1990 37.11874001
## 12161                                 Mozambique  1990 37.11874001
## 12168                                 Mozambique  1990 37.11874001
## 12170                                 Mozambique  1990 37.11874001
## 12171                                 Mozambique  1990 37.11874001
## 12172                                 Mozambique  1990 37.11874001
## 12173                                 Mozambique  1990 37.11874001
## 12175                                 Mozambique  1990 37.11874001
## 12179                                 Mozambique  1990 37.11874001
## 12180                                 Mozambique  1990 37.11874001
## 12181                                 Mozambique  1990 37.11874001
## 12188                                    Namibia  1990  9.78852979
## 12189                                    Namibia  1990  9.78852979
## 12190                                    Namibia  1990  9.78852979
## 12191                                    Namibia  1990  9.78852979
## 12192                                    Namibia  1990  9.78852979
## 12193                                    Namibia  1990  9.78852979
## 12194                                    Namibia  1990  9.78852979
## 12195                                    Namibia  1990  9.78852979
## 12196                                    Namibia  1990  9.78852979
## 12197                                    Namibia  1990  9.78852979
## 12198                                    Namibia  1990  9.78852979
## 12199                                    Namibia  1990  9.78852979
## 12200                                    Namibia  1990  9.78852979
## 12201                                    Namibia  1990  9.78852979
## 12203                                    Namibia  1990  9.78852979
## 12204                                    Namibia  1990  9.78852979
## 12205                                    Namibia  1990  9.78852979
## 12208                                    Namibia  1990  9.78852979
## 12209                                    Namibia  1990  9.78852979
## 12210                                    Namibia  1990  9.78852979
## 12211                                    Namibia  1990  9.78852979
## 12212                                    Namibia  1990  9.78852979
## 12213                                    Namibia  1990  9.78852979
## 12218                                    Namibia  1990  9.78852979
## 12219                                    Namibia  1990  9.78852979
## 12220                                    Namibia  1990  9.78852979
## 12228                                    Namibia  1990  9.78852979
## 12239                                    Namibia  1990  9.78852979
## 12250                                    Namibia  1990  9.78852979
## 12253                                    Namibia  1990  9.78852979
## 12254                                    Namibia  1990  9.78852979
## 12255                                    Namibia  1990  9.78852979
## 12256                                    Namibia  1990  9.78852979
## 12258                                    Namibia  1990  9.78852979
## 12259                                    Namibia  1990  9.78852979
## 12260                                    Namibia  1990  9.78852979
## 12261                                    Namibia  1990  9.78852979
## 12270                                    Namibia  1990  9.78852979
## 12271                                    Namibia  1990  9.78852979
## 12272                                    Namibia  1990  9.78852979
## 12273                                    Namibia  1990  9.78852979
## 12274                                    Namibia  1990  9.78852979
## 12275                                    Namibia  1990  9.78852979
## 12292                                    Namibia  1990  9.78852979
## 12307                                    Namibia  1990  9.78852979
## 12309                                    Namibia  1990  9.78852979
## 12316                                    Namibia  1990  9.78852979
## 12318                                    Namibia  1990  9.78852979
## 12319                                    Namibia  1990  9.78852979
## 12320                                    Namibia  1990  9.78852979
## 12321                                    Namibia  1990  9.78852979
## 12322                                    Namibia  1990  9.78852979
## 12326                                    Namibia  1990  9.78852979
## 12327                                    Namibia  1990  9.78852979
## 12328                                    Namibia  1990  9.78852979
## 12335                                      Nepal  1990 51.63276998
## 12336                                      Nepal  1990 51.63276998
## 12337                                      Nepal  1990 51.63276998
## 12338                                      Nepal  1990 51.63276998
## 12339                                      Nepal  1990 51.63276998
## 12340                                      Nepal  1990 51.63276998
## 12341                                      Nepal  1990 51.63276998
## 12342                                      Nepal  1990 51.63276998
## 12343                                      Nepal  1990 51.63276998
## 12344                                      Nepal  1990 51.63276998
## 12345                                      Nepal  1990 51.63276998
## 12346                                      Nepal  1990 51.63276998
## 12347                                      Nepal  1990 51.63276998
## 12348                                      Nepal  1990 51.63276998
## 12351                                      Nepal  1990 51.63276998
## 12352                                      Nepal  1990 51.63276998
## 12353                                      Nepal  1990 51.63276998
## 12355                                      Nepal  1990 51.63276998
## 12356                                      Nepal  1990 51.63276998
## 12357                                      Nepal  1990 51.63276998
## 12358                                      Nepal  1990 51.63276998
## 12359                                      Nepal  1990 51.63276998
## 12360                                      Nepal  1990 51.63276998
## 12364                                      Nepal  1990 51.63276998
## 12366                                      Nepal  1990 51.63276998
## 12367                                      Nepal  1990 51.63276998
## 12368                                      Nepal  1990 51.63276998
## 12370                                      Nepal  1990 51.63276998
## 12375                                      Nepal  1990 51.63276998
## 12376                                      Nepal  1990 51.63276998
## 12387                                      Nepal  1990 51.63276998
## 12398                                      Nepal  1990 51.63276998
## 12399                                      Nepal  1990 51.63276998
## 12400                                      Nepal  1990 51.63276998
## 12401                                      Nepal  1990 51.63276998
## 12402                                      Nepal  1990 51.63276998
## 12403                                      Nepal  1990 51.63276998
## 12404                                      Nepal  1990 51.63276998
## 12406                                      Nepal  1990 51.63276998
## 12407                                      Nepal  1990 51.63276998
## 12408                                      Nepal  1990 51.63276998
## 12409                                      Nepal  1990 51.63276998
## 12418                                      Nepal  1990 51.63276998
## 12419                                      Nepal  1990 51.63276998
## 12420                                      Nepal  1990 51.63276998
## 12421                                      Nepal  1990 51.63276998
## 12422                                      Nepal  1990 51.63276998
## 12423                                      Nepal  1990 51.63276998
## 12440                                      Nepal  1990 51.63276998
## 12455                                      Nepal  1990 51.63276998
## 12457                                      Nepal  1990 51.63276998
## 12466                                      Nepal  1990 51.63276998
## 12467                                      Nepal  1990 51.63276998
## 12468                                      Nepal  1990 51.63276998
## 12469                                      Nepal  1990 51.63276998
## 12470                                      Nepal  1990 51.63276998
## 12476                                      Nepal  1990 51.63276998
## 12477                                      Nepal  1990 51.63276998
## 12478                                      Nepal  1990 51.63276998
## 12485                                Netherlands  1990  4.30001955
## 12486                                Netherlands  1990  4.30001955
## 12487                                Netherlands  1990  4.30001955
## 12488                                Netherlands  1990  4.30001955
## 12489                                Netherlands  1990  4.30001955
## 12490                                Netherlands  1990  4.30001955
## 12491                                Netherlands  1990  4.30001955
## 12492                                Netherlands  1990  4.30001955
## 12493                                Netherlands  1990  4.30001955
## 12494                                Netherlands  1990  4.30001955
## 12495                                Netherlands  1990  4.30001955
## 12496                                Netherlands  1990  4.30001955
## 12497                                Netherlands  1990  4.30001955
## 12498                                Netherlands  1990  4.30001955
## 12499                                Netherlands  1990  4.30001955
## 12500                                Netherlands  1990  4.30001955
## 12501                                Netherlands  1990  4.30001955
## 12502                                Netherlands  1990  4.30001955
## 12503                                Netherlands  1990  4.30001955
## 12504                                Netherlands  1990  4.30001955
## 12505                                Netherlands  1990  4.30001955
## 12506                                Netherlands  1990  4.30001955
## 12507                                Netherlands  1990  4.30001955
## 12508                                Netherlands  1990  4.30001955
## 12509                                Netherlands  1990  4.30001955
## 12514                                Netherlands  1990  4.30001955
## 12515                                Netherlands  1990  4.30001955
## 12516                                Netherlands  1990  4.30001955
## 12517                                Netherlands  1990  4.30001955
## 12518                                Netherlands  1990  4.30001955
## 12520                                Netherlands  1990  4.30001955
## 12525                                Netherlands  1990  4.30001955
## 12526                                Netherlands  1990  4.30001955
## 12537                                Netherlands  1990  4.30001955
## 12546                                Netherlands  1990  4.30001955
## 12547                                Netherlands  1990  4.30001955
## 12548                                Netherlands  1990  4.30001955
## 12549                                Netherlands  1990  4.30001955
## 12550                                Netherlands  1990  4.30001955
## 12551                                Netherlands  1990  4.30001955
## 12552                                Netherlands  1990  4.30001955
## 12553                                Netherlands  1990  4.30001955
## 12554                                Netherlands  1990  4.30001955
## 12555                                Netherlands  1990  4.30001955
## 12556                                Netherlands  1990  4.30001955
## 12566                                Netherlands  1990  4.30001955
## 12567                                Netherlands  1990  4.30001955
## 12568                                Netherlands  1990  4.30001955
## 12569                                Netherlands  1990  4.30001955
## 12570                                Netherlands  1990  4.30001955
## 12588                                Netherlands  1990  4.30001955
## 12589                                Netherlands  1990  4.30001955
## 12591                                Netherlands  1990  4.30001955
## 12598                                Netherlands  1990  4.30001955
## 12600                                Netherlands  1990  4.30001955
## 12601                                Netherlands  1990  4.30001955
## 12602                                Netherlands  1990  4.30001955
## 12603                                Netherlands  1990  4.30001955
## 12607                                Netherlands  1990  4.30001955
## 12608                                Netherlands  1990  4.30001955
## 12609                                Netherlands  1990  4.30001955
## 12616                                New Zealand  1990  8.17054022
## 12617                                New Zealand  1990  8.17054022
## 12618                                New Zealand  1990  8.17054022
## 12619                                New Zealand  1990  8.17054022
## 12620                                New Zealand  1990  8.17054022
## 12621                                New Zealand  1990  8.17054022
## 12622                                New Zealand  1990  8.17054022
## 12623                                New Zealand  1990  8.17054022
## 12624                                New Zealand  1990  8.17054022
## 12625                                New Zealand  1990  8.17054022
## 12626                                New Zealand  1990  8.17054022
## 12627                                New Zealand  1990  8.17054022
## 12628                                New Zealand  1990  8.17054022
## 12629                                New Zealand  1990  8.17054022
## 12632                                New Zealand  1990  8.17054022
## 12633                                New Zealand  1990  8.17054022
## 12634                                New Zealand  1990  8.17054022
## 12635                                New Zealand  1990  8.17054022
## 12636                                New Zealand  1990  8.17054022
## 12637                                New Zealand  1990  8.17054022
## 12638                                New Zealand  1990  8.17054022
## 12639                                New Zealand  1990  8.17054022
## 12640                                New Zealand  1990  8.17054022
## 12644                                New Zealand  1990  8.17054022
## 12645                                New Zealand  1990  8.17054022
## 12646                                New Zealand  1990  8.17054022
## 12647                                New Zealand  1990  8.17054022
## 12649                                New Zealand  1990  8.17054022
## 12654                                New Zealand  1990  8.17054022
## 12655                                New Zealand  1990  8.17054022
## 12665                                New Zealand  1990  8.17054022
## 12673                                New Zealand  1990  8.17054022
## 12674                                New Zealand  1990  8.17054022
## 12675                                New Zealand  1990  8.17054022
## 12676                                New Zealand  1990  8.17054022
## 12677                                New Zealand  1990  8.17054022
## 12678                                New Zealand  1990  8.17054022
## 12679                                New Zealand  1990  8.17054022
## 12680                                New Zealand  1990  8.17054022
## 12681                                New Zealand  1990  8.17054022
## 12682                                New Zealand  1990  8.17054022
## 12691                                New Zealand  1990  8.17054022
## 12692                                New Zealand  1990  8.17054022
## 12693                                New Zealand  1990  8.17054022
## 12694                                New Zealand  1990  8.17054022
## 12695                                New Zealand  1990  8.17054022
## 12696                                New Zealand  1990  8.17054022
## 12710                                New Zealand  1990  8.17054022
## 12713                                New Zealand  1990  8.17054022
## 12718                                New Zealand  1990  8.17054022
## 12720                                New Zealand  1990  8.17054022
## 12721                                New Zealand  1990  8.17054022
## 12723                                New Zealand  1990  8.17054022
## 12727                                New Zealand  1990  8.17054022
## 12728                                New Zealand  1990  8.17054022
## 12729                                New Zealand  1990  8.17054022
## 12737                                    Nigeria  1990 31.52480402
## 12738                                    Nigeria  1990 31.52480402
## 12739                                    Nigeria  1990 31.52480402
## 12740                                    Nigeria  1990 31.52480402
## 12741                                    Nigeria  1990 31.52480402
## 12742                                    Nigeria  1990 31.52480402
## 12743                                    Nigeria  1990 31.52480402
## 12744                                    Nigeria  1990 31.52480402
## 12745                                    Nigeria  1990 31.52480402
## 12747                                    Nigeria  1990 31.52480402
## 12751                                    Nigeria  1990 31.52480402
## 12752                                    Nigeria  1990 31.52480402
## 12760                                    Nigeria  1990 31.52480402
## 12761                                    Nigeria  1990 31.52480402
## 12762                                    Nigeria  1990 31.52480402
## 12763                                    Nigeria  1990 31.52480402
## 12765                                    Nigeria  1990 31.52480402
## 12770                                    Nigeria  1990 31.52480402
## 12771                                    Nigeria  1990 31.52480402
## 12772                                    Nigeria  1990 31.52480402
## 12774                                    Nigeria  1990 31.52480402
## 12781                                    Nigeria  1990 31.52480402
## 12782                                    Nigeria  1990 31.52480402
## 12786                                    Nigeria  1990 31.52480402
## 12793                                    Nigeria  1990 31.52480402
## 12794                                    Nigeria  1990 31.52480402
## 12795                                    Nigeria  1990 31.52480402
## 12796                                    Nigeria  1990 31.52480402
## 12797                                    Nigeria  1990 31.52480402
## 12798                                    Nigeria  1990 31.52480402
## 12799                                    Nigeria  1990 31.52480402
## 12801                                    Nigeria  1990 31.52480402
## 12802                                    Nigeria  1990 31.52480402
## 12803                                    Nigeria  1990 31.52480402
## 12804                                    Nigeria  1990 31.52480402
## 12813                                    Nigeria  1990 31.52480402
## 12814                                    Nigeria  1990 31.52480402
## 12815                                    Nigeria  1990 31.52480402
## 12816                                    Nigeria  1990 31.52480402
## 12817                                    Nigeria  1990 31.52480402
## 12818                                    Nigeria  1990 31.52480402
## 12834                                    Nigeria  1990 31.52480402
## 12849                                    Nigeria  1990 31.52480402
## 12851                                    Nigeria  1990 31.52480402
## 12857                                    Nigeria  1990 31.52480402
## 12858                                    Nigeria  1990 31.52480402
## 12859                                    Nigeria  1990 31.52480402
## 12860                                    Nigeria  1990 31.52480402
## 12861                                    Nigeria  1990 31.52480402
## 12862                                    Nigeria  1990 31.52480402
## 12863                                    Nigeria  1990 31.52480402
## 12868                                    Nigeria  1990 31.52480402
## 12869                                    Nigeria  1990 31.52480402
## 12870                                    Nigeria  1990 31.52480402
## 12877                                     Norway  1990  3.35764233
## 12878                                     Norway  1990  3.35764233
## 12879                                     Norway  1990  3.35764233
## 12880                                     Norway  1990  3.35764233
## 12881                                     Norway  1990  3.35764233
## 12882                                     Norway  1990  3.35764233
## 12883                                     Norway  1990  3.35764233
## 12884                                     Norway  1990  3.35764233
## 12885                                     Norway  1990  3.35764233
## 12886                                     Norway  1990  3.35764233
## 12887                                     Norway  1990  3.35764233
## 12888                                     Norway  1990  3.35764233
## 12889                                     Norway  1990  3.35764233
## 12890                                     Norway  1990  3.35764233
## 12891                                     Norway  1990  3.35764233
## 12892                                     Norway  1990  3.35764233
## 12893                                     Norway  1990  3.35764233
## 12894                                     Norway  1990  3.35764233
## 12895                                     Norway  1990  3.35764233
## 12896                                     Norway  1990  3.35764233
## 12897                                     Norway  1990  3.35764233
## 12898                                     Norway  1990  3.35764233
## 12899                                     Norway  1990  3.35764233
## 12900                                     Norway  1990  3.35764233
## 12901                                     Norway  1990  3.35764233
## 12902                                     Norway  1990  3.35764233
## 12909                                     Norway  1990  3.35764233
## 12910                                     Norway  1990  3.35764233
## 12911                                     Norway  1990  3.35764233
## 12913                                     Norway  1990  3.35764233
## 12918                                     Norway  1990  3.35764233
## 12919                                     Norway  1990  3.35764233
## 12929                                     Norway  1990  3.35764233
## 12930                                     Norway  1990  3.35764233
## 12938                                     Norway  1990  3.35764233
## 12939                                     Norway  1990  3.35764233
## 12940                                     Norway  1990  3.35764233
## 12941                                     Norway  1990  3.35764233
## 12942                                     Norway  1990  3.35764233
## 12943                                     Norway  1990  3.35764233
## 12944                                     Norway  1990  3.35764233
## 12945                                     Norway  1990  3.35764233
## 12946                                     Norway  1990  3.35764233
## 12947                                     Norway  1990  3.35764233
## 12956                                     Norway  1990  3.35764233
## 12957                                     Norway  1990  3.35764233
## 12958                                     Norway  1990  3.35764233
## 12959                                     Norway  1990  3.35764233
## 12960                                     Norway  1990  3.35764233
## 12961                                     Norway  1990  3.35764233
## 12979                                     Norway  1990  3.35764233
## 12980                                     Norway  1990  3.35764233
## 12982                                     Norway  1990  3.35764233
## 12989                                     Norway  1990  3.35764233
## 12991                                     Norway  1990  3.35764233
## 12992                                     Norway  1990  3.35764233
## 12993                                     Norway  1990  3.35764233
## 12994                                     Norway  1990  3.35764233
## 12998                                     Norway  1990  3.35764233
## 12999                                     Norway  1990  3.35764233
## 13000                                     Norway  1990  3.35764233
## 13007                                   Pakistan  1990 25.97877805
## 13008                                   Pakistan  1990 25.97877805
## 13009                                   Pakistan  1990 25.97877805
## 13010                                   Pakistan  1990 25.97877805
## 13011                                   Pakistan  1990 25.97877805
## 13012                                   Pakistan  1990 25.97877805
## 13013                                   Pakistan  1990 25.97877805
## 13014                                   Pakistan  1990 25.97877805
## 13015                                   Pakistan  1990 25.97877805
## 13016                                   Pakistan  1990 25.97877805
## 13017                                   Pakistan  1990 25.97877805
## 13018                                   Pakistan  1990 25.97877805
## 13019                                   Pakistan  1990 25.97877805
## 13020                                   Pakistan  1990 25.97877805
## 13021                                   Pakistan  1990 25.97877805
## 13023                                   Pakistan  1990 25.97877805
## 13024                                   Pakistan  1990 25.97877805
## 13025                                   Pakistan  1990 25.97877805
## 13027                                   Pakistan  1990 25.97877805
## 13028                                   Pakistan  1990 25.97877805
## 13029                                   Pakistan  1990 25.97877805
## 13030                                   Pakistan  1990 25.97877805
## 13031                                   Pakistan  1990 25.97877805
## 13032                                   Pakistan  1990 25.97877805
## 13035                                   Pakistan  1990 25.97877805
## 13037                                   Pakistan  1990 25.97877805
## 13038                                   Pakistan  1990 25.97877805
## 13039                                   Pakistan  1990 25.97877805
## 13041                                   Pakistan  1990 25.97877805
## 13046                                   Pakistan  1990 25.97877805
## 13047                                   Pakistan  1990 25.97877805
## 13059                                   Pakistan  1990 25.97877805
## 13069                                   Pakistan  1990 25.97877805
## 13070                                   Pakistan  1990 25.97877805
## 13071                                   Pakistan  1990 25.97877805
## 13072                                   Pakistan  1990 25.97877805
## 13073                                   Pakistan  1990 25.97877805
## 13074                                   Pakistan  1990 25.97877805
## 13075                                   Pakistan  1990 25.97877805
## 13077                                   Pakistan  1990 25.97877805
## 13078                                   Pakistan  1990 25.97877805
## 13079                                   Pakistan  1990 25.97877805
## 13080                                   Pakistan  1990 25.97877805
## 13089                                   Pakistan  1990 25.97877805
## 13090                                   Pakistan  1990 25.97877805
## 13091                                   Pakistan  1990 25.97877805
## 13092                                   Pakistan  1990 25.97877805
## 13093                                   Pakistan  1990 25.97877805
## 13094                                   Pakistan  1990 25.97877805
## 13112                                   Pakistan  1990 25.97877805
## 13127                                   Pakistan  1990 25.97877805
## 13129                                   Pakistan  1990 25.97877805
## 13136                                   Pakistan  1990 25.97877805
## 13138                                   Pakistan  1990 25.97877805
## 13139                                   Pakistan  1990 25.97877805
## 13140                                   Pakistan  1990 25.97877805
## 13141                                   Pakistan  1990 25.97877805
## 13142                                   Pakistan  1990 25.97877805
## 13143                                   Pakistan  1990 25.97877805
## 13147                                   Pakistan  1990 25.97877805
## 13148                                   Pakistan  1990 25.97877805
## 13149                                   Pakistan  1990 25.97877805
## 13156                                     Panama  1990  8.34917385
## 13157                                     Panama  1990  8.34917385
## 13158                                     Panama  1990  8.34917385
## 13159                                     Panama  1990  8.34917385
## 13160                                     Panama  1990  8.34917385
## 13161                                     Panama  1990  8.34917385
## 13162                                     Panama  1990  8.34917385
## 13163                                     Panama  1990  8.34917385
## 13164                                     Panama  1990  8.34917385
## 13165                                     Panama  1990  8.34917385
## 13166                                     Panama  1990  8.34917385
## 13167                                     Panama  1990  8.34917385
## 13171                                     Panama  1990  8.34917385
## 13172                                     Panama  1990  8.34917385
## 13173                                     Panama  1990  8.34917385
## 13174                                     Panama  1990  8.34917385
## 13175                                     Panama  1990  8.34917385
## 13176                                     Panama  1990  8.34917385
## 13177                                     Panama  1990  8.34917385
## 13179                                     Panama  1990  8.34917385
## 13180                                     Panama  1990  8.34917385
## 13181                                     Panama  1990  8.34917385
## 13185                                     Panama  1990  8.34917385
## 13187                                     Panama  1990  8.34917385
## 13188                                     Panama  1990  8.34917385
## 13189                                     Panama  1990  8.34917385
## 13191                                     Panama  1990  8.34917385
## 13196                                     Panama  1990  8.34917385
## 13197                                     Panama  1990  8.34917385
## 13210                                     Panama  1990  8.34917385
## 13211                                     Panama  1990  8.34917385
## 13220                                     Panama  1990  8.34917385
## 13221                                     Panama  1990  8.34917385
## 13222                                     Panama  1990  8.34917385
## 13223                                     Panama  1990  8.34917385
## 13224                                     Panama  1990  8.34917385
## 13225                                     Panama  1990  8.34917385
## 13226                                     Panama  1990  8.34917385
## 13228                                     Panama  1990  8.34917385
## 13229                                     Panama  1990  8.34917385
## 13230                                     Panama  1990  8.34917385
## 13231                                     Panama  1990  8.34917385
## 13240                                     Panama  1990  8.34917385
## 13241                                     Panama  1990  8.34917385
## 13242                                     Panama  1990  8.34917385
## 13243                                     Panama  1990  8.34917385
## 13244                                     Panama  1990  8.34917385
## 13245                                     Panama  1990  8.34917385
## 13262                                     Panama  1990  8.34917385
## 13264                                     Panama  1990  8.34917385
## 13266                                     Panama  1990  8.34917385
## 13272                                     Panama  1990  8.34917385
## 13274                                     Panama  1990  8.34917385
## 13275                                     Panama  1990  8.34917385
## 13276                                     Panama  1990  8.34917385
## 13277                                     Panama  1990  8.34917385
## 13278                                     Panama  1990  8.34917385
## 13279                                     Panama  1990  8.34917385
## 13284                                     Panama  1990  8.34917385
## 13285                                     Panama  1990  8.34917385
## 13286                                     Panama  1990  8.34917385
## 13293                           Papua New Guinea  1990 30.85898279
## 13294                           Papua New Guinea  1990 30.85898279
## 13295                           Papua New Guinea  1990 30.85898279
## 13296                           Papua New Guinea  1990 30.85898279
## 13297                           Papua New Guinea  1990 30.85898279
## 13298                           Papua New Guinea  1990 30.85898279
## 13299                           Papua New Guinea  1990 30.85898279
## 13300                           Papua New Guinea  1990 30.85898279
## 13301                           Papua New Guinea  1990 30.85898279
## 13302                           Papua New Guinea  1990 30.85898279
## 13303                           Papua New Guinea  1990 30.85898279
## 13304                           Papua New Guinea  1990 30.85898279
## 13305                           Papua New Guinea  1990 30.85898279
## 13306                           Papua New Guinea  1990 30.85898279
## 13307                           Papua New Guinea  1990 30.85898279
## 13308                           Papua New Guinea  1990 30.85898279
## 13309                           Papua New Guinea  1990 30.85898279
## 13312                           Papua New Guinea  1990 30.85898279
## 13313                           Papua New Guinea  1990 30.85898279
## 13314                           Papua New Guinea  1990 30.85898279
## 13315                           Papua New Guinea  1990 30.85898279
## 13316                           Papua New Guinea  1990 30.85898279
## 13317                           Papua New Guinea  1990 30.85898279
## 13318                           Papua New Guinea  1990 30.85898279
## 13320                           Papua New Guinea  1990 30.85898279
## 13321                           Papua New Guinea  1990 30.85898279
## 13322                           Papua New Guinea  1990 30.85898279
## 13323                           Papua New Guinea  1990 30.85898279
## 13329                           Papua New Guinea  1990 30.85898279
## 13330                           Papua New Guinea  1990 30.85898279
## 13341                           Papua New Guinea  1990 30.85898279
## 13342                           Papua New Guinea  1990 30.85898279
## 13350                           Papua New Guinea  1990 30.85898279
## 13351                           Papua New Guinea  1990 30.85898279
## 13352                           Papua New Guinea  1990 30.85898279
## 13353                           Papua New Guinea  1990 30.85898279
## 13354                           Papua New Guinea  1990 30.85898279
## 13355                           Papua New Guinea  1990 30.85898279
## 13356                           Papua New Guinea  1990 30.85898279
## 13358                           Papua New Guinea  1990 30.85898279
## 13359                           Papua New Guinea  1990 30.85898279
## 13360                           Papua New Guinea  1990 30.85898279
## 13361                           Papua New Guinea  1990 30.85898279
## 13369                           Papua New Guinea  1990 30.85898279
## 13370                           Papua New Guinea  1990 30.85898279
## 13371                           Papua New Guinea  1990 30.85898279
## 13372                           Papua New Guinea  1990 30.85898279
## 13373                           Papua New Guinea  1990 30.85898279
## 13374                           Papua New Guinea  1990 30.85898279
## 13386                           Papua New Guinea  1990 30.85898279
## 13388                           Papua New Guinea  1990 30.85898279
## 13390                           Papua New Guinea  1990 30.85898279
## 13395                           Papua New Guinea  1990 30.85898279
## 13396                           Papua New Guinea  1990 30.85898279
## 13397                           Papua New Guinea  1990 30.85898279
## 13398                           Papua New Guinea  1990 30.85898279
## 13399                           Papua New Guinea  1990 30.85898279
## 13400                           Papua New Guinea  1990 30.85898279
## 13404                           Papua New Guinea  1990 30.85898279
## 13405                           Papua New Guinea  1990 30.85898279
## 13406                           Papua New Guinea  1990 30.85898279
## 13413                                Philippines  1990 21.90381504
## 13414                                Philippines  1990 21.90381504
## 13415                                Philippines  1990 21.90381504
## 13416                                Philippines  1990 21.90381504
## 13417                                Philippines  1990 21.90381504
## 13418                                Philippines  1990 21.90381504
## 13419                                Philippines  1990 21.90381504
## 13420                                Philippines  1990 21.90381504
## 13421                                Philippines  1990 21.90381504
## 13422                                Philippines  1990 21.90381504
## 13423                                Philippines  1990 21.90381504
## 13424                                Philippines  1990 21.90381504
## 13428                                Philippines  1990 21.90381504
## 13429                                Philippines  1990 21.90381504
## 13430                                Philippines  1990 21.90381504
## 13431                                Philippines  1990 21.90381504
## 13432                                Philippines  1990 21.90381504
## 13433                                Philippines  1990 21.90381504
## 13434                                Philippines  1990 21.90381504
## 13435                                Philippines  1990 21.90381504
## 13436                                Philippines  1990 21.90381504
## 13437                                Philippines  1990 21.90381504
## 13438                                Philippines  1990 21.90381504
## 13442                                Philippines  1990 21.90381504
## 13444                                Philippines  1990 21.90381504
## 13445                                Philippines  1990 21.90381504
## 13446                                Philippines  1990 21.90381504
## 13448                                Philippines  1990 21.90381504
## 13453                                Philippines  1990 21.90381504
## 13454                                Philippines  1990 21.90381504
## 13467                                Philippines  1990 21.90381504
## 13478                                Philippines  1990 21.90381504
## 13479                                Philippines  1990 21.90381504
## 13480                                Philippines  1990 21.90381504
## 13481                                Philippines  1990 21.90381504
## 13482                                Philippines  1990 21.90381504
## 13483                                Philippines  1990 21.90381504
## 13484                                Philippines  1990 21.90381504
## 13486                                Philippines  1990 21.90381504
## 13487                                Philippines  1990 21.90381504
## 13488                                Philippines  1990 21.90381504
## 13489                                Philippines  1990 21.90381504
## 13498                                Philippines  1990 21.90381504
## 13499                                Philippines  1990 21.90381504
## 13500                                Philippines  1990 21.90381504
## 13501                                Philippines  1990 21.90381504
## 13502                                Philippines  1990 21.90381504
## 13503                                Philippines  1990 21.90381504
## 13520                                Philippines  1990 21.90381504
## 13535                                Philippines  1990 21.90381504
## 13537                                Philippines  1990 21.90381504
## 13544                                Philippines  1990 21.90381504
## 13546                                Philippines  1990 21.90381504
## 13547                                Philippines  1990 21.90381504
## 13548                                Philippines  1990 21.90381504
## 13549                                Philippines  1990 21.90381504
## 13550                                Philippines  1990 21.90381504
## 13551                                Philippines  1990 21.90381504
## 13555                                Philippines  1990 21.90381504
## 13556                                Philippines  1990 21.90381504
## 13557                                Philippines  1990 21.90381504
## 13565                                    Romania  1990 23.74064205
## 13566                                    Romania  1990 23.74064205
## 13567                                    Romania  1990 23.74064205
## 13568                                    Romania  1990 23.74064205
## 13569                                    Romania  1990 23.74064205
## 13570                                    Romania  1990 23.74064205
## 13571                                    Romania  1990 23.74064205
## 13572                                    Romania  1990 23.74064205
## 13573                                    Romania  1990 23.74064205
## 13574                                    Romania  1990 23.74064205
## 13575                                    Romania  1990 23.74064205
## 13576                                    Romania  1990 23.74064205
## 13577                                    Romania  1990 23.74064205
## 13578                                    Romania  1990 23.74064205
## 13580                                    Romania  1990 23.74064205
## 13581                                    Romania  1990 23.74064205
## 13582                                    Romania  1990 23.74064205
## 13583                                    Romania  1990 23.74064205
## 13585                                    Romania  1990 23.74064205
## 13586                                    Romania  1990 23.74064205
## 13587                                    Romania  1990 23.74064205
## 13588                                    Romania  1990 23.74064205
## 13589                                    Romania  1990 23.74064205
## 13590                                    Romania  1990 23.74064205
## 13597                                    Romania  1990 23.74064205
## 13598                                    Romania  1990 23.74064205
## 13599                                    Romania  1990 23.74064205
## 13601                                    Romania  1990 23.74064205
## 13602                                    Romania  1990 23.74064205
## 13606                                    Romania  1990 23.74064205
## 13607                                    Romania  1990 23.74064205
## 13619                                    Romania  1990 23.74064205
## 13620                                    Romania  1990 23.74064205
## 13629                                    Romania  1990 23.74064205
## 13630                                    Romania  1990 23.74064205
## 13631                                    Romania  1990 23.74064205
## 13632                                    Romania  1990 23.74064205
## 13633                                    Romania  1990 23.74064205
## 13634                                    Romania  1990 23.74064205
## 13635                                    Romania  1990 23.74064205
## 13636                                    Romania  1990 23.74064205
## 13637                                    Romania  1990 23.74064205
## 13638                                    Romania  1990 23.74064205
## 13639                                    Romania  1990 23.74064205
## 13647                                    Romania  1990 23.74064205
## 13648                                    Romania  1990 23.74064205
## 13649                                    Romania  1990 23.74064205
## 13650                                    Romania  1990 23.74064205
## 13651                                    Romania  1990 23.74064205
## 13652                                    Romania  1990 23.74064205
## 13670                                    Romania  1990 23.74064205
## 13671                                    Romania  1990 23.74064205
## 13673                                    Romania  1990 23.74064205
## 13680                                    Romania  1990 23.74064205
## 13682                                    Romania  1990 23.74064205
## 13683                                    Romania  1990 23.74064205
## 13684                                    Romania  1990 23.74064205
## 13685                                    Romania  1990 23.74064205
## 13690                                    Romania  1990 23.74064205
## 13691                                    Romania  1990 23.74064205
## 13692                                    Romania  1990 23.74064205
## 13699                         Russian Federation  1990 16.61107405
## 13700                         Russian Federation  1990 16.61107405
## 13701                         Russian Federation  1990 16.61107405
## 13702                         Russian Federation  1990 16.61107405
## 13703                         Russian Federation  1990 16.61107405
## 13704                         Russian Federation  1990 16.61107405
## 13705                         Russian Federation  1990 16.61107405
## 13706                         Russian Federation  1990 16.61107405
## 13707                         Russian Federation  1990 16.61107405
## 13708                         Russian Federation  1990 16.61107405
## 13709                         Russian Federation  1990 16.61107405
## 13710                         Russian Federation  1990 16.61107405
## 13714                         Russian Federation  1990 16.61107405
## 13715                         Russian Federation  1990 16.61107405
## 13716                         Russian Federation  1990 16.61107405
## 13717                         Russian Federation  1990 16.61107405
## 13719                         Russian Federation  1990 16.61107405
## 13720                         Russian Federation  1990 16.61107405
## 13721                         Russian Federation  1990 16.61107405
## 13722                         Russian Federation  1990 16.61107405
## 13723                         Russian Federation  1990 16.61107405
## 13724                         Russian Federation  1990 16.61107405
## 13730                         Russian Federation  1990 16.61107405
## 13734                         Russian Federation  1990 16.61107405
## 13736                         Russian Federation  1990 16.61107405
## 13741                         Russian Federation  1990 16.61107405
## 13742                         Russian Federation  1990 16.61107405
## 13752                         Russian Federation  1990 16.61107405
## 13753                         Russian Federation  1990 16.61107405
## 13763                         Russian Federation  1990 16.61107405
## 13764                         Russian Federation  1990 16.61107405
## 13765                         Russian Federation  1990 16.61107405
## 13766                         Russian Federation  1990 16.61107405
## 13767                         Russian Federation  1990 16.61107405
## 13768                         Russian Federation  1990 16.61107405
## 13769                         Russian Federation  1990 16.61107405
## 13770                         Russian Federation  1990 16.61107405
## 13780                         Russian Federation  1990 16.61107405
## 13781                         Russian Federation  1990 16.61107405
## 13782                         Russian Federation  1990 16.61107405
## 13783                         Russian Federation  1990 16.61107405
## 13784                         Russian Federation  1990 16.61107405
## 13802                         Russian Federation  1990 16.61107405
## 13806                         Russian Federation  1990 16.61107405
## 13813                         Russian Federation  1990 16.61107405
## 13816                         Russian Federation  1990 16.61107405
## 13823                         Russian Federation  1990 16.61107405
## 13824                         Russian Federation  1990 16.61107405
## 13825                         Russian Federation  1990 16.61107405
## 13833                      Saint Kitts and Nevis  1990  4.15453949
## 13834                      Saint Kitts and Nevis  1990  4.15453949
## 13836                      Saint Kitts and Nevis  1990  4.15453949
## 13837                      Saint Kitts and Nevis  1990  4.15453949
## 13838                      Saint Kitts and Nevis  1990  4.15453949
## 13844                      Saint Kitts and Nevis  1990  4.15453949
## 13846                      Saint Kitts and Nevis  1990  4.15453949
## 13847                      Saint Kitts and Nevis  1990  4.15453949
## 13848                      Saint Kitts and Nevis  1990  4.15453949
## 13850                      Saint Kitts and Nevis  1990  4.15453949
## 13853                      Saint Kitts and Nevis  1990  4.15453949
## 13854                      Saint Kitts and Nevis  1990  4.15453949
## 13859                      Saint Kitts and Nevis  1990  4.15453949
## 13860                      Saint Kitts and Nevis  1990  4.15453949
## 13861                      Saint Kitts and Nevis  1990  4.15453949
## 13862                      Saint Kitts and Nevis  1990  4.15453949
## 13863                      Saint Kitts and Nevis  1990  4.15453949
## 13864                      Saint Kitts and Nevis  1990  4.15453949
## 13865                      Saint Kitts and Nevis  1990  4.15453949
## 13866                      Saint Kitts and Nevis  1990  4.15453949
## 13872                      Saint Kitts and Nevis  1990  4.15453949
## 13873                      Saint Kitts and Nevis  1990  4.15453949
## 13874                      Saint Kitts and Nevis  1990  4.15453949
## 13875                      Saint Kitts and Nevis  1990  4.15453949
## 13876                      Saint Kitts and Nevis  1990  4.15453949
## 13884                      Saint Kitts and Nevis  1990  4.15453949
## 13885                      Saint Kitts and Nevis  1990  4.15453949
## 13886                      Saint Kitts and Nevis  1990  4.15453949
## 13887                      Saint Kitts and Nevis  1990  4.15453949
## 13888                      Saint Kitts and Nevis  1990  4.15453949
## 13889                      Saint Kitts and Nevis  1990  4.15453949
## 13893                                Saint Lucia  1990 11.60429009
## 13894                                Saint Lucia  1990 11.60429009
## 13895                                Saint Lucia  1990 11.60429009
## 13896                                Saint Lucia  1990 11.60429009
## 13897                                Saint Lucia  1990 11.60429009
## 13898                                Saint Lucia  1990 11.60429009
## 13899                                Saint Lucia  1990 11.60429009
## 13900                                Saint Lucia  1990 11.60429009
## 13901                                Saint Lucia  1990 11.60429009
## 13903                                Saint Lucia  1990 11.60429009
## 13904                                Saint Lucia  1990 11.60429009
## 13905                                Saint Lucia  1990 11.60429009
## 13907                                Saint Lucia  1990 11.60429009
## 13908                                Saint Lucia  1990 11.60429009
## 13909                                Saint Lucia  1990 11.60429009
## 13920                                Saint Lucia  1990 11.60429009
## 13922                                Saint Lucia  1990 11.60429009
## 13923                                Saint Lucia  1990 11.60429009
## 13924                                Saint Lucia  1990 11.60429009
## 13926                                Saint Lucia  1990 11.60429009
## 13931                                Saint Lucia  1990 11.60429009
## 13932                                Saint Lucia  1990 11.60429009
## 13933                                Saint Lucia  1990 11.60429009
## 13943                                Saint Lucia  1990 11.60429009
## 13952                                Saint Lucia  1990 11.60429009
## 13953                                Saint Lucia  1990 11.60429009
## 13954                                Saint Lucia  1990 11.60429009
## 13955                                Saint Lucia  1990 11.60429009
## 13956                                Saint Lucia  1990 11.60429009
## 13957                                Saint Lucia  1990 11.60429009
## 13958                                Saint Lucia  1990 11.60429009
## 13959                                Saint Lucia  1990 11.60429009
## 13960                                Saint Lucia  1990 11.60429009
## 13961                                Saint Lucia  1990 11.60429009
## 13970                                Saint Lucia  1990 11.60429009
## 13971                                Saint Lucia  1990 11.60429009
## 13972                                Saint Lucia  1990 11.60429009
## 13973                                Saint Lucia  1990 11.60429009
## 13974                                Saint Lucia  1990 11.60429009
## 13988                                Saint Lucia  1990 11.60429009
## 14000                                Saint Lucia  1990 11.60429009
## 14004                                Saint Lucia  1990 11.60429009
## 14005                                Saint Lucia  1990 11.60429009
## 14006                                Saint Lucia  1990 11.60429009
## 14007                                Saint Lucia  1990 11.60429009
## 14008                                Saint Lucia  1990 11.60429009
## 14009                                Saint Lucia  1990 11.60429009
## 14014                                Saint Lucia  1990 11.60429009
## 14015                                Saint Lucia  1990 11.60429009
## 14016                                Saint Lucia  1990 11.60429009
## 14023           Saint Vincent and the Grenadines  1990 16.38700310
## 14024           Saint Vincent and the Grenadines  1990 16.38700310
## 14025           Saint Vincent and the Grenadines  1990 16.38700310
## 14026           Saint Vincent and the Grenadines  1990 16.38700310
## 14027           Saint Vincent and the Grenadines  1990 16.38700310
## 14028           Saint Vincent and the Grenadines  1990 16.38700310
## 14029           Saint Vincent and the Grenadines  1990 16.38700310
## 14030           Saint Vincent and the Grenadines  1990 16.38700310
## 14031           Saint Vincent and the Grenadines  1990 16.38700310
## 14033           Saint Vincent and the Grenadines  1990 16.38700310
## 14040           Saint Vincent and the Grenadines  1990 16.38700310
## 14047           Saint Vincent and the Grenadines  1990 16.38700310
## 14048           Saint Vincent and the Grenadines  1990 16.38700310
## 14049           Saint Vincent and the Grenadines  1990 16.38700310
## 14051           Saint Vincent and the Grenadines  1990 16.38700310
## 14056           Saint Vincent and the Grenadines  1990 16.38700310
## 14057           Saint Vincent and the Grenadines  1990 16.38700310
## 14062           Saint Vincent and the Grenadines  1990 16.38700310
## 14069           Saint Vincent and the Grenadines  1990 16.38700310
## 14070           Saint Vincent and the Grenadines  1990 16.38700310
## 14071           Saint Vincent and the Grenadines  1990 16.38700310
## 14072           Saint Vincent and the Grenadines  1990 16.38700310
## 14073           Saint Vincent and the Grenadines  1990 16.38700310
## 14074           Saint Vincent and the Grenadines  1990 16.38700310
## 14075           Saint Vincent and the Grenadines  1990 16.38700310
## 14076           Saint Vincent and the Grenadines  1990 16.38700310
## 14077           Saint Vincent and the Grenadines  1990 16.38700310
## 14078           Saint Vincent and the Grenadines  1990 16.38700310
## 14086           Saint Vincent and the Grenadines  1990 16.38700310
## 14087           Saint Vincent and the Grenadines  1990 16.38700310
## 14088           Saint Vincent and the Grenadines  1990 16.38700310
## 14089           Saint Vincent and the Grenadines  1990 16.38700310
## 14090           Saint Vincent and the Grenadines  1990 16.38700310
## 14096           Saint Vincent and the Grenadines  1990 16.38700310
## 14100           Saint Vincent and the Grenadines  1990 16.38700310
## 14101           Saint Vincent and the Grenadines  1990 16.38700310
## 14102           Saint Vincent and the Grenadines  1990 16.38700310
## 14103           Saint Vincent and the Grenadines  1990 16.38700310
## 14104           Saint Vincent and the Grenadines  1990 16.38700310
## 14105           Saint Vincent and the Grenadines  1990 16.38700310
## 14106           Saint Vincent and the Grenadines  1990 16.38700310
## 14110           Saint Vincent and the Grenadines  1990 16.38700310
## 14111           Saint Vincent and the Grenadines  1990 16.38700310
## 14112           Saint Vincent and the Grenadines  1990 16.38700310
## 14118                               Saudi Arabia  1990  5.70727632
## 14119                               Saudi Arabia  1990  5.70727632
## 14120                               Saudi Arabia  1990  5.70727632
## 14121                               Saudi Arabia  1990  5.70727632
## 14122                               Saudi Arabia  1990  5.70727632
## 14123                               Saudi Arabia  1990  5.70727632
## 14124                               Saudi Arabia  1990  5.70727632
## 14125                               Saudi Arabia  1990  5.70727632
## 14126                               Saudi Arabia  1990  5.70727632
## 14127                               Saudi Arabia  1990  5.70727632
## 14128                               Saudi Arabia  1990  5.70727632
## 14129                               Saudi Arabia  1990  5.70727632
## 14136                               Saudi Arabia  1990  5.70727632
## 14138                               Saudi Arabia  1990  5.70727632
## 14139                               Saudi Arabia  1990  5.70727632
## 14140                               Saudi Arabia  1990  5.70727632
## 14141                               Saudi Arabia  1990  5.70727632
## 14142                               Saudi Arabia  1990  5.70727632
## 14143                               Saudi Arabia  1990  5.70727632
## 14148                               Saudi Arabia  1990  5.70727632
## 14149                               Saudi Arabia  1990  5.70727632
## 14150                               Saudi Arabia  1990  5.70727632
## 14152                               Saudi Arabia  1990  5.70727632
## 14157                               Saudi Arabia  1990  5.70727632
## 14158                               Saudi Arabia  1990  5.70727632
## 14169                               Saudi Arabia  1990  5.70727632
## 14170                               Saudi Arabia  1990  5.70727632
## 14177                               Saudi Arabia  1990  5.70727632
## 14178                               Saudi Arabia  1990  5.70727632
## 14179                               Saudi Arabia  1990  5.70727632
## 14180                               Saudi Arabia  1990  5.70727632
## 14181                               Saudi Arabia  1990  5.70727632
## 14182                               Saudi Arabia  1990  5.70727632
## 14183                               Saudi Arabia  1990  5.70727632
## 14185                               Saudi Arabia  1990  5.70727632
## 14186                               Saudi Arabia  1990  5.70727632
## 14187                               Saudi Arabia  1990  5.70727632
## 14188                               Saudi Arabia  1990  5.70727632
## 14196                               Saudi Arabia  1990  5.70727632
## 14197                               Saudi Arabia  1990  5.70727632
## 14198                               Saudi Arabia  1990  5.70727632
## 14199                               Saudi Arabia  1990  5.70727632
## 14200                               Saudi Arabia  1990  5.70727632
## 14201                               Saudi Arabia  1990  5.70727632
## 14211                               Saudi Arabia  1990  5.70727632
## 14213                               Saudi Arabia  1990  5.70727632
## 14215                               Saudi Arabia  1990  5.70727632
## 14222                               Saudi Arabia  1990  5.70727632
## 14223                               Saudi Arabia  1990  5.70727632
## 14224                               Saudi Arabia  1990  5.70727632
## 14225                               Saudi Arabia  1990  5.70727632
## 14230                               Saudi Arabia  1990  5.70727632
## 14231                               Saudi Arabia  1990  5.70727632
## 14232                               Saudi Arabia  1990  5.70727632
## 14238                                    Senegal  1990 19.92823983
## 14239                                    Senegal  1990 19.92823983
## 14240                                    Senegal  1990 19.92823983
## 14241                                    Senegal  1990 19.92823983
## 14242                                    Senegal  1990 19.92823983
## 14243                                    Senegal  1990 19.92823983
## 14244                                    Senegal  1990 19.92823983
## 14245                                    Senegal  1990 19.92823983
## 14246                                    Senegal  1990 19.92823983
## 14247                                    Senegal  1990 19.92823983
## 14248                                    Senegal  1990 19.92823983
## 14249                                    Senegal  1990 19.92823983
## 14250                                    Senegal  1990 19.92823983
## 14251                                    Senegal  1990 19.92823983
## 14253                                    Senegal  1990 19.92823983
## 14254                                    Senegal  1990 19.92823983
## 14255                                    Senegal  1990 19.92823983
## 14258                                    Senegal  1990 19.92823983
## 14259                                    Senegal  1990 19.92823983
## 14260                                    Senegal  1990 19.92823983
## 14261                                    Senegal  1990 19.92823983
## 14262                                    Senegal  1990 19.92823983
## 14263                                    Senegal  1990 19.92823983
## 14267                                    Senegal  1990 19.92823983
## 14269                                    Senegal  1990 19.92823983
## 14270                                    Senegal  1990 19.92823983
## 14271                                    Senegal  1990 19.92823983
## 14273                                    Senegal  1990 19.92823983
## 14277                                    Senegal  1990 19.92823983
## 14278                                    Senegal  1990 19.92823983
## 14289                                    Senegal  1990 19.92823983
## 14299                                    Senegal  1990 19.92823983
## 14300                                    Senegal  1990 19.92823983
## 14301                                    Senegal  1990 19.92823983
## 14302                                    Senegal  1990 19.92823983
## 14303                                    Senegal  1990 19.92823983
## 14304                                    Senegal  1990 19.92823983
## 14305                                    Senegal  1990 19.92823983
## 14307                                    Senegal  1990 19.92823983
## 14308                                    Senegal  1990 19.92823983
## 14309                                    Senegal  1990 19.92823983
## 14310                                    Senegal  1990 19.92823983
## 14319                                    Senegal  1990 19.92823983
## 14320                                    Senegal  1990 19.92823983
## 14321                                    Senegal  1990 19.92823983
## 14322                                    Senegal  1990 19.92823983
## 14323                                    Senegal  1990 19.92823983
## 14324                                    Senegal  1990 19.92823983
## 14341                                    Senegal  1990 19.92823983
## 14356                                    Senegal  1990 19.92823983
## 14358                                    Senegal  1990 19.92823983
## 14365                                    Senegal  1990 19.92823983
## 14367                                    Senegal  1990 19.92823983
## 14368                                    Senegal  1990 19.92823983
## 14369                                    Senegal  1990 19.92823983
## 14370                                    Senegal  1990 19.92823983
## 14371                                    Senegal  1990 19.92823983
## 14372                                    Senegal  1990 19.92823983
## 14377                                    Senegal  1990 19.92823983
## 14378                                    Senegal  1990 19.92823983
## 14379                                    Senegal  1990 19.92823983
## 14387                                 Seychelles  1990  6.30288494
## 14388                                 Seychelles  1990  6.30288494
## 14389                                 Seychelles  1990  6.30288494
## 14390                                 Seychelles  1990  6.30288494
## 14391                                 Seychelles  1990  6.30288494
## 14392                                 Seychelles  1990  6.30288494
## 14393                                 Seychelles  1990  6.30288494
## 14394                                 Seychelles  1990  6.30288494
## 14395                                 Seychelles  1990  6.30288494
## 14397                                 Seychelles  1990  6.30288494
## 14398                                 Seychelles  1990  6.30288494
## 14399                                 Seychelles  1990  6.30288494
## 14401                                 Seychelles  1990  6.30288494
## 14411                                 Seychelles  1990  6.30288494
## 14412                                 Seychelles  1990  6.30288494
## 14413                                 Seychelles  1990  6.30288494
## 14415                                 Seychelles  1990  6.30288494
## 14419                                 Seychelles  1990  6.30288494
## 14420                                 Seychelles  1990  6.30288494
## 14424                                 Seychelles  1990  6.30288494
## 14428                                 Seychelles  1990  6.30288494
## 14429                                 Seychelles  1990  6.30288494
## 14430                                 Seychelles  1990  6.30288494
## 14431                                 Seychelles  1990  6.30288494
## 14432                                 Seychelles  1990  6.30288494
## 14433                                 Seychelles  1990  6.30288494
## 14434                                 Seychelles  1990  6.30288494
## 14435                                 Seychelles  1990  6.30288494
## 14436                                 Seychelles  1990  6.30288494
## 14437                                 Seychelles  1990  6.30288494
## 14445                                 Seychelles  1990  6.30288494
## 14446                                 Seychelles  1990  6.30288494
## 14447                                 Seychelles  1990  6.30288494
## 14448                                 Seychelles  1990  6.30288494
## 14449                                 Seychelles  1990  6.30288494
## 14450                                 Seychelles  1990  6.30288494
## 14462                                 Seychelles  1990  6.30288494
## 14464                                 Seychelles  1990  6.30288494
## 14469                                 Seychelles  1990  6.30288494
## 14471                                 Seychelles  1990  6.30288494
## 14472                                 Seychelles  1990  6.30288494
## 14473                                 Seychelles  1990  6.30288494
## 14474                                 Seychelles  1990  6.30288494
## 14475                                 Seychelles  1990  6.30288494
## 14476                                 Seychelles  1990  6.30288494
## 14479                               Sierra Leone  1990 46.93988124
## 14480                               Sierra Leone  1990 46.93988124
## 14481                               Sierra Leone  1990 46.93988124
## 14482                               Sierra Leone  1990 46.93988124
## 14483                               Sierra Leone  1990 46.93988124
## 14484                               Sierra Leone  1990 46.93988124
## 14485                               Sierra Leone  1990 46.93988124
## 14486                               Sierra Leone  1990 46.93988124
## 14487                               Sierra Leone  1990 46.93988124
## 14488                               Sierra Leone  1990 46.93988124
## 14489                               Sierra Leone  1990 46.93988124
## 14490                               Sierra Leone  1990 46.93988124
## 14495                               Sierra Leone  1990 46.93988124
## 14496                               Sierra Leone  1990 46.93988124
## 14497                               Sierra Leone  1990 46.93988124
## 14499                               Sierra Leone  1990 46.93988124
## 14500                               Sierra Leone  1990 46.93988124
## 14501                               Sierra Leone  1990 46.93988124
## 14502                               Sierra Leone  1990 46.93988124
## 14503                               Sierra Leone  1990 46.93988124
## 14504                               Sierra Leone  1990 46.93988124
## 14507                               Sierra Leone  1990 46.93988124
## 14509                               Sierra Leone  1990 46.93988124
## 14510                               Sierra Leone  1990 46.93988124
## 14511                               Sierra Leone  1990 46.93988124
## 14517                               Sierra Leone  1990 46.93988124
## 14518                               Sierra Leone  1990 46.93988124
## 14529                               Sierra Leone  1990 46.93988124
## 14540                               Sierra Leone  1990 46.93988124
## 14543                               Sierra Leone  1990 46.93988124
## 14544                               Sierra Leone  1990 46.93988124
## 14545                               Sierra Leone  1990 46.93988124
## 14546                               Sierra Leone  1990 46.93988124
## 14548                               Sierra Leone  1990 46.93988124
## 14549                               Sierra Leone  1990 46.93988124
## 14550                               Sierra Leone  1990 46.93988124
## 14551                               Sierra Leone  1990 46.93988124
## 14560                               Sierra Leone  1990 46.93988124
## 14561                               Sierra Leone  1990 46.93988124
## 14562                               Sierra Leone  1990 46.93988124
## 14563                               Sierra Leone  1990 46.93988124
## 14564                               Sierra Leone  1990 46.93988124
## 14565                               Sierra Leone  1990 46.93988124
## 14581                               Sierra Leone  1990 46.93988124
## 14596                               Sierra Leone  1990 46.93988124
## 14598                               Sierra Leone  1990 46.93988124
## 14604                               Sierra Leone  1990 46.93988124
## 14606                               Sierra Leone  1990 46.93988124
## 14607                               Sierra Leone  1990 46.93988124
## 14608                               Sierra Leone  1990 46.93988124
## 14609                               Sierra Leone  1990 46.93988124
## 14610                               Sierra Leone  1990 46.93988124
## 14611                               Sierra Leone  1990 46.93988124
## 14616                               Sierra Leone  1990 46.93988124
## 14617                               Sierra Leone  1990 46.93988124
## 14618                               Sierra Leone  1990 46.93988124
## 14625                                  Singapore  1990  0.33908539
## 14626                                  Singapore  1990  0.33908539
## 14627                                  Singapore  1990  0.33908539
## 14628                                  Singapore  1990  0.33908539
## 14629                                  Singapore  1990  0.33908539
## 14630                                  Singapore  1990  0.33908539
## 14631                                  Singapore  1990  0.33908539
## 14632                                  Singapore  1990  0.33908539
## 14633                                  Singapore  1990  0.33908539
## 14634                                  Singapore  1990  0.33908539
## 14635                                  Singapore  1990  0.33908539
## 14636                                  Singapore  1990  0.33908539
## 14642                                  Singapore  1990  0.33908539
## 14643                                  Singapore  1990  0.33908539
## 14644                                  Singapore  1990  0.33908539
## 14645                                  Singapore  1990  0.33908539
## 14646                                  Singapore  1990  0.33908539
## 14647                                  Singapore  1990  0.33908539
## 14648                                  Singapore  1990  0.33908539
## 14654                                  Singapore  1990  0.33908539
## 14656                                  Singapore  1990  0.33908539
## 14657                                  Singapore  1990  0.33908539
## 14658                                  Singapore  1990  0.33908539
## 14660                                  Singapore  1990  0.33908539
## 14664                                  Singapore  1990  0.33908539
## 14665                                  Singapore  1990  0.33908539
## 14673                                  Singapore  1990  0.33908539
## 14682                                  Singapore  1990  0.33908539
## 14683                                  Singapore  1990  0.33908539
## 14684                                  Singapore  1990  0.33908539
## 14685                                  Singapore  1990  0.33908539
## 14686                                  Singapore  1990  0.33908539
## 14687                                  Singapore  1990  0.33908539
## 14688                                  Singapore  1990  0.33908539
## 14689                                  Singapore  1990  0.33908539
## 14690                                  Singapore  1990  0.33908539
## 14691                                  Singapore  1990  0.33908539
## 14699                                  Singapore  1990  0.33908539
## 14700                                  Singapore  1990  0.33908539
## 14701                                  Singapore  1990  0.33908539
## 14702                                  Singapore  1990  0.33908539
## 14703                                  Singapore  1990  0.33908539
## 14704                                  Singapore  1990  0.33908539
## 14719                                  Singapore  1990  0.33908539
## 14721                                  Singapore  1990  0.33908539
## 14723                                  Singapore  1990  0.33908539
## 14729                                  Singapore  1990  0.33908539
## 14730                                  Singapore  1990  0.33908539
## 14731                                  Singapore  1990  0.33908539
## 14732                                  Singapore  1990  0.33908539
## 14736                                  Singapore  1990  0.33908539
## 14737                                  Singapore  1990  0.33908539
## 14738                                  Singapore  1990  0.33908539
## 14746                            Solomon Islands  1990 28.91132937
## 14747                            Solomon Islands  1990 28.91132937
## 14748                            Solomon Islands  1990 28.91132937
## 14749                            Solomon Islands  1990 28.91132937
## 14750                            Solomon Islands  1990 28.91132937
## 14751                            Solomon Islands  1990 28.91132937
## 14752                            Solomon Islands  1990 28.91132937
## 14753                            Solomon Islands  1990 28.91132937
## 14754                            Solomon Islands  1990 28.91132937
## 14756                            Solomon Islands  1990 28.91132937
## 14757                            Solomon Islands  1990 28.91132937
## 14758                            Solomon Islands  1990 28.91132937
## 14760                            Solomon Islands  1990 28.91132937
## 14761                            Solomon Islands  1990 28.91132937
## 14762                            Solomon Islands  1990 28.91132937
## 14764                            Solomon Islands  1990 28.91132937
## 14766                            Solomon Islands  1990 28.91132937
## 14768                            Solomon Islands  1990 28.91132937
## 14769                            Solomon Islands  1990 28.91132937
## 14770                            Solomon Islands  1990 28.91132937
## 14772                            Solomon Islands  1990 28.91132937
## 14776                            Solomon Islands  1990 28.91132937
## 14777                            Solomon Islands  1990 28.91132937
## 14784                            Solomon Islands  1990 28.91132937
## 14785                            Solomon Islands  1990 28.91132937
## 14795                            Solomon Islands  1990 28.91132937
## 14796                            Solomon Islands  1990 28.91132937
## 14797                            Solomon Islands  1990 28.91132937
## 14798                            Solomon Islands  1990 28.91132937
## 14799                            Solomon Islands  1990 28.91132937
## 14800                            Solomon Islands  1990 28.91132937
## 14802                            Solomon Islands  1990 28.91132937
## 14803                            Solomon Islands  1990 28.91132937
## 14804                            Solomon Islands  1990 28.91132937
## 14805                            Solomon Islands  1990 28.91132937
## 14814                            Solomon Islands  1990 28.91132937
## 14815                            Solomon Islands  1990 28.91132937
## 14816                            Solomon Islands  1990 28.91132937
## 14818                            Solomon Islands  1990 28.91132937
## 14819                            Solomon Islands  1990 28.91132937
## 14835                            Solomon Islands  1990 28.91132937
## 14837                            Solomon Islands  1990 28.91132937
## 14839                            Solomon Islands  1990 28.91132937
## 14844                            Solomon Islands  1990 28.91132937
## 14845                            Solomon Islands  1990 28.91132937
## 14846                            Solomon Islands  1990 28.91132937
## 14847                            Solomon Islands  1990 28.91132937
## 14848                            Solomon Islands  1990 28.91132937
## 14854                            Solomon Islands  1990 28.91132937
## 14855                            Solomon Islands  1990 28.91132937
## 14856                            Solomon Islands  1990 28.91132937
## 14861                                    Somalia  1990 65.45259173
## 14862                                    Somalia  1990 65.45259173
## 14863                                    Somalia  1990 65.45259173
## 14864                                    Somalia  1990 65.45259173
## 14865                                    Somalia  1990 65.45259173
## 14866                                    Somalia  1990 65.45259173
## 14867                                    Somalia  1990 65.45259173
## 14868                                    Somalia  1990 65.45259173
## 14869                                    Somalia  1990 65.45259173
## 14875                                    Somalia  1990 65.45259173
## 14876                                    Somalia  1990 65.45259173
## 14882                                    Somalia  1990 65.45259173
## 14883                                    Somalia  1990 65.45259173
## 14887                                    Somalia  1990 65.45259173
## 14895                                    Somalia  1990 65.45259173
## 14896                                    Somalia  1990 65.45259173
## 14897                                    Somalia  1990 65.45259173
## 14898                                    Somalia  1990 65.45259173
## 14899                                    Somalia  1990 65.45259173
## 14900                                    Somalia  1990 65.45259173
## 14901                                    Somalia  1990 65.45259173
## 14903                                    Somalia  1990 65.45259173
## 14904                                    Somalia  1990 65.45259173
## 14905                                    Somalia  1990 65.45259173
## 14906                                    Somalia  1990 65.45259173
## 14914                                    Somalia  1990 65.45259173
## 14920                                    Somalia  1990 65.45259173
## 14934                                    Somalia  1990 65.45259173
## 14937                                    Somalia  1990 65.45259173
## 14939                                    Somalia  1990 65.45259173
## 14945                                    Somalia  1990 65.45259173
## 14946                                    Somalia  1990 65.45259173
## 14947                                    Somalia  1990 65.45259173
## 14952                               South Africa  1990  4.61906825
## 14953                               South Africa  1990  4.61906825
## 14954                               South Africa  1990  4.61906825
## 14955                               South Africa  1990  4.61906825
## 14956                               South Africa  1990  4.61906825
## 14957                               South Africa  1990  4.61906825
## 14958                               South Africa  1990  4.61906825
## 14959                               South Africa  1990  4.61906825
## 14960                               South Africa  1990  4.61906825
## 14961                               South Africa  1990  4.61906825
## 14962                               South Africa  1990  4.61906825
## 14963                               South Africa  1990  4.61906825
## 14964                               South Africa  1990  4.61906825
## 14965                               South Africa  1990  4.61906825
## 14966                               South Africa  1990  4.61906825
## 14968                               South Africa  1990  4.61906825
## 14969                               South Africa  1990  4.61906825
## 14970                               South Africa  1990  4.61906825
## 14972                               South Africa  1990  4.61906825
## 14973                               South Africa  1990  4.61906825
## 14974                               South Africa  1990  4.61906825
## 14975                               South Africa  1990  4.61906825
## 14976                               South Africa  1990  4.61906825
## 14977                               South Africa  1990  4.61906825
## 14978                               South Africa  1990  4.61906825
## 14981                               South Africa  1990  4.61906825
## 14982                               South Africa  1990  4.61906825
## 14983                               South Africa  1990  4.61906825
## 14984                               South Africa  1990  4.61906825
## 14986                               South Africa  1990  4.61906825
## 14987                               South Africa  1990  4.61906825
## 14991                               South Africa  1990  4.61906825
## 14992                               South Africa  1990  4.61906825
## 15005                               South Africa  1990  4.61906825
## 15015                               South Africa  1990  4.61906825
## 15016                               South Africa  1990  4.61906825
## 15017                               South Africa  1990  4.61906825
## 15018                               South Africa  1990  4.61906825
## 15019                               South Africa  1990  4.61906825
## 15020                               South Africa  1990  4.61906825
## 15021                               South Africa  1990  4.61906825
## 15023                               South Africa  1990  4.61906825
## 15024                               South Africa  1990  4.61906825
## 15025                               South Africa  1990  4.61906825
## 15026                               South Africa  1990  4.61906825
## 15035                               South Africa  1990  4.61906825
## 15036                               South Africa  1990  4.61906825
## 15037                               South Africa  1990  4.61906825
## 15038                               South Africa  1990  4.61906825
## 15039                               South Africa  1990  4.61906825
## 15040                               South Africa  1990  4.61906825
## 15057                               South Africa  1990  4.61906825
## 15072                               South Africa  1990  4.61906825
## 15074                               South Africa  1990  4.61906825
## 15081                               South Africa  1990  4.61906825
## 15084                               South Africa  1990  4.61906825
## 15085                               South Africa  1990  4.61906825
## 15087                               South Africa  1990  4.61906825
## 15088                               South Africa  1990  4.61906825
## 15092                               South Africa  1990  4.61906825
## 15093                               South Africa  1990  4.61906825
## 15094                               South Africa  1990  4.61906825
## 15101                                  Sri Lanka  1990 26.68499559
## 15102                                  Sri Lanka  1990 26.68499559
## 15103                                  Sri Lanka  1990 26.68499559
## 15104                                  Sri Lanka  1990 26.68499559
## 15105                                  Sri Lanka  1990 26.68499559
## 15106                                  Sri Lanka  1990 26.68499559
## 15107                                  Sri Lanka  1990 26.68499559
## 15108                                  Sri Lanka  1990 26.68499559
## 15109                                  Sri Lanka  1990 26.68499559
## 15110                                  Sri Lanka  1990 26.68499559
## 15111                                  Sri Lanka  1990 26.68499559
## 15112                                  Sri Lanka  1990 26.68499559
## 15113                                  Sri Lanka  1990 26.68499559
## 15114                                  Sri Lanka  1990 26.68499559
## 15115                                  Sri Lanka  1990 26.68499559
## 15117                                  Sri Lanka  1990 26.68499559
## 15118                                  Sri Lanka  1990 26.68499559
## 15121                                  Sri Lanka  1990 26.68499559
## 15122                                  Sri Lanka  1990 26.68499559
## 15123                                  Sri Lanka  1990 26.68499559
## 15124                                  Sri Lanka  1990 26.68499559
## 15125                                  Sri Lanka  1990 26.68499559
## 15126                                  Sri Lanka  1990 26.68499559
## 15127                                  Sri Lanka  1990 26.68499559
## 15131                                  Sri Lanka  1990 26.68499559
## 15132                                  Sri Lanka  1990 26.68499559
## 15133                                  Sri Lanka  1990 26.68499559
## 15134                                  Sri Lanka  1990 26.68499559
## 15136                                  Sri Lanka  1990 26.68499559
## 15137                                  Sri Lanka  1990 26.68499559
## 15141                                  Sri Lanka  1990 26.68499559
## 15142                                  Sri Lanka  1990 26.68499559
## 15154                                  Sri Lanka  1990 26.68499559
## 15164                                  Sri Lanka  1990 26.68499559
## 15165                                  Sri Lanka  1990 26.68499559
## 15166                                  Sri Lanka  1990 26.68499559
## 15167                                  Sri Lanka  1990 26.68499559
## 15168                                  Sri Lanka  1990 26.68499559
## 15169                                  Sri Lanka  1990 26.68499559
## 15170                                  Sri Lanka  1990 26.68499559
## 15172                                  Sri Lanka  1990 26.68499559
## 15173                                  Sri Lanka  1990 26.68499559
## 15174                                  Sri Lanka  1990 26.68499559
## 15175                                  Sri Lanka  1990 26.68499559
## 15184                                  Sri Lanka  1990 26.68499559
## 15185                                  Sri Lanka  1990 26.68499559
## 15186                                  Sri Lanka  1990 26.68499559
## 15187                                  Sri Lanka  1990 26.68499559
## 15188                                  Sri Lanka  1990 26.68499559
## 15189                                  Sri Lanka  1990 26.68499559
## 15206                                  Sri Lanka  1990 26.68499559
## 15208                                  Sri Lanka  1990 26.68499559
## 15210                                  Sri Lanka  1990 26.68499559
## 15217                                  Sri Lanka  1990 26.68499559
## 15219                                  Sri Lanka  1990 26.68499559
## 15220                                  Sri Lanka  1990 26.68499559
## 15221                                  Sri Lanka  1990 26.68499559
## 15222                                  Sri Lanka  1990 26.68499559
## 15223                                  Sri Lanka  1990 26.68499559
## 15224                                  Sri Lanka  1990 26.68499559
## 15228                                  Sri Lanka  1990 26.68499559
## 15229                                  Sri Lanka  1990 26.68499559
## 15230                                  Sri Lanka  1990 26.68499559
## 15237                                      Sudan  1990 40.57702215
## 15238                                      Sudan  1990 40.57702215
## 15239                                      Sudan  1990 40.57702215
## 15240                                      Sudan  1990 40.57702215
## 15241                                      Sudan  1990 40.57702215
## 15242                                      Sudan  1990 40.57702215
## 15243                                      Sudan  1990 40.57702215
## 15244                                      Sudan  1990 40.57702215
## 15245                                      Sudan  1990 40.57702215
## 15246                                      Sudan  1990 40.57702215
## 15247                                      Sudan  1990 40.57702215
## 15248                                      Sudan  1990 40.57702215
## 15257                                      Sudan  1990 40.57702215
## 15258                                      Sudan  1990 40.57702215
## 15259                                      Sudan  1990 40.57702215
## 15260                                      Sudan  1990 40.57702215
## 15261                                      Sudan  1990 40.57702215
## 15262                                      Sudan  1990 40.57702215
## 15268                                      Sudan  1990 40.57702215
## 15269                                      Sudan  1990 40.57702215
## 15270                                      Sudan  1990 40.57702215
## 15272                                      Sudan  1990 40.57702215
## 15277                                      Sudan  1990 40.57702215
## 15278                                      Sudan  1990 40.57702215
## 15281                                      Sudan  1990 40.57702215
## 15290                                      Sudan  1990 40.57702215
## 15291                                      Sudan  1990 40.57702215
## 15295                                      Sudan  1990 40.57702215
## 15300                                      Sudan  1990 40.57702215
## 15301                                      Sudan  1990 40.57702215
## 15302                                      Sudan  1990 40.57702215
## 15303                                      Sudan  1990 40.57702215
## 15304                                      Sudan  1990 40.57702215
## 15305                                      Sudan  1990 40.57702215
## 15306                                      Sudan  1990 40.57702215
## 15308                                      Sudan  1990 40.57702215
## 15309                                      Sudan  1990 40.57702215
## 15310                                      Sudan  1990 40.57702215
## 15311                                      Sudan  1990 40.57702215
## 15320                                      Sudan  1990 40.57702215
## 15321                                      Sudan  1990 40.57702215
## 15322                                      Sudan  1990 40.57702215
## 15323                                      Sudan  1990 40.57702215
## 15324                                      Sudan  1990 40.57702215
## 15325                                      Sudan  1990 40.57702215
## 15342                                      Sudan  1990 40.57702215
## 15359                                      Sudan  1990 40.57702215
## 15364                                      Sudan  1990 40.57702215
## 15365                                      Sudan  1990 40.57702215
## 15366                                      Sudan  1990 40.57702215
## 15367                                      Sudan  1990 40.57702215
## 15368                                      Sudan  1990 40.57702215
## 15369                                      Sudan  1990 40.57702215
## 15370                                      Sudan  1990 40.57702215
## 15375                                      Sudan  1990 40.57702215
## 15376                                      Sudan  1990 40.57702215
## 15377                                      Sudan  1990 40.57702215
## 15384                                   Suriname  1990  8.70529526
## 15385                                   Suriname  1990  8.70529526
## 15386                                   Suriname  1990  8.70529526
## 15387                                   Suriname  1990  8.70529526
## 15388                                   Suriname  1990  8.70529526
## 15389                                   Suriname  1990  8.70529526
## 15390                                   Suriname  1990  8.70529526
## 15391                                   Suriname  1990  8.70529526
## 15392                                   Suriname  1990  8.70529526
## 15394                                   Suriname  1990  8.70529526
## 15395                                   Suriname  1990  8.70529526
## 15396                                   Suriname  1990  8.70529526
## 15397                                   Suriname  1990  8.70529526
## 15398                                   Suriname  1990  8.70529526
## 15399                                   Suriname  1990  8.70529526
## 15400                                   Suriname  1990  8.70529526
## 15411                                   Suriname  1990  8.70529526
## 15413                                   Suriname  1990  8.70529526
## 15414                                   Suriname  1990  8.70529526
## 15415                                   Suriname  1990  8.70529526
## 15423                                   Suriname  1990  8.70529526
## 15433                                   Suriname  1990  8.70529526
## 15434                                   Suriname  1990  8.70529526
## 15442                                   Suriname  1990  8.70529526
## 15443                                   Suriname  1990  8.70529526
## 15444                                   Suriname  1990  8.70529526
## 15445                                   Suriname  1990  8.70529526
## 15446                                   Suriname  1990  8.70529526
## 15447                                   Suriname  1990  8.70529526
## 15448                                   Suriname  1990  8.70529526
## 15450                                   Suriname  1990  8.70529526
## 15451                                   Suriname  1990  8.70529526
## 15452                                   Suriname  1990  8.70529526
## 15453                                   Suriname  1990  8.70529526
## 15462                                   Suriname  1990  8.70529526
## 15463                                   Suriname  1990  8.70529526
## 15464                                   Suriname  1990  8.70529526
## 15465                                   Suriname  1990  8.70529526
## 15466                                   Suriname  1990  8.70529526
## 15467                                   Suriname  1990  8.70529526
## 15480                                   Suriname  1990  8.70529526
## 15495                                   Suriname  1990  8.70529526
## 15499                                   Suriname  1990  8.70529526
## 15501                                   Suriname  1990  8.70529526
## 15502                                   Suriname  1990  8.70529526
## 15503                                   Suriname  1990  8.70529526
## 15505                                   Suriname  1990  8.70529526
## 15510                                   Suriname  1990  8.70529526
## 15511                                   Suriname  1990  8.70529526
## 15512                                   Suriname  1990  8.70529526
## 15517                                     Sweden  1990  3.56273119
## 15518                                     Sweden  1990  3.56273119
## 15519                                     Sweden  1990  3.56273119
## 15520                                     Sweden  1990  3.56273119
## 15521                                     Sweden  1990  3.56273119
## 15522                                     Sweden  1990  3.56273119
## 15523                                     Sweden  1990  3.56273119
## 15524                                     Sweden  1990  3.56273119
## 15525                                     Sweden  1990  3.56273119
## 15526                                     Sweden  1990  3.56273119
## 15527                                     Sweden  1990  3.56273119
## 15528                                     Sweden  1990  3.56273119
## 15529                                     Sweden  1990  3.56273119
## 15530                                     Sweden  1990  3.56273119
## 15531                                     Sweden  1990  3.56273119
## 15532                                     Sweden  1990  3.56273119
## 15533                                     Sweden  1990  3.56273119
## 15534                                     Sweden  1990  3.56273119
## 15535                                     Sweden  1990  3.56273119
## 15536                                     Sweden  1990  3.56273119
## 15537                                     Sweden  1990  3.56273119
## 15538                                     Sweden  1990  3.56273119
## 15539                                     Sweden  1990  3.56273119
## 15540                                     Sweden  1990  3.56273119
## 15541                                     Sweden  1990  3.56273119
## 15542                                     Sweden  1990  3.56273119
## 15549                                     Sweden  1990  3.56273119
## 15550                                     Sweden  1990  3.56273119
## 15551                                     Sweden  1990  3.56273119
## 15553                                     Sweden  1990  3.56273119
## 15558                                     Sweden  1990  3.56273119
## 15559                                     Sweden  1990  3.56273119
## 15569                                     Sweden  1990  3.56273119
## 15578                                     Sweden  1990  3.56273119
## 15579                                     Sweden  1990  3.56273119
## 15580                                     Sweden  1990  3.56273119
## 15581                                     Sweden  1990  3.56273119
## 15582                                     Sweden  1990  3.56273119
## 15583                                     Sweden  1990  3.56273119
## 15584                                     Sweden  1990  3.56273119
## 15585                                     Sweden  1990  3.56273119
## 15586                                     Sweden  1990  3.56273119
## 15587                                     Sweden  1990  3.56273119
## 15588                                     Sweden  1990  3.56273119
## 15598                                     Sweden  1990  3.56273119
## 15599                                     Sweden  1990  3.56273119
## 15600                                     Sweden  1990  3.56273119
## 15601                                     Sweden  1990  3.56273119
## 15602                                     Sweden  1990  3.56273119
## 15620                                     Sweden  1990  3.56273119
## 15621                                     Sweden  1990  3.56273119
## 15623                                     Sweden  1990  3.56273119
## 15630                                     Sweden  1990  3.56273119
## 15632                                     Sweden  1990  3.56273119
## 15633                                     Sweden  1990  3.56273119
## 15634                                     Sweden  1990  3.56273119
## 15635                                     Sweden  1990  3.56273119
## 15639                                     Sweden  1990  3.56273119
## 15640                                     Sweden  1990  3.56273119
## 15641                                     Sweden  1990  3.56273119
## 15648                                Switzerland  1990  2.30527606
## 15649                                Switzerland  1990  2.30527606
## 15650                                Switzerland  1990  2.30527606
## 15651                                Switzerland  1990  2.30527606
## 15652                                Switzerland  1990  2.30527606
## 15653                                Switzerland  1990  2.30527606
## 15654                                Switzerland  1990  2.30527606
## 15655                                Switzerland  1990  2.30527606
## 15656                                Switzerland  1990  2.30527606
## 15657                                Switzerland  1990  2.30527606
## 15658                                Switzerland  1990  2.30527606
## 15659                                Switzerland  1990  2.30527606
## 15660                                Switzerland  1990  2.30527606
## 15661                                Switzerland  1990  2.30527606
## 15662                                Switzerland  1990  2.30527606
## 15663                                Switzerland  1990  2.30527606
## 15664                                Switzerland  1990  2.30527606
## 15665                                Switzerland  1990  2.30527606
## 15666                                Switzerland  1990  2.30527606
## 15667                                Switzerland  1990  2.30527606
## 15668                                Switzerland  1990  2.30527606
## 15669                                Switzerland  1990  2.30527606
## 15670                                Switzerland  1990  2.30527606
## 15671                                Switzerland  1990  2.30527606
## 15672                                Switzerland  1990  2.30527606
## 15679                                Switzerland  1990  2.30527606
## 15680                                Switzerland  1990  2.30527606
## 15681                                Switzerland  1990  2.30527606
## 15683                                Switzerland  1990  2.30527606
## 15688                                Switzerland  1990  2.30527606
## 15689                                Switzerland  1990  2.30527606
## 15700                                Switzerland  1990  2.30527606
## 15707                                Switzerland  1990  2.30527606
## 15708                                Switzerland  1990  2.30527606
## 15709                                Switzerland  1990  2.30527606
## 15710                                Switzerland  1990  2.30527606
## 15711                                Switzerland  1990  2.30527606
## 15712                                Switzerland  1990  2.30527606
## 15713                                Switzerland  1990  2.30527606
## 15714                                Switzerland  1990  2.30527606
## 15715                                Switzerland  1990  2.30527606
## 15716                                Switzerland  1990  2.30527606
## 15725                                Switzerland  1990  2.30527606
## 15726                                Switzerland  1990  2.30527606
## 15727                                Switzerland  1990  2.30527606
## 15728                                Switzerland  1990  2.30527606
## 15729                                Switzerland  1990  2.30527606
## 15730                                Switzerland  1990  2.30527606
## 15748                                Switzerland  1990  2.30527606
## 15749                                Switzerland  1990  2.30527606
## 15751                                Switzerland  1990  2.30527606
## 15757                                Switzerland  1990  2.30527606
## 15759                                Switzerland  1990  2.30527606
## 15760                                Switzerland  1990  2.30527606
## 15761                                Switzerland  1990  2.30527606
## 15762                                Switzerland  1990  2.30527606
## 15766                                Switzerland  1990  2.30527606
## 15767                                Switzerland  1990  2.30527606
## 15768                                Switzerland  1990  2.30527606
## 15776                       Syrian Arab Republic  1990 29.81274968
## 15777                       Syrian Arab Republic  1990 29.81274968
## 15778                       Syrian Arab Republic  1990 29.81274968
## 15779                       Syrian Arab Republic  1990 29.81274968
## 15780                       Syrian Arab Republic  1990 29.81274968
## 15781                       Syrian Arab Republic  1990 29.81274968
## 15782                       Syrian Arab Republic  1990 29.81274968
## 15783                       Syrian Arab Republic  1990 29.81274968
## 15784                       Syrian Arab Republic  1990 29.81274968
## 15785                       Syrian Arab Republic  1990 29.81274968
## 15786                       Syrian Arab Republic  1990 29.81274968
## 15787                       Syrian Arab Republic  1990 29.81274968
## 15788                       Syrian Arab Republic  1990 29.81274968
## 15790                       Syrian Arab Republic  1990 29.81274968
## 15791                       Syrian Arab Republic  1990 29.81274968
## 15792                       Syrian Arab Republic  1990 29.81274968
## 15793                       Syrian Arab Republic  1990 29.81274968
## 15794                       Syrian Arab Republic  1990 29.81274968
## 15795                       Syrian Arab Republic  1990 29.81274968
## 15796                       Syrian Arab Republic  1990 29.81274968
## 15797                       Syrian Arab Republic  1990 29.81274968
## 15798                       Syrian Arab Republic  1990 29.81274968
## 15799                       Syrian Arab Republic  1990 29.81274968
## 15800                       Syrian Arab Republic  1990 29.81274968
## 15802                       Syrian Arab Republic  1990 29.81274968
## 15803                       Syrian Arab Republic  1990 29.81274968
## 15804                       Syrian Arab Republic  1990 29.81274968
## 15805                       Syrian Arab Republic  1990 29.81274968
## 15807                       Syrian Arab Republic  1990 29.81274968
## 15812                       Syrian Arab Republic  1990 29.81274968
## 15813                       Syrian Arab Republic  1990 29.81274968
## 15825                       Syrian Arab Republic  1990 29.81274968
## 15835                       Syrian Arab Republic  1990 29.81274968
## 15836                       Syrian Arab Republic  1990 29.81274968
## 15837                       Syrian Arab Republic  1990 29.81274968
## 15838                       Syrian Arab Republic  1990 29.81274968
## 15839                       Syrian Arab Republic  1990 29.81274968
## 15840                       Syrian Arab Republic  1990 29.81274968
## 15841                       Syrian Arab Republic  1990 29.81274968
## 15842                       Syrian Arab Republic  1990 29.81274968
## 15843                       Syrian Arab Republic  1990 29.81274968
## 15844                       Syrian Arab Republic  1990 29.81274968
## 15853                       Syrian Arab Republic  1990 29.81274968
## 15854                       Syrian Arab Republic  1990 29.81274968
## 15869                       Syrian Arab Republic  1990 29.81274968
## 15884                       Syrian Arab Republic  1990 29.81274968
## 15887                       Syrian Arab Republic  1990 29.81274968
## 15889                       Syrian Arab Republic  1990 29.81274968
## 15890                       Syrian Arab Republic  1990 29.81274968
## 15891                       Syrian Arab Republic  1990 29.81274968
## 15892                       Syrian Arab Republic  1990 29.81274968
## 15893                       Syrian Arab Republic  1990 29.81274968
## 15897                       Syrian Arab Republic  1990 29.81274968
## 15898                       Syrian Arab Republic  1990 29.81274968
## 15899                       Syrian Arab Republic  1990 29.81274968
## 15905                                 Tajikistan  1990 33.33333333
## 15906                                 Tajikistan  1990 33.33333333
## 15907                                 Tajikistan  1990 33.33333333
## 15908                                 Tajikistan  1990 33.33333333
## 15909                                 Tajikistan  1990 33.33333333
## 15910                                 Tajikistan  1990 33.33333333
## 15911                                 Tajikistan  1990 33.33333333
## 15912                                 Tajikistan  1990 33.33333333
## 15913                                 Tajikistan  1990 33.33333333
## 15914                                 Tajikistan  1990 33.33333333
## 15915                                 Tajikistan  1990 33.33333333
## 15916                                 Tajikistan  1990 33.33333333
## 15923                                 Tajikistan  1990 33.33333333
## 15925                                 Tajikistan  1990 33.33333333
## 15926                                 Tajikistan  1990 33.33333333
## 15927                                 Tajikistan  1990 33.33333333
## 15928                                 Tajikistan  1990 33.33333333
## 15929                                 Tajikistan  1990 33.33333333
## 15930                                 Tajikistan  1990 33.33333333
## 15937                                 Tajikistan  1990 33.33333333
## 15939                                 Tajikistan  1990 33.33333333
## 15944                                 Tajikistan  1990 33.33333333
## 15945                                 Tajikistan  1990 33.33333333
## 15956                                 Tajikistan  1990 33.33333333
## 15967                                 Tajikistan  1990 33.33333333
## 15970                                 Tajikistan  1990 33.33333333
## 15971                                 Tajikistan  1990 33.33333333
## 15972                                 Tajikistan  1990 33.33333333
## 15973                                 Tajikistan  1990 33.33333333
## 15975                                 Tajikistan  1990 33.33333333
## 15976                                 Tajikistan  1990 33.33333333
## 15977                                 Tajikistan  1990 33.33333333
## 15978                                 Tajikistan  1990 33.33333333
## 15988                                 Tajikistan  1990 33.33333333
## 15989                                 Tajikistan  1990 33.33333333
## 15990                                 Tajikistan  1990 33.33333333
## 15991                                 Tajikistan  1990 33.33333333
## 15992                                 Tajikistan  1990 33.33333333
## 16009                                 Tajikistan  1990 33.33333333
## 16026                                 Tajikistan  1990 33.33333333
## 16033                                 Tajikistan  1990 33.33333333
## 16036                                 Tajikistan  1990 33.33333333
## 16044                                 Tajikistan  1990 33.33333333
## 16045                                 Tajikistan  1990 33.33333333
## 16046                                 Tajikistan  1990 33.33333333
## 16053                                   Thailand  1990 12.49962783
## 16054                                   Thailand  1990 12.49962783
## 16055                                   Thailand  1990 12.49962783
## 16056                                   Thailand  1990 12.49962783
## 16057                                   Thailand  1990 12.49962783
## 16058                                   Thailand  1990 12.49962783
## 16059                                   Thailand  1990 12.49962783
## 16060                                   Thailand  1990 12.49962783
## 16061                                   Thailand  1990 12.49962783
## 16062                                   Thailand  1990 12.49962783
## 16063                                   Thailand  1990 12.49962783
## 16064                                   Thailand  1990 12.49962783
## 16065                                   Thailand  1990 12.49962783
## 16066                                   Thailand  1990 12.49962783
## 16068                                   Thailand  1990 12.49962783
## 16069                                   Thailand  1990 12.49962783
## 16070                                   Thailand  1990 12.49962783
## 16071                                   Thailand  1990 12.49962783
## 16073                                   Thailand  1990 12.49962783
## 16074                                   Thailand  1990 12.49962783
## 16075                                   Thailand  1990 12.49962783
## 16076                                   Thailand  1990 12.49962783
## 16077                                   Thailand  1990 12.49962783
## 16078                                   Thailand  1990 12.49962783
## 16085                                   Thailand  1990 12.49962783
## 16087                                   Thailand  1990 12.49962783
## 16088                                   Thailand  1990 12.49962783
## 16089                                   Thailand  1990 12.49962783
## 16091                                   Thailand  1990 12.49962783
## 16096                                   Thailand  1990 12.49962783
## 16097                                   Thailand  1990 12.49962783
## 16110                                   Thailand  1990 12.49962783
## 16111                                   Thailand  1990 12.49962783
## 16120                                   Thailand  1990 12.49962783
## 16121                                   Thailand  1990 12.49962783
## 16122                                   Thailand  1990 12.49962783
## 16123                                   Thailand  1990 12.49962783
## 16124                                   Thailand  1990 12.49962783
## 16125                                   Thailand  1990 12.49962783
## 16126                                   Thailand  1990 12.49962783
## 16128                                   Thailand  1990 12.49962783
## 16129                                   Thailand  1990 12.49962783
## 16130                                   Thailand  1990 12.49962783
## 16131                                   Thailand  1990 12.49962783
## 16140                                   Thailand  1990 12.49962783
## 16141                                   Thailand  1990 12.49962783
## 16142                                   Thailand  1990 12.49962783
## 16143                                   Thailand  1990 12.49962783
## 16144                                   Thailand  1990 12.49962783
## 16145                                   Thailand  1990 12.49962783
## 16163                                   Thailand  1990 12.49962783
## 16178                                   Thailand  1990 12.49962783
## 16180                                   Thailand  1990 12.49962783
## 16187                                   Thailand  1990 12.49962783
## 16189                                   Thailand  1990 12.49962783
## 16190                                   Thailand  1990 12.49962783
## 16191                                   Thailand  1990 12.49962783
## 16192                                   Thailand  1990 12.49962783
## 16193                                   Thailand  1990 12.49962783
## 16194                                   Thailand  1990 12.49962783
## 16198                                   Thailand  1990 12.49962783
## 16199                                   Thailand  1990 12.49962783
## 16200                                   Thailand  1990 12.49962783
## 16208  The former Yugoslav Republic of Macedonia  1990  8.51190742
## 16209  The former Yugoslav Republic of Macedonia  1990  8.51190742
## 16210  The former Yugoslav Republic of Macedonia  1990  8.51190742
## 16211  The former Yugoslav Republic of Macedonia  1990  8.51190742
## 16212  The former Yugoslav Republic of Macedonia  1990  8.51190742
## 16213  The former Yugoslav Republic of Macedonia  1990  8.51190742
## 16214  The former Yugoslav Republic of Macedonia  1990  8.51190742
## 16215  The former Yugoslav Republic of Macedonia  1990  8.51190742
## 16216  The former Yugoslav Republic of Macedonia  1990  8.51190742
## 16218  The former Yugoslav Republic of Macedonia  1990  8.51190742
## 16219  The former Yugoslav Republic of Macedonia  1990  8.51190742
## 16220  The former Yugoslav Republic of Macedonia  1990  8.51190742
## 16225  The former Yugoslav Republic of Macedonia  1990  8.51190742
## 16240  The former Yugoslav Republic of Macedonia  1990  8.51190742
## 16242  The former Yugoslav Republic of Macedonia  1990  8.51190742
## 16247  The former Yugoslav Republic of Macedonia  1990  8.51190742
## 16248  The former Yugoslav Republic of Macedonia  1990  8.51190742
## 16261  The former Yugoslav Republic of Macedonia  1990  8.51190742
## 16262  The former Yugoslav Republic of Macedonia  1990  8.51190742
## 16271  The former Yugoslav Republic of Macedonia  1990  8.51190742
## 16274  The former Yugoslav Republic of Macedonia  1990  8.51190742
## 16275  The former Yugoslav Republic of Macedonia  1990  8.51190742
## 16276  The former Yugoslav Republic of Macedonia  1990  8.51190742
## 16277  The former Yugoslav Republic of Macedonia  1990  8.51190742
## 16278  The former Yugoslav Republic of Macedonia  1990  8.51190742
## 16279  The former Yugoslav Republic of Macedonia  1990  8.51190742
## 16280  The former Yugoslav Republic of Macedonia  1990  8.51190742
## 16281  The former Yugoslav Republic of Macedonia  1990  8.51190742
## 16291  The former Yugoslav Republic of Macedonia  1990  8.51190742
## 16292  The former Yugoslav Republic of Macedonia  1990  8.51190742
## 16293  The former Yugoslav Republic of Macedonia  1990  8.51190742
## 16294  The former Yugoslav Republic of Macedonia  1990  8.51190742
## 16295  The former Yugoslav Republic of Macedonia  1990  8.51190742
## 16313  The former Yugoslav Republic of Macedonia  1990  8.51190742
## 16330  The former Yugoslav Republic of Macedonia  1990  8.51190742
## 16335  The former Yugoslav Republic of Macedonia  1990  8.51190742
## 16338  The former Yugoslav Republic of Macedonia  1990  8.51190742
## 16347  The former Yugoslav Republic of Macedonia  1990  8.51190742
## 16348  The former Yugoslav Republic of Macedonia  1990  8.51190742
## 16349  The former Yugoslav Republic of Macedonia  1990  8.51190742
## 16356                                       Togo  1990 33.75411482
## 16357                                       Togo  1990 33.75411482
## 16358                                       Togo  1990 33.75411482
## 16359                                       Togo  1990 33.75411482
## 16360                                       Togo  1990 33.75411482
## 16361                                       Togo  1990 33.75411482
## 16362                                       Togo  1990 33.75411482
## 16363                                       Togo  1990 33.75411482
## 16364                                       Togo  1990 33.75411482
## 16365                                       Togo  1990 33.75411482
## 16366                                       Togo  1990 33.75411482
## 16367                                       Togo  1990 33.75411482
## 16368                                       Togo  1990 33.75411482
## 16369                                       Togo  1990 33.75411482
## 16371                                       Togo  1990 33.75411482
## 16372                                       Togo  1990 33.75411482
## 16373                                       Togo  1990 33.75411482
## 16374                                       Togo  1990 33.75411482
## 16376                                       Togo  1990 33.75411482
## 16377                                       Togo  1990 33.75411482
## 16378                                       Togo  1990 33.75411482
## 16379                                       Togo  1990 33.75411482
## 16380                                       Togo  1990 33.75411482
## 16381                                       Togo  1990 33.75411482
## 16382                                       Togo  1990 33.75411482
## 16384                                       Togo  1990 33.75411482
## 16385                                       Togo  1990 33.75411482
## 16386                                       Togo  1990 33.75411482
## 16387                                       Togo  1990 33.75411482
## 16388                                       Togo  1990 33.75411482
## 16390                                       Togo  1990 33.75411482
## 16394                                       Togo  1990 33.75411482
## 16395                                       Togo  1990 33.75411482
## 16406                                       Togo  1990 33.75411482
## 16417                                       Togo  1990 33.75411482
## 16418                                       Togo  1990 33.75411482
## 16419                                       Togo  1990 33.75411482
## 16420                                       Togo  1990 33.75411482
## 16421                                       Togo  1990 33.75411482
## 16422                                       Togo  1990 33.75411482
## 16423                                       Togo  1990 33.75411482
## 16425                                       Togo  1990 33.75411482
## 16426                                       Togo  1990 33.75411482
## 16427                                       Togo  1990 33.75411482
## 16428                                       Togo  1990 33.75411482
## 16437                                       Togo  1990 33.75411482
## 16438                                       Togo  1990 33.75411482
## 16439                                       Togo  1990 33.75411482
## 16440                                       Togo  1990 33.75411482
## 16441                                       Togo  1990 33.75411482
## 16442                                       Togo  1990 33.75411482
## 16459                                       Togo  1990 33.75411482
## 16474                                       Togo  1990 33.75411482
## 16476                                       Togo  1990 33.75411482
## 16484                                       Togo  1990 33.75411482
## 16485                                       Togo  1990 33.75411482
## 16486                                       Togo  1990 33.75411482
## 16487                                       Togo  1990 33.75411482
## 16488                                       Togo  1990 33.75411482
## 16489                                       Togo  1990 33.75411482
## 16494                                       Togo  1990 33.75411482
## 16495                                       Togo  1990 33.75411482
## 16496                                       Togo  1990 33.75411482
## 16503                                      Tonga  1990 35.59276808
## 16504                                      Tonga  1990 35.59276808
## 16505                                      Tonga  1990 35.59276808
## 16506                                      Tonga  1990 35.59276808
## 16507                                      Tonga  1990 35.59276808
## 16508                                      Tonga  1990 35.59276808
## 16509                                      Tonga  1990 35.59276808
## 16510                                      Tonga  1990 35.59276808
## 16511                                      Tonga  1990 35.59276808
## 16512                                      Tonga  1990 35.59276808
## 16513                                      Tonga  1990 35.59276808
## 16514                                      Tonga  1990 35.59276808
## 16519                                      Tonga  1990 35.59276808
## 16520                                      Tonga  1990 35.59276808
## 16523                                      Tonga  1990 35.59276808
## 16524                                      Tonga  1990 35.59276808
## 16525                                      Tonga  1990 35.59276808
## 16526                                      Tonga  1990 35.59276808
## 16527                                      Tonga  1990 35.59276808
## 16528                                      Tonga  1990 35.59276808
## 16531                                      Tonga  1990 35.59276808
## 16532                                      Tonga  1990 35.59276808
## 16533                                      Tonga  1990 35.59276808
## 16534                                      Tonga  1990 35.59276808
## 16536                                      Tonga  1990 35.59276808
## 16540                                      Tonga  1990 35.59276808
## 16541                                      Tonga  1990 35.59276808
## 16551                                      Tonga  1990 35.59276808
## 16552                                      Tonga  1990 35.59276808
## 16562                                      Tonga  1990 35.59276808
## 16563                                      Tonga  1990 35.59276808
## 16564                                      Tonga  1990 35.59276808
## 16565                                      Tonga  1990 35.59276808
## 16566                                      Tonga  1990 35.59276808
## 16567                                      Tonga  1990 35.59276808
## 16568                                      Tonga  1990 35.59276808
## 16569                                      Tonga  1990 35.59276808
## 16570                                      Tonga  1990 35.59276808
## 16571                                      Tonga  1990 35.59276808
## 16580                                      Tonga  1990 35.59276808
## 16581                                      Tonga  1990 35.59276808
## 16582                                      Tonga  1990 35.59276808
## 16583                                      Tonga  1990 35.59276808
## 16584                                      Tonga  1990 35.59276808
## 16585                                      Tonga  1990 35.59276808
## 16596                                      Tonga  1990 35.59276808
## 16597                                      Tonga  1990 35.59276808
## 16599                                      Tonga  1990 35.59276808
## 16603                                      Tonga  1990 35.59276808
## 16604                                      Tonga  1990 35.59276808
## 16605                                      Tonga  1990 35.59276808
## 16606                                      Tonga  1990 35.59276808
## 16607                                      Tonga  1990 35.59276808
## 16608                                      Tonga  1990 35.59276808
## 16609                                      Tonga  1990 35.59276808
## 16613                                      Tonga  1990 35.59276808
## 16614                                      Tonga  1990 35.59276808
## 16615                                      Tonga  1990 35.59276808
## 16621                        Trinidad and Tobago  1990  2.61541608
## 16622                        Trinidad and Tobago  1990  2.61541608
## 16623                        Trinidad and Tobago  1990  2.61541608
## 16624                        Trinidad and Tobago  1990  2.61541608
## 16625                        Trinidad and Tobago  1990  2.61541608
## 16626                        Trinidad and Tobago  1990  2.61541608
## 16627                        Trinidad and Tobago  1990  2.61541608
## 16628                        Trinidad and Tobago  1990  2.61541608
## 16629                        Trinidad and Tobago  1990  2.61541608
## 16630                        Trinidad and Tobago  1990  2.61541608
## 16631                        Trinidad and Tobago  1990  2.61541608
## 16632                        Trinidad and Tobago  1990  2.61541608
## 16633                        Trinidad and Tobago  1990  2.61541608
## 16634                        Trinidad and Tobago  1990  2.61541608
## 16635                        Trinidad and Tobago  1990  2.61541608
## 16636                        Trinidad and Tobago  1990  2.61541608
## 16637                        Trinidad and Tobago  1990  2.61541608
## 16638                        Trinidad and Tobago  1990  2.61541608
## 16640                        Trinidad and Tobago  1990  2.61541608
## 16641                        Trinidad and Tobago  1990  2.61541608
## 16642                        Trinidad and Tobago  1990  2.61541608
## 16643                        Trinidad and Tobago  1990  2.61541608
## 16644                        Trinidad and Tobago  1990  2.61541608
## 16645                        Trinidad and Tobago  1990  2.61541608
## 16646                        Trinidad and Tobago  1990  2.61541608
## 16655                        Trinidad and Tobago  1990  2.61541608
## 16656                        Trinidad and Tobago  1990  2.61541608
## 16657                        Trinidad and Tobago  1990  2.61541608
## 16659                        Trinidad and Tobago  1990  2.61541608
## 16664                        Trinidad and Tobago  1990  2.61541608
## 16665                        Trinidad and Tobago  1990  2.61541608
## 16676                        Trinidad and Tobago  1990  2.61541608
## 16688                        Trinidad and Tobago  1990  2.61541608
## 16689                        Trinidad and Tobago  1990  2.61541608
## 16690                        Trinidad and Tobago  1990  2.61541608
## 16691                        Trinidad and Tobago  1990  2.61541608
## 16692                        Trinidad and Tobago  1990  2.61541608
## 16693                        Trinidad and Tobago  1990  2.61541608
## 16694                        Trinidad and Tobago  1990  2.61541608
## 16695                        Trinidad and Tobago  1990  2.61541608
## 16696                        Trinidad and Tobago  1990  2.61541608
## 16697                        Trinidad and Tobago  1990  2.61541608
## 16698                        Trinidad and Tobago  1990  2.61541608
## 16707                        Trinidad and Tobago  1990  2.61541608
## 16708                        Trinidad and Tobago  1990  2.61541608
## 16709                        Trinidad and Tobago  1990  2.61541608
## 16710                        Trinidad and Tobago  1990  2.61541608
## 16711                        Trinidad and Tobago  1990  2.61541608
## 16725                        Trinidad and Tobago  1990  2.61541608
## 16738                        Trinidad and Tobago  1990  2.61541608
## 16743                        Trinidad and Tobago  1990  2.61541608
## 16745                        Trinidad and Tobago  1990  2.61541608
## 16746                        Trinidad and Tobago  1990  2.61541608
## 16747                        Trinidad and Tobago  1990  2.61541608
## 16748                        Trinidad and Tobago  1990  2.61541608
## 16752                        Trinidad and Tobago  1990  2.61541608
## 16753                        Trinidad and Tobago  1990  2.61541608
## 16754                        Trinidad and Tobago  1990  2.61541608
## 16761                                    Tunisia  1990 17.73547512
## 16762                                    Tunisia  1990 17.73547512
## 16763                                    Tunisia  1990 17.73547512
## 16764                                    Tunisia  1990 17.73547512
## 16765                                    Tunisia  1990 17.73547512
## 16766                                    Tunisia  1990 17.73547512
## 16767                                    Tunisia  1990 17.73547512
## 16768                                    Tunisia  1990 17.73547512
## 16769                                    Tunisia  1990 17.73547512
## 16770                                    Tunisia  1990 17.73547512
## 16771                                    Tunisia  1990 17.73547512
## 16772                                    Tunisia  1990 17.73547512
## 16773                                    Tunisia  1990 17.73547512
## 16774                                    Tunisia  1990 17.73547512
## 16775                                    Tunisia  1990 17.73547512
## 16776                                    Tunisia  1990 17.73547512
## 16777                                    Tunisia  1990 17.73547512
## 16778                                    Tunisia  1990 17.73547512
## 16779                                    Tunisia  1990 17.73547512
## 16781                                    Tunisia  1990 17.73547512
## 16782                                    Tunisia  1990 17.73547512
## 16783                                    Tunisia  1990 17.73547512
## 16784                                    Tunisia  1990 17.73547512
## 16785                                    Tunisia  1990 17.73547512
## 16786                                    Tunisia  1990 17.73547512
## 16787                                    Tunisia  1990 17.73547512
## 16793                                    Tunisia  1990 17.73547512
## 16794                                    Tunisia  1990 17.73547512
## 16795                                    Tunisia  1990 17.73547512
## 16796                                    Tunisia  1990 17.73547512
## 16797                                    Tunisia  1990 17.73547512
## 16799                                    Tunisia  1990 17.73547512
## 16800                                    Tunisia  1990 17.73547512
## 16804                                    Tunisia  1990 17.73547512
## 16805                                    Tunisia  1990 17.73547512
## 16817                                    Tunisia  1990 17.73547512
## 16827                                    Tunisia  1990 17.73547512
## 16828                                    Tunisia  1990 17.73547512
## 16829                                    Tunisia  1990 17.73547512
## 16830                                    Tunisia  1990 17.73547512
## 16831                                    Tunisia  1990 17.73547512
## 16832                                    Tunisia  1990 17.73547512
## 16833                                    Tunisia  1990 17.73547512
## 16834                                    Tunisia  1990 17.73547512
## 16835                                    Tunisia  1990 17.73547512
## 16836                                    Tunisia  1990 17.73547512
## 16837                                    Tunisia  1990 17.73547512
## 16846                                    Tunisia  1990 17.73547512
## 16847                                    Tunisia  1990 17.73547512
## 16848                                    Tunisia  1990 17.73547512
## 16849                                    Tunisia  1990 17.73547512
## 16850                                    Tunisia  1990 17.73547512
## 16851                                    Tunisia  1990 17.73547512
## 16868                                    Tunisia  1990 17.73547512
## 16883                                    Tunisia  1990 17.73547512
## 16885                                    Tunisia  1990 17.73547512
## 16892                                    Tunisia  1990 17.73547512
## 16894                                    Tunisia  1990 17.73547512
## 16895                                    Tunisia  1990 17.73547512
## 16896                                    Tunisia  1990 17.73547512
## 16897                                    Tunisia  1990 17.73547512
## 16898                                    Tunisia  1990 17.73547512
## 16899                                    Tunisia  1990 17.73547512
## 16904                                    Tunisia  1990 17.73547512
## 16905                                    Tunisia  1990 17.73547512
## 16906                                    Tunisia  1990 17.73547512
## 16912                                     Turkey  1990 18.09289968
## 16913                                     Turkey  1990 18.09289968
## 16914                                     Turkey  1990 18.09289968
## 16915                                     Turkey  1990 18.09289968
## 16916                                     Turkey  1990 18.09289968
## 16917                                     Turkey  1990 18.09289968
## 16918                                     Turkey  1990 18.09289968
## 16919                                     Turkey  1990 18.09289968
## 16920                                     Turkey  1990 18.09289968
## 16921                                     Turkey  1990 18.09289968
## 16922                                     Turkey  1990 18.09289968
## 16923                                     Turkey  1990 18.09289968
## 16924                                     Turkey  1990 18.09289968
## 16925                                     Turkey  1990 18.09289968
## 16927                                     Turkey  1990 18.09289968
## 16928                                     Turkey  1990 18.09289968
## 16929                                     Turkey  1990 18.09289968
## 16930                                     Turkey  1990 18.09289968
## 16931                                     Turkey  1990 18.09289968
## 16932                                     Turkey  1990 18.09289968
## 16933                                     Turkey  1990 18.09289968
## 16934                                     Turkey  1990 18.09289968
## 16935                                     Turkey  1990 18.09289968
## 16936                                     Turkey  1990 18.09289968
## 16937                                     Turkey  1990 18.09289968
## 16938                                     Turkey  1990 18.09289968
## 16943                                     Turkey  1990 18.09289968
## 16944                                     Turkey  1990 18.09289968
## 16945                                     Turkey  1990 18.09289968
## 16946                                     Turkey  1990 18.09289968
## 16947                                     Turkey  1990 18.09289968
## 16949                                     Turkey  1990 18.09289968
## 16954                                     Turkey  1990 18.09289968
## 16955                                     Turkey  1990 18.09289968
## 16968                                     Turkey  1990 18.09289968
## 16979                                     Turkey  1990 18.09289968
## 16980                                     Turkey  1990 18.09289968
## 16981                                     Turkey  1990 18.09289968
## 16982                                     Turkey  1990 18.09289968
## 16983                                     Turkey  1990 18.09289968
## 16984                                     Turkey  1990 18.09289968
## 16986                                     Turkey  1990 18.09289968
## 16987                                     Turkey  1990 18.09289968
## 16988                                     Turkey  1990 18.09289968
## 16989                                     Turkey  1990 18.09289968
## 16998                                     Turkey  1990 18.09289968
## 16999                                     Turkey  1990 18.09289968
## 17000                                     Turkey  1990 18.09289968
## 17001                                     Turkey  1990 18.09289968
## 17002                                     Turkey  1990 18.09289968
## 17003                                     Turkey  1990 18.09289968
## 17021                                     Turkey  1990 18.09289968
## 17023                                     Turkey  1990 18.09289968
## 17025                                     Turkey  1990 18.09289968
## 17032                                     Turkey  1990 18.09289968
## 17034                                     Turkey  1990 18.09289968
## 17035                                     Turkey  1990 18.09289968
## 17036                                     Turkey  1990 18.09289968
## 17037                                     Turkey  1990 18.09289968
## 17038                                     Turkey  1990 18.09289968
## 17039                                     Turkey  1990 18.09289968
## 17043                                     Turkey  1990 18.09289968
## 17044                                     Turkey  1990 18.09289968
## 17045                                     Turkey  1990 18.09289968
## 17053                               Turkmenistan  1990 33.33333333
## 17054                               Turkmenistan  1990 33.33333333
## 17055                               Turkmenistan  1990 33.33333333
## 17056                               Turkmenistan  1990 33.33333333
## 17057                               Turkmenistan  1990 33.33333333
## 17058                               Turkmenistan  1990 33.33333333
## 17059                               Turkmenistan  1990 33.33333333
## 17060                               Turkmenistan  1990 33.33333333
## 17061                               Turkmenistan  1990 33.33333333
## 17070                               Turkmenistan  1990 33.33333333
## 17077                               Turkmenistan  1990 33.33333333
## 17083                               Turkmenistan  1990 33.33333333
## 17084                               Turkmenistan  1990 33.33333333
## 17090                               Turkmenistan  1990 33.33333333
## 17102                               Turkmenistan  1990 33.33333333
## 17103                               Turkmenistan  1990 33.33333333
## 17104                               Turkmenistan  1990 33.33333333
## 17105                               Turkmenistan  1990 33.33333333
## 17106                               Turkmenistan  1990 33.33333333
## 17107                               Turkmenistan  1990 33.33333333
## 17108                               Turkmenistan  1990 33.33333333
## 17109                               Turkmenistan  1990 33.33333333
## 17118                               Turkmenistan  1990 33.33333333
## 17119                               Turkmenistan  1990 33.33333333
## 17121                               Turkmenistan  1990 33.33333333
## 17122                               Turkmenistan  1990 33.33333333
## 17136                               Turkmenistan  1990 33.33333333
## 17150                               Turkmenistan  1990 33.33333333
## 17154                               Turkmenistan  1990 33.33333333
## 17163                               Turkmenistan  1990 33.33333333
## 17164                               Turkmenistan  1990 33.33333333
## 17165                               Turkmenistan  1990 33.33333333
## 17170                                     Uganda  1990 56.57689698
## 17171                                     Uganda  1990 56.57689698
## 17172                                     Uganda  1990 56.57689698
## 17173                                     Uganda  1990 56.57689698
## 17174                                     Uganda  1990 56.57689698
## 17175                                     Uganda  1990 56.57689698
## 17176                                     Uganda  1990 56.57689698
## 17177                                     Uganda  1990 56.57689698
## 17178                                     Uganda  1990 56.57689698
## 17179                                     Uganda  1990 56.57689698
## 17180                                     Uganda  1990 56.57689698
## 17181                                     Uganda  1990 56.57689698
## 17182                                     Uganda  1990 56.57689698
## 17183                                     Uganda  1990 56.57689698
## 17186                                     Uganda  1990 56.57689698
## 17187                                     Uganda  1990 56.57689698
## 17188                                     Uganda  1990 56.57689698
## 17190                                     Uganda  1990 56.57689698
## 17191                                     Uganda  1990 56.57689698
## 17192                                     Uganda  1990 56.57689698
## 17193                                     Uganda  1990 56.57689698
## 17194                                     Uganda  1990 56.57689698
## 17195                                     Uganda  1990 56.57689698
## 17197                                     Uganda  1990 56.57689698
## 17199                                     Uganda  1990 56.57689698
## 17200                                     Uganda  1990 56.57689698
## 17201                                     Uganda  1990 56.57689698
## 17207                                     Uganda  1990 56.57689698
## 17208                                     Uganda  1990 56.57689698
## 17220                                     Uganda  1990 56.57689698
## 17231                                     Uganda  1990 56.57689698
## 17232                                     Uganda  1990 56.57689698
## 17233                                     Uganda  1990 56.57689698
## 17234                                     Uganda  1990 56.57689698
## 17235                                     Uganda  1990 56.57689698
## 17236                                     Uganda  1990 56.57689698
## 17237                                     Uganda  1990 56.57689698
## 17239                                     Uganda  1990 56.57689698
## 17240                                     Uganda  1990 56.57689698
## 17241                                     Uganda  1990 56.57689698
## 17242                                     Uganda  1990 56.57689698
## 17252                                     Uganda  1990 56.57689698
## 17253                                     Uganda  1990 56.57689698
## 17254                                     Uganda  1990 56.57689698
## 17255                                     Uganda  1990 56.57689698
## 17256                                     Uganda  1990 56.57689698
## 17273                                     Uganda  1990 56.57689698
## 17288                                     Uganda  1990 56.57689698
## 17290                                     Uganda  1990 56.57689698
## 17298                                     Uganda  1990 56.57689698
## 17299                                     Uganda  1990 56.57689698
## 17300                                     Uganda  1990 56.57689698
## 17301                                     Uganda  1990 56.57689698
## 17302                                     Uganda  1990 56.57689698
## 17308                                     Uganda  1990 56.57689698
## 17309                                     Uganda  1990 56.57689698
## 17310                                     Uganda  1990 56.57689698
## 17317                                    Ukraine  1990 25.57426300
## 17318                                    Ukraine  1990 25.57426300
## 17319                                    Ukraine  1990 25.57426300
## 17320                                    Ukraine  1990 25.57426300
## 17321                                    Ukraine  1990 25.57426300
## 17322                                    Ukraine  1990 25.57426300
## 17323                                    Ukraine  1990 25.57426300
## 17324                                    Ukraine  1990 25.57426300
## 17325                                    Ukraine  1990 25.57426300
## 17326                                    Ukraine  1990 25.57426300
## 17327                                    Ukraine  1990 25.57426300
## 17328                                    Ukraine  1990 25.57426300
## 17329                                    Ukraine  1990 25.57426300
## 17330                                    Ukraine  1990 25.57426300
## 17332                                    Ukraine  1990 25.57426300
## 17333                                    Ukraine  1990 25.57426300
## 17334                                    Ukraine  1990 25.57426300
## 17335                                    Ukraine  1990 25.57426300
## 17337                                    Ukraine  1990 25.57426300
## 17338                                    Ukraine  1990 25.57426300
## 17339                                    Ukraine  1990 25.57426300
## 17340                                    Ukraine  1990 25.57426300
## 17341                                    Ukraine  1990 25.57426300
## 17342                                    Ukraine  1990 25.57426300
## 17346                                    Ukraine  1990 25.57426300
## 17349                                    Ukraine  1990 25.57426300
## 17351                                    Ukraine  1990 25.57426300
## 17356                                    Ukraine  1990 25.57426300
## 17357                                    Ukraine  1990 25.57426300
## 17370                                    Ukraine  1990 25.57426300
## 17371                                    Ukraine  1990 25.57426300
## 17381                                    Ukraine  1990 25.57426300
## 17384                                    Ukraine  1990 25.57426300
## 17385                                    Ukraine  1990 25.57426300
## 17386                                    Ukraine  1990 25.57426300
## 17387                                    Ukraine  1990 25.57426300
## 17388                                    Ukraine  1990 25.57426300
## 17389                                    Ukraine  1990 25.57426300
## 17390                                    Ukraine  1990 25.57426300
## 17391                                    Ukraine  1990 25.57426300
## 17401                                    Ukraine  1990 25.57426300
## 17402                                    Ukraine  1990 25.57426300
## 17403                                    Ukraine  1990 25.57426300
## 17404                                    Ukraine  1990 25.57426300
## 17405                                    Ukraine  1990 25.57426300
## 17423                                    Ukraine  1990 25.57426300
## 17440                                    Ukraine  1990 25.57426300
## 17447                                    Ukraine  1990 25.57426300
## 17450                                    Ukraine  1990 25.57426300
## 17459                                    Ukraine  1990 25.57426300
## 17460                                    Ukraine  1990 25.57426300
## 17461                                    Ukraine  1990 25.57426300
## 17468                             United Kingdom  1990  1.37899605
## 17469                             United Kingdom  1990  1.37899605
## 17470                             United Kingdom  1990  1.37899605
## 17471                             United Kingdom  1990  1.37899605
## 17472                             United Kingdom  1990  1.37899605
## 17473                             United Kingdom  1990  1.37899605
## 17474                             United Kingdom  1990  1.37899605
## 17475                             United Kingdom  1990  1.37899605
## 17476                             United Kingdom  1990  1.37899605
## 17477                             United Kingdom  1990  1.37899605
## 17478                             United Kingdom  1990  1.37899605
## 17479                             United Kingdom  1990  1.37899605
## 17480                             United Kingdom  1990  1.37899605
## 17481                             United Kingdom  1990  1.37899605
## 17482                             United Kingdom  1990  1.37899605
## 17483                             United Kingdom  1990  1.37899605
## 17484                             United Kingdom  1990  1.37899605
## 17485                             United Kingdom  1990  1.37899605
## 17486                             United Kingdom  1990  1.37899605
## 17487                             United Kingdom  1990  1.37899605
## 17488                             United Kingdom  1990  1.37899605
## 17489                             United Kingdom  1990  1.37899605
## 17490                             United Kingdom  1990  1.37899605
## 17491                             United Kingdom  1990  1.37899605
## 17492                             United Kingdom  1990  1.37899605
## 17497                             United Kingdom  1990  1.37899605
## 17498                             United Kingdom  1990  1.37899605
## 17499                             United Kingdom  1990  1.37899605
## 17500                             United Kingdom  1990  1.37899605
## 17502                             United Kingdom  1990  1.37899605
## 17503                             United Kingdom  1990  1.37899605
## 17507                             United Kingdom  1990  1.37899605
## 17508                             United Kingdom  1990  1.37899605
## 17519                             United Kingdom  1990  1.37899605
## 17528                             United Kingdom  1990  1.37899605
## 17529                             United Kingdom  1990  1.37899605
## 17530                             United Kingdom  1990  1.37899605
## 17531                             United Kingdom  1990  1.37899605
## 17532                             United Kingdom  1990  1.37899605
## 17533                             United Kingdom  1990  1.37899605
## 17534                             United Kingdom  1990  1.37899605
## 17535                             United Kingdom  1990  1.37899605
## 17536                             United Kingdom  1990  1.37899605
## 17537                             United Kingdom  1990  1.37899605
## 17546                             United Kingdom  1990  1.37899605
## 17547                             United Kingdom  1990  1.37899605
## 17548                             United Kingdom  1990  1.37899605
## 17549                             United Kingdom  1990  1.37899605
## 17550                             United Kingdom  1990  1.37899605
## 17551                             United Kingdom  1990  1.37899605
## 17569                             United Kingdom  1990  1.37899605
## 17570                             United Kingdom  1990  1.37899605
## 17572                             United Kingdom  1990  1.37899605
## 17579                             United Kingdom  1990  1.37899605
## 17581                             United Kingdom  1990  1.37899605
## 17582                             United Kingdom  1990  1.37899605
## 17583                             United Kingdom  1990  1.37899605
## 17584                             United Kingdom  1990  1.37899605
## 17588                             United Kingdom  1990  1.37899605
## 17589                             United Kingdom  1990  1.37899605
## 17590                             United Kingdom  1990  1.37899605
## 17598                                    Uruguay  1990  9.20845768
## 17599                                    Uruguay  1990  9.20845768
## 17600                                    Uruguay  1990  9.20845768
## 17601                                    Uruguay  1990  9.20845768
## 17602                                    Uruguay  1990  9.20845768
## 17603                                    Uruguay  1990  9.20845768
## 17604                                    Uruguay  1990  9.20845768
## 17605                                    Uruguay  1990  9.20845768
## 17606                                    Uruguay  1990  9.20845768
## 17607                                    Uruguay  1990  9.20845768
## 17608                                    Uruguay  1990  9.20845768
## 17609                                    Uruguay  1990  9.20845768
## 17613                                    Uruguay  1990  9.20845768
## 17614                                    Uruguay  1990  9.20845768
## 17615                                    Uruguay  1990  9.20845768
## 17616                                    Uruguay  1990  9.20845768
## 17618                                    Uruguay  1990  9.20845768
## 17619                                    Uruguay  1990  9.20845768
## 17620                                    Uruguay  1990  9.20845768
## 17621                                    Uruguay  1990  9.20845768
## 17622                                    Uruguay  1990  9.20845768
## 17623                                    Uruguay  1990  9.20845768
## 17624                                    Uruguay  1990  9.20845768
## 17630                                    Uruguay  1990  9.20845768
## 17632                                    Uruguay  1990  9.20845768
## 17633                                    Uruguay  1990  9.20845768
## 17634                                    Uruguay  1990  9.20845768
## 17636                                    Uruguay  1990  9.20845768
## 17641                                    Uruguay  1990  9.20845768
## 17642                                    Uruguay  1990  9.20845768
## 17655                                    Uruguay  1990  9.20845768
## 17656                                    Uruguay  1990  9.20845768
## 17664                                    Uruguay  1990  9.20845768
## 17665                                    Uruguay  1990  9.20845768
## 17666                                    Uruguay  1990  9.20845768
## 17667                                    Uruguay  1990  9.20845768
## 17668                                    Uruguay  1990  9.20845768
## 17669                                    Uruguay  1990  9.20845768
## 17670                                    Uruguay  1990  9.20845768
## 17671                                    Uruguay  1990  9.20845768
## 17672                                    Uruguay  1990  9.20845768
## 17673                                    Uruguay  1990  9.20845768
## 17674                                    Uruguay  1990  9.20845768
## 17683                                    Uruguay  1990  9.20845768
## 17684                                    Uruguay  1990  9.20845768
## 17685                                    Uruguay  1990  9.20845768
## 17686                                    Uruguay  1990  9.20845768
## 17687                                    Uruguay  1990  9.20845768
## 17688                                    Uruguay  1990  9.20845768
## 17705                                    Uruguay  1990  9.20845768
## 17707                                    Uruguay  1990  9.20845768
## 17709                                    Uruguay  1990  9.20845768
## 17715                                    Uruguay  1990  9.20845768
## 17717                                    Uruguay  1990  9.20845768
## 17718                                    Uruguay  1990  9.20845768
## 17719                                    Uruguay  1990  9.20845768
## 17720                                    Uruguay  1990  9.20845768
## 17725                                    Uruguay  1990  9.20845768
## 17726                                    Uruguay  1990  9.20845768
## 17727                                    Uruguay  1990  9.20845768
## 17735                                 Uzbekistan  1990 32.76472796
## 17736                                 Uzbekistan  1990 32.76472796
## 17737                                 Uzbekistan  1990 32.76472796
## 17738                                 Uzbekistan  1990 32.76472796
## 17739                                 Uzbekistan  1990 32.76472796
## 17740                                 Uzbekistan  1990 32.76472796
## 17741                                 Uzbekistan  1990 32.76472796
## 17742                                 Uzbekistan  1990 32.76472796
## 17743                                 Uzbekistan  1990 32.76472796
## 17745                                 Uzbekistan  1990 32.76472796
## 17748                                 Uzbekistan  1990 32.76472796
## 17749                                 Uzbekistan  1990 32.76472796
## 17750                                 Uzbekistan  1990 32.76472796
## 17751                                 Uzbekistan  1990 32.76472796
## 17761                                 Uzbekistan  1990 32.76472796
## 17765                                 Uzbekistan  1990 32.76472796
## 17767                                 Uzbekistan  1990 32.76472796
## 17772                                 Uzbekistan  1990 32.76472796
## 17773                                 Uzbekistan  1990 32.76472796
## 17784                                 Uzbekistan  1990 32.76472796
## 17795                                 Uzbekistan  1990 32.76472796
## 17796                                 Uzbekistan  1990 32.76472796
## 17797                                 Uzbekistan  1990 32.76472796
## 17798                                 Uzbekistan  1990 32.76472796
## 17800                                 Uzbekistan  1990 32.76472796
## 17801                                 Uzbekistan  1990 32.76472796
## 17802                                 Uzbekistan  1990 32.76472796
## 17803                                 Uzbekistan  1990 32.76472796
## 17812                                 Uzbekistan  1990 32.76472796
## 17813                                 Uzbekistan  1990 32.76472796
## 17814                                 Uzbekistan  1990 32.76472796
## 17815                                 Uzbekistan  1990 32.76472796
## 17816                                 Uzbekistan  1990 32.76472796
## 17830                                 Uzbekistan  1990 32.76472796
## 17845                                 Uzbekistan  1990 32.76472796
## 17849                                 Uzbekistan  1990 32.76472796
## 17850                                 Uzbekistan  1990 32.76472796
## 17857                                 Uzbekistan  1990 32.76472796
## 17858                                 Uzbekistan  1990 32.76472796
## 17859                                 Uzbekistan  1990 32.76472796
## 17866                                    Vanuatu  1990 20.87692806
## 17867                                    Vanuatu  1990 20.87692806
## 17868                                    Vanuatu  1990 20.87692806
## 17869                                    Vanuatu  1990 20.87692806
## 17870                                    Vanuatu  1990 20.87692806
## 17871                                    Vanuatu  1990 20.87692806
## 17872                                    Vanuatu  1990 20.87692806
## 17873                                    Vanuatu  1990 20.87692806
## 17874                                    Vanuatu  1990 20.87692806
## 17881                                    Vanuatu  1990 20.87692806
## 17889                                    Vanuatu  1990 20.87692806
## 17890                                    Vanuatu  1990 20.87692806
## 17891                                    Vanuatu  1990 20.87692806
## 17893                                    Vanuatu  1990 20.87692806
## 17897                                    Vanuatu  1990 20.87692806
## 17898                                    Vanuatu  1990 20.87692806
## 17905                                    Vanuatu  1990 20.87692806
## 17906                                    Vanuatu  1990 20.87692806
## 17916                                    Vanuatu  1990 20.87692806
## 17917                                    Vanuatu  1990 20.87692806
## 17918                                    Vanuatu  1990 20.87692806
## 17919                                    Vanuatu  1990 20.87692806
## 17920                                    Vanuatu  1990 20.87692806
## 17921                                    Vanuatu  1990 20.87692806
## 17923                                    Vanuatu  1990 20.87692806
## 17924                                    Vanuatu  1990 20.87692806
## 17925                                    Vanuatu  1990 20.87692806
## 17926                                    Vanuatu  1990 20.87692806
## 17935                                    Vanuatu  1990 20.87692806
## 17936                                    Vanuatu  1990 20.87692806
## 17937                                    Vanuatu  1990 20.87692806
## 17938                                    Vanuatu  1990 20.87692806
## 17939                                    Vanuatu  1990 20.87692806
## 17940                                    Vanuatu  1990 20.87692806
## 17956                                    Vanuatu  1990 20.87692806
## 17970                                    Vanuatu  1990 20.87692806
## 17972                                    Vanuatu  1990 20.87692806
## 17976                                    Vanuatu  1990 20.87692806
## 17977                                    Vanuatu  1990 20.87692806
## 17978                                    Vanuatu  1990 20.87692806
## 17979                                    Vanuatu  1990 20.87692806
## 17980                                    Vanuatu  1990 20.87692806
## 17981                                    Vanuatu  1990 20.87692806
## 17985                                    Vanuatu  1990 20.87692806
## 17986                                    Vanuatu  1990 20.87692806
## 17987                                    Vanuatu  1990 20.87692806
## 17993         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 17994         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 17995         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 17996         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 17997         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 17998         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 17999         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18000         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18001         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18002         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18003         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18004         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18007         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18008         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18009         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18010         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18011         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18012         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18013         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18014         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18015         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18016         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18017         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18018         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18019         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18021         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18022         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18023         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18024         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18026         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18031         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18032         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18042         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18051         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18052         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18053         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18054         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18055         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18056         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18057         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18059         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18060         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18061         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18062         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18071         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18072         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18073         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18074         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18075         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18076         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18093         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18095         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18097         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18102         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18104         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18105         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18106         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18107         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18108         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18109         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18113         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18114         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18115         Venezuela (Bolivarian Republic of)  1990  5.46606477
## 18122                                      Yemen  1990 28.53267103
## 18123                                      Yemen  1990 28.53267103
## 18124                                      Yemen  1990 28.53267103
## 18125                                      Yemen  1990 28.53267103
## 18126                                      Yemen  1990 28.53267103
## 18127                                      Yemen  1990 28.53267103
## 18128                                      Yemen  1990 28.53267103
## 18129                                      Yemen  1990 28.53267103
## 18130                                      Yemen  1990 28.53267103
## 18131                                      Yemen  1990 28.53267103
## 18132                                      Yemen  1990 28.53267103
## 18133                                      Yemen  1990 28.53267103
## 18141                                      Yemen  1990 28.53267103
## 18142                                      Yemen  1990 28.53267103
## 18143                                      Yemen  1990 28.53267103
## 18144                                      Yemen  1990 28.53267103
## 18145                                      Yemen  1990 28.53267103
## 18146                                      Yemen  1990 28.53267103
## 18150                                      Yemen  1990 28.53267103
## 18151                                      Yemen  1990 28.53267103
## 18152                                      Yemen  1990 28.53267103
## 18154                                      Yemen  1990 28.53267103
## 18155                                      Yemen  1990 28.53267103
## 18159                                      Yemen  1990 28.53267103
## 18160                                      Yemen  1990 28.53267103
## 18171                                      Yemen  1990 28.53267103
## 18181                                      Yemen  1990 28.53267103
## 18182                                      Yemen  1990 28.53267103
## 18183                                      Yemen  1990 28.53267103
## 18184                                      Yemen  1990 28.53267103
## 18185                                      Yemen  1990 28.53267103
## 18186                                      Yemen  1990 28.53267103
## 18187                                      Yemen  1990 28.53267103
## 18189                                      Yemen  1990 28.53267103
## 18190                                      Yemen  1990 28.53267103
## 18191                                      Yemen  1990 28.53267103
## 18192                                      Yemen  1990 28.53267103
## 18201                                      Yemen  1990 28.53267103
## 18202                                      Yemen  1990 28.53267103
## 18203                                      Yemen  1990 28.53267103
## 18204                                      Yemen  1990 28.53267103
## 18205                                      Yemen  1990 28.53267103
## 18206                                      Yemen  1990 28.53267103
## 18223                                      Yemen  1990 28.53267103
## 18240                                      Yemen  1990 28.53267103
## 18246                                      Yemen  1990 28.53267103
## 18248                                      Yemen  1990 28.53267103
## 18249                                      Yemen  1990 28.53267103
## 18250                                      Yemen  1990 28.53267103
## 18251                                      Yemen  1990 28.53267103
## 18253                                      Yemen  1990 28.53267103
## 18257                                      Yemen  1990 28.53267103
## 18258                                      Yemen  1990 28.53267103
## 18259                                      Yemen  1990 28.53267103
## 18266                                     Zambia  1990 20.60479675
## 18267                                     Zambia  1990 20.60479675
## 18268                                     Zambia  1990 20.60479675
## 18269                                     Zambia  1990 20.60479675
## 18270                                     Zambia  1990 20.60479675
## 18271                                     Zambia  1990 20.60479675
## 18272                                     Zambia  1990 20.60479675
## 18273                                     Zambia  1990 20.60479675
## 18274                                     Zambia  1990 20.60479675
## 18275                                     Zambia  1990 20.60479675
## 18276                                     Zambia  1990 20.60479675
## 18277                                     Zambia  1990 20.60479675
## 18281                                     Zambia  1990 20.60479675
## 18282                                     Zambia  1990 20.60479675
## 18283                                     Zambia  1990 20.60479675
## 18284                                     Zambia  1990 20.60479675
## 18285                                     Zambia  1990 20.60479675
## 18286                                     Zambia  1990 20.60479675
## 18287                                     Zambia  1990 20.60479675
## 18288                                     Zambia  1990 20.60479675
## 18289                                     Zambia  1990 20.60479675
## 18290                                     Zambia  1990 20.60479675
## 18293                                     Zambia  1990 20.60479675
## 18295                                     Zambia  1990 20.60479675
## 18296                                     Zambia  1990 20.60479675
## 18297                                     Zambia  1990 20.60479675
## 18299                                     Zambia  1990 20.60479675
## 18304                                     Zambia  1990 20.60479675
## 18305                                     Zambia  1990 20.60479675
## 18316                                     Zambia  1990 20.60479675
## 18327                                     Zambia  1990 20.60479675
## 18328                                     Zambia  1990 20.60479675
## 18329                                     Zambia  1990 20.60479675
## 18330                                     Zambia  1990 20.60479675
## 18331                                     Zambia  1990 20.60479675
## 18332                                     Zambia  1990 20.60479675
## 18333                                     Zambia  1990 20.60479675
## 18335                                     Zambia  1990 20.60479675
## 18336                                     Zambia  1990 20.60479675
## 18337                                     Zambia  1990 20.60479675
## 18338                                     Zambia  1990 20.60479675
## 18347                                     Zambia  1990 20.60479675
## 18348                                     Zambia  1990 20.60479675
## 18349                                     Zambia  1990 20.60479675
## 18351                                     Zambia  1990 20.60479675
## 18352                                     Zambia  1990 20.60479675
## 18368                                     Zambia  1990 20.60479675
## 18392                                     Zambia  1990 20.60479675
## 18393                                     Zambia  1990 20.60479675
## 18395                                     Zambia  1990 20.60479675
## 18396                                     Zambia  1990 20.60479675
## 18397                                     Zambia  1990 20.60479675
## 18402                                     Zambia  1990 20.60479675
## 18403                                     Zambia  1990 20.60479675
## 18404                                     Zambia  1990 20.60479675
## 18411                                   Zimbabwe  1990 16.47630404
## 18412                                   Zimbabwe  1990 16.47630404
## 18413                                   Zimbabwe  1990 16.47630404
## 18414                                   Zimbabwe  1990 16.47630404
## 18415                                   Zimbabwe  1990 16.47630404
## 18416                                   Zimbabwe  1990 16.47630404
## 18417                                   Zimbabwe  1990 16.47630404
## 18418                                   Zimbabwe  1990 16.47630404
## 18419                                   Zimbabwe  1990 16.47630404
## 18420                                   Zimbabwe  1990 16.47630404
## 18421                                   Zimbabwe  1990 16.47630404
## 18422                                   Zimbabwe  1990 16.47630404
## 18423                                   Zimbabwe  1990 16.47630404
## 18424                                   Zimbabwe  1990 16.47630404
## 18425                                   Zimbabwe  1990 16.47630404
## 18427                                   Zimbabwe  1990 16.47630404
## 18428                                   Zimbabwe  1990 16.47630404
## 18429                                   Zimbabwe  1990 16.47630404
## 18431                                   Zimbabwe  1990 16.47630404
## 18432                                   Zimbabwe  1990 16.47630404
## 18433                                   Zimbabwe  1990 16.47630404
## 18434                                   Zimbabwe  1990 16.47630404
## 18435                                   Zimbabwe  1990 16.47630404
## 18436                                   Zimbabwe  1990 16.47630404
## 18439                                   Zimbabwe  1990 16.47630404
## 18441                                   Zimbabwe  1990 16.47630404
## 18442                                   Zimbabwe  1990 16.47630404
## 18443                                   Zimbabwe  1990 16.47630404
## 18445                                   Zimbabwe  1990 16.47630404
## 18450                                   Zimbabwe  1990 16.47630404
## 18451                                   Zimbabwe  1990 16.47630404
## 18463                                   Zimbabwe  1990 16.47630404
## 18474                                   Zimbabwe  1990 16.47630404
## 18475                                   Zimbabwe  1990 16.47630404
## 18476                                   Zimbabwe  1990 16.47630404
## 18477                                   Zimbabwe  1990 16.47630404
## 18478                                   Zimbabwe  1990 16.47630404
## 18479                                   Zimbabwe  1990 16.47630404
## 18480                                   Zimbabwe  1990 16.47630404
## 18482                                   Zimbabwe  1990 16.47630404
## 18483                                   Zimbabwe  1990 16.47630404
## 18484                                   Zimbabwe  1990 16.47630404
## 18485                                   Zimbabwe  1990 16.47630404
## 18494                                   Zimbabwe  1990 16.47630404
## 18495                                   Zimbabwe  1990 16.47630404
## 18496                                   Zimbabwe  1990 16.47630404
## 18497                                   Zimbabwe  1990 16.47630404
## 18498                                   Zimbabwe  1990 16.47630404
## 18499                                   Zimbabwe  1990 16.47630404
## 18517                                   Zimbabwe  1990 16.47630404
## 18532                                   Zimbabwe  1990 16.47630404
## 18534                                   Zimbabwe  1990 16.47630404
## 18538                                   Zimbabwe  1990 16.47630404
## 18540                                   Zimbabwe  1990 16.47630404
## 18541                                   Zimbabwe  1990 16.47630404
## 18542                                   Zimbabwe  1990 16.47630404
## 18543                                   Zimbabwe  1990 16.47630404
## 18544                                   Zimbabwe  1990 16.47630404
## 18545                                   Zimbabwe  1990 16.47630404
## 18549                                   Zimbabwe  1990 16.47630404
## 18550                                   Zimbabwe  1990 16.47630404
## 18551                                   Zimbabwe  1990 16.47630404
## 18558                                    Albania  1991 39.29529516
## 18560                                    Albania  1991 39.29529516
## 18561                                    Albania  1991 39.29529516
## 18562                                    Albania  1991 39.29529516
## 18563                                    Albania  1991 39.29529516
## 18565                                    Albania  1991 39.29529516
## 18566                                    Albania  1991 39.29529516
## 18567                                    Albania  1991 39.29529516
## 18568                                    Albania  1991 39.29529516
## 18569                                    Albania  1991 39.29529516
## 18570                                    Albania  1991 39.29529516
## 18571                                    Albania  1991 39.29529516
## 18578                                    Albania  1991 39.29529516
## 18579                                    Albania  1991 39.29529516
## 18580                                    Albania  1991 39.29529516
## 18582                                    Albania  1991 39.29529516
## 18583                                    Albania  1991 39.29529516
## 18616                                    Albania  1991 39.29529516
## 18618                                    Albania  1991 39.29529516
## 18622                                    Albania  1991 39.29529516
## 18625                                    Albania  1991 39.29529516
## 18626                                    Albania  1991 39.29529516
## 18627                                    Albania  1991 39.29529516
## 18628                                    Albania  1991 39.29529516
## 18629                                    Albania  1991 39.29529516
## 18630                                    Albania  1991 39.29529516
## 18631                                    Albania  1991 39.29529516
## 18632                                    Albania  1991 39.29529516
## 18633                                    Albania  1991 39.29529516
## 18634                                    Albania  1991 39.29529516
## 18635                                    Albania  1991 39.29529516
## 18648                                    Albania  1991 39.29529516
## 18649                                    Albania  1991 39.29529516
## 18680                                    Albania  1991 39.29529516
## 18693                                    Albania  1991 39.29529516
## 18695                                    Albania  1991 39.29529516
## 18696                                    Albania  1991 39.29529516
## 18699                                    Albania  1991 39.29529516
## 18700                                    Albania  1991 39.29529516
## 18701                                    Albania  1991 39.29529516
## 18706                                    Albania  1991 39.29529516
## 18707                                    Albania  1991 39.29529516
## 18708                                    Albania  1991 39.29529516
## 18711                                    Algeria  1991 10.16705800
## 18713                                    Algeria  1991 10.16705800
## 18714                                    Algeria  1991 10.16705800
## 18715                                    Algeria  1991 10.16705800
## 18716                                    Algeria  1991 10.16705800
## 18718                                    Algeria  1991 10.16705800
## 18719                                    Algeria  1991 10.16705800
## 18720                                    Algeria  1991 10.16705800
## 18721                                    Algeria  1991 10.16705800
## 18722                                    Algeria  1991 10.16705800
## 18731                                    Algeria  1991 10.16705800
## 18732                                    Algeria  1991 10.16705800
## 18733                                    Algeria  1991 10.16705800
## 18735                                    Algeria  1991 10.16705800
## 18736                                    Algeria  1991 10.16705800
## 18770                                    Algeria  1991 10.16705800
## 18772                                    Algeria  1991 10.16705800
## 18775                                    Algeria  1991 10.16705800
## 18778                                    Algeria  1991 10.16705800
## 18779                                    Algeria  1991 10.16705800
## 18780                                    Algeria  1991 10.16705800
## 18781                                    Algeria  1991 10.16705800
## 18782                                    Algeria  1991 10.16705800
## 18783                                    Algeria  1991 10.16705800
## 18784                                    Algeria  1991 10.16705800
## 18786                                    Algeria  1991 10.16705800
## 18787                                    Algeria  1991 10.16705800
## 18788                                    Algeria  1991 10.16705800
## 18789                                    Algeria  1991 10.16705800
## 18802                                    Algeria  1991 10.16705800
## 18803                                    Algeria  1991 10.16705800
## 18834                                    Algeria  1991 10.16705800
## 18845                                    Algeria  1991 10.16705800
## 18846                                    Algeria  1991 10.16705800
## 18847                                    Algeria  1991 10.16705800
## 18848                                    Algeria  1991 10.16705800
## 18849                                    Algeria  1991 10.16705800
## 18851                                    Algeria  1991 10.16705800
## 18852                                    Algeria  1991 10.16705800
## 18853                                    Algeria  1991 10.16705800
## 18858                                    Algeria  1991 10.16705800
## 18859                                    Algeria  1991 10.16705800
## 18860                                    Algeria  1991 10.16705800
## 18865                                     Angola  1991 25.00000000
## 18866                                     Angola  1991 25.00000000
## 18867                                     Angola  1991 25.00000000
## 18868                                     Angola  1991 25.00000000
## 18870                                     Angola  1991 25.00000000
## 18871                                     Angola  1991 25.00000000
## 18872                                     Angola  1991 25.00000000
## 18874                                     Angola  1991 25.00000000
## 18907                                     Angola  1991 25.00000000
## 18909                                     Angola  1991 25.00000000
## 18913                                     Angola  1991 25.00000000
## 18916                                     Angola  1991 25.00000000
## 18917                                     Angola  1991 25.00000000
## 18918                                     Angola  1991 25.00000000
## 18919                                     Angola  1991 25.00000000
## 18920                                     Angola  1991 25.00000000
## 18921                                     Angola  1991 25.00000000
## 18922                                     Angola  1991 25.00000000
## 18924                                     Angola  1991 25.00000000
## 18925                                     Angola  1991 25.00000000
## 18926                                     Angola  1991 25.00000000
## 18927                                     Angola  1991 25.00000000
## 18940                                     Angola  1991 25.00000000
## 18941                                     Angola  1991 25.00000000
## 18972                                     Angola  1991 25.00000000
## 18983                                     Angola  1991 25.00000000
## 18989                                     Angola  1991 25.00000000
## 18990                                     Angola  1991 25.00000000
## 18991                                     Angola  1991 25.00000000
## 18996                                     Angola  1991 25.00000000
## 18997                                     Angola  1991 25.00000000
## 18998                                     Angola  1991 25.00000000
## 19003                        Antigua and Barbuda  1991  2.04129868
## 19004                        Antigua and Barbuda  1991  2.04129868
## 19005                        Antigua and Barbuda  1991  2.04129868
## 19006                        Antigua and Barbuda  1991  2.04129868
## 19008                        Antigua and Barbuda  1991  2.04129868
## 19009                        Antigua and Barbuda  1991  2.04129868
## 19010                        Antigua and Barbuda  1991  2.04129868
## 19041                        Antigua and Barbuda  1991  2.04129868
## 19042                        Antigua and Barbuda  1991  2.04129868
## 19043                        Antigua and Barbuda  1991  2.04129868
## 19044                        Antigua and Barbuda  1991  2.04129868
## 19045                        Antigua and Barbuda  1991  2.04129868
## 19046                        Antigua and Barbuda  1991  2.04129868
## 19047                        Antigua and Barbuda  1991  2.04129868
## 19048                        Antigua and Barbuda  1991  2.04129868
## 19049                        Antigua and Barbuda  1991  2.04129868
## 19050                        Antigua and Barbuda  1991  2.04129868
## 19061                        Antigua and Barbuda  1991  2.04129868
## 19062                        Antigua and Barbuda  1991  2.04129868
## 19074                        Antigua and Barbuda  1991  2.04129868
## 19075                        Antigua and Barbuda  1991  2.04129868
## 19076                        Antigua and Barbuda  1991  2.04129868
## 19077                        Antigua and Barbuda  1991  2.04129868
## 19078                        Antigua and Barbuda  1991  2.04129868
## 19081                                  Argentina  1991  6.71649176
## 19083                                  Argentina  1991  6.71649176
## 19084                                  Argentina  1991  6.71649176
## 19085                                  Argentina  1991  6.71649176
## 19086                                  Argentina  1991  6.71649176
## 19088                                  Argentina  1991  6.71649176
## 19089                                  Argentina  1991  6.71649176
## 19090                                  Argentina  1991  6.71649176
## 19091                                  Argentina  1991  6.71649176
## 19092                                  Argentina  1991  6.71649176
## 19101                                  Argentina  1991  6.71649176
## 19102                                  Argentina  1991  6.71649176
## 19103                                  Argentina  1991  6.71649176
## 19105                                  Argentina  1991  6.71649176
## 19106                                  Argentina  1991  6.71649176
## 19138                                  Argentina  1991  6.71649176
## 19140                                  Argentina  1991  6.71649176
## 19142                                  Argentina  1991  6.71649176
## 19144                                  Argentina  1991  6.71649176
## 19145                                  Argentina  1991  6.71649176
## 19146                                  Argentina  1991  6.71649176
## 19147                                  Argentina  1991  6.71649176
## 19148                                  Argentina  1991  6.71649176
## 19149                                  Argentina  1991  6.71649176
## 19150                                  Argentina  1991  6.71649176
## 19152                                  Argentina  1991  6.71649176
## 19153                                  Argentina  1991  6.71649176
## 19154                                  Argentina  1991  6.71649176
## 19155                                  Argentina  1991  6.71649176
## 19168                                  Argentina  1991  6.71649176
## 19169                                  Argentina  1991  6.71649176
## 19188                                  Argentina  1991  6.71649176
## 19201                                  Argentina  1991  6.71649176
## 19202                                  Argentina  1991  6.71649176
## 19203                                  Argentina  1991  6.71649176
## 19204                                  Argentina  1991  6.71649176
## 19205                                  Argentina  1991  6.71649176
## 19206                                  Argentina  1991  6.71649176
## 19207                                  Argentina  1991  6.71649176
## 19208                                  Argentina  1991  6.71649176
## 19213                                  Argentina  1991  6.71649176
## 19214                                  Argentina  1991  6.71649176
## 19215                                  Argentina  1991  6.71649176
## 19218                                    Armenia  1991 24.97346072
## 19220                                    Armenia  1991 24.97346072
## 19221                                    Armenia  1991 24.97346072
## 19222                                    Armenia  1991 24.97346072
## 19223                                    Armenia  1991 24.97346072
## 19225                                    Armenia  1991 24.97346072
## 19226                                    Armenia  1991 24.97346072
## 19227                                    Armenia  1991 24.97346072
## 19228                                    Armenia  1991 24.97346072
## 19229                                    Armenia  1991 24.97346072
## 19238                                    Armenia  1991 24.97346072
## 19239                                    Armenia  1991 24.97346072
## 19240                                    Armenia  1991 24.97346072
## 19242                                    Armenia  1991 24.97346072
## 19243                                    Armenia  1991 24.97346072
## 19273                                    Armenia  1991 24.97346072
## 19275                                    Armenia  1991 24.97346072
## 19279                                    Armenia  1991 24.97346072
## 19282                                    Armenia  1991 24.97346072
## 19285                                    Armenia  1991 24.97346072
## 19286                                    Armenia  1991 24.97346072
## 19287                                    Armenia  1991 24.97346072
## 19288                                    Armenia  1991 24.97346072
## 19289                                    Armenia  1991 24.97346072
## 19290                                    Armenia  1991 24.97346072
## 19291                                    Armenia  1991 24.97346072
## 19292                                    Armenia  1991 24.97346072
## 19305                                    Armenia  1991 24.97346072
## 19306                                    Armenia  1991 24.97346072
## 19338                                    Armenia  1991 24.97346072
## 19351                                    Armenia  1991 24.97346072
## 19353                                    Armenia  1991 24.97346072
## 19357                                    Armenia  1991 24.97346072
## 19358                                    Armenia  1991 24.97346072
## 19359                                    Armenia  1991 24.97346072
## 19364                                    Armenia  1991 24.97346072
## 19365                                    Armenia  1991 24.97346072
## 19366                                    Armenia  1991 24.97346072
## 19369                                  Australia  1991  3.47751136
## 19371                                  Australia  1991  3.47751136
## 19372                                  Australia  1991  3.47751136
## 19373                                  Australia  1991  3.47751136
## 19374                                  Australia  1991  3.47751136
## 19376                                  Australia  1991  3.47751136
## 19377                                  Australia  1991  3.47751136
## 19378                                  Australia  1991  3.47751136
## 19379                                  Australia  1991  3.47751136
## 19380                                  Australia  1991  3.47751136
## 19381                                  Australia  1991  3.47751136
## 19382                                  Australia  1991  3.47751136
## 19388                                  Australia  1991  3.47751136
## 19389                                  Australia  1991  3.47751136
## 19390                                  Australia  1991  3.47751136
## 19392                                  Australia  1991  3.47751136
## 19393                                  Australia  1991  3.47751136
## 19413                                  Australia  1991  3.47751136
## 19422                                  Australia  1991  3.47751136
## 19424                                  Australia  1991  3.47751136
## 19427                                  Australia  1991  3.47751136
## 19430                                  Australia  1991  3.47751136
## 19431                                  Australia  1991  3.47751136
## 19432                                  Australia  1991  3.47751136
## 19433                                  Australia  1991  3.47751136
## 19434                                  Australia  1991  3.47751136
## 19435                                  Australia  1991  3.47751136
## 19436                                  Australia  1991  3.47751136
## 19437                                  Australia  1991  3.47751136
## 19438                                  Australia  1991  3.47751136
## 19439                                  Australia  1991  3.47751136
## 19440                                  Australia  1991  3.47751136
## 19453                                  Australia  1991  3.47751136
## 19454                                  Australia  1991  3.47751136
## 19484                                  Australia  1991  3.47751136
## 19485                                  Australia  1991  3.47751136
## 19486                                  Australia  1991  3.47751136
## 19487                                  Australia  1991  3.47751136
## 19488                                  Australia  1991  3.47751136
## 19489                                  Australia  1991  3.47751136
## 19490                                  Australia  1991  3.47751136
## 19495                                  Australia  1991  3.47751136
## 19496                                  Australia  1991  3.47751136
## 19497                                  Australia  1991  3.47751136
## 19500                                    Austria  1991  3.16707632
## 19502                                    Austria  1991  3.16707632
## 19503                                    Austria  1991  3.16707632
## 19504                                    Austria  1991  3.16707632
## 19505                                    Austria  1991  3.16707632
## 19507                                    Austria  1991  3.16707632
## 19508                                    Austria  1991  3.16707632
## 19509                                    Austria  1991  3.16707632
## 19510                                    Austria  1991  3.16707632
## 19511                                    Austria  1991  3.16707632
## 19512                                    Austria  1991  3.16707632
## 19513                                    Austria  1991  3.16707632
## 19519                                    Austria  1991  3.16707632
## 19520                                    Austria  1991  3.16707632
## 19521                                    Austria  1991  3.16707632
## 19523                                    Austria  1991  3.16707632
## 19524                                    Austria  1991  3.16707632
## 19555                                    Austria  1991  3.16707632
## 19557                                    Austria  1991  3.16707632
## 19561                                    Austria  1991  3.16707632
## 19563                                    Austria  1991  3.16707632
## 19564                                    Austria  1991  3.16707632
## 19565                                    Austria  1991  3.16707632
## 19566                                    Austria  1991  3.16707632
## 19567                                    Austria  1991  3.16707632
## 19568                                    Austria  1991  3.16707632
## 19569                                    Austria  1991  3.16707632
## 19570                                    Austria  1991  3.16707632
## 19571                                    Austria  1991  3.16707632
## 19572                                    Austria  1991  3.16707632
## 19585                                    Austria  1991  3.16707632
## 19586                                    Austria  1991  3.16707632
## 19616                                    Austria  1991  3.16707632
## 19617                                    Austria  1991  3.16707632
## 19619                                    Austria  1991  3.16707632
## 19620                                    Austria  1991  3.16707632
## 19621                                    Austria  1991  3.16707632
## 19622                                    Austria  1991  3.16707632
## 19627                                    Austria  1991  3.16707632
## 19628                                    Austria  1991  3.16707632
## 19629                                    Austria  1991  3.16707632
## 19634                                 Azerbaijan  1991 32.31501686
## 19635                                 Azerbaijan  1991 32.31501686
## 19636                                 Azerbaijan  1991 32.31501686
## 19637                                 Azerbaijan  1991 32.31501686
## 19639                                 Azerbaijan  1991 32.31501686
## 19640                                 Azerbaijan  1991 32.31501686
## 19641                                 Azerbaijan  1991 32.31501686
## 19643                                 Azerbaijan  1991 32.31501686
## 19644                                 Azerbaijan  1991 32.31501686
## 19645                                 Azerbaijan  1991 32.31501686
## 19687                                 Azerbaijan  1991 32.31501686
## 19689                                 Azerbaijan  1991 32.31501686
## 19693                                 Azerbaijan  1991 32.31501686
## 19696                                 Azerbaijan  1991 32.31501686
## 19699                                 Azerbaijan  1991 32.31501686
## 19700                                 Azerbaijan  1991 32.31501686
## 19701                                 Azerbaijan  1991 32.31501686
## 19702                                 Azerbaijan  1991 32.31501686
## 19704                                 Azerbaijan  1991 32.31501686
## 19705                                 Azerbaijan  1991 32.31501686
## 19706                                 Azerbaijan  1991 32.31501686
## 19707                                 Azerbaijan  1991 32.31501686
## 19720                                 Azerbaijan  1991 32.31501686
## 19721                                 Azerbaijan  1991 32.31501686
## 19752                                 Azerbaijan  1991 32.31501686
## 19765                                 Azerbaijan  1991 32.31501686
## 19770                                 Azerbaijan  1991 32.31501686
## 19771                                 Azerbaijan  1991 32.31501686
## 19772                                 Azerbaijan  1991 32.31501686
## 19777                                 Azerbaijan  1991 32.31501686
## 19778                                 Azerbaijan  1991 32.31501686
## 19779                                 Azerbaijan  1991 32.31501686
## 19783                                    Bahamas  1991  3.31890756
## 19784                                    Bahamas  1991  3.31890756
## 19785                                    Bahamas  1991  3.31890756
## 19786                                    Bahamas  1991  3.31890756
## 19788                                    Bahamas  1991  3.31890756
## 19789                                    Bahamas  1991  3.31890756
## 19790                                    Bahamas  1991  3.31890756
## 19792                                    Bahamas  1991  3.31890756
## 19793                                    Bahamas  1991  3.31890756
## 19794                                    Bahamas  1991  3.31890756
## 19830                                    Bahamas  1991  3.31890756
## 19832                                    Bahamas  1991  3.31890756
## 19833                                    Bahamas  1991  3.31890756
## 19835                                    Bahamas  1991  3.31890756
## 19836                                    Bahamas  1991  3.31890756
## 19837                                    Bahamas  1991  3.31890756
## 19838                                    Bahamas  1991  3.31890756
## 19839                                    Bahamas  1991  3.31890756
## 19840                                    Bahamas  1991  3.31890756
## 19841                                    Bahamas  1991  3.31890756
## 19842                                    Bahamas  1991  3.31890756
## 19843                                    Bahamas  1991  3.31890756
## 19844                                    Bahamas  1991  3.31890756
## 19845                                    Bahamas  1991  3.31890756
## 19857                                    Bahamas  1991  3.31890756
## 19858                                    Bahamas  1991  3.31890756
## 19872                                    Bahamas  1991  3.31890756
## 19880                                    Bahamas  1991  3.31890756
## 19881                                    Bahamas  1991  3.31890756
## 19882                                    Bahamas  1991  3.31890756
## 19884                                    Bahamas  1991  3.31890756
## 19885                                    Bahamas  1991  3.31890756
## 19886                                    Bahamas  1991  3.31890756
## 19891                                    Bahamas  1991  3.31890756
## 19892                                    Bahamas  1991  3.31890756
## 19893                                    Bahamas  1991  3.31890756
## 19895                                 Bangladesh  1991 30.36516230
## 19897                                 Bangladesh  1991 30.36516230
## 19898                                 Bangladesh  1991 30.36516230
## 19899                                 Bangladesh  1991 30.36516230
## 19900                                 Bangladesh  1991 30.36516230
## 19902                                 Bangladesh  1991 30.36516230
## 19903                                 Bangladesh  1991 30.36516230
## 19904                                 Bangladesh  1991 30.36516230
## 19905                                 Bangladesh  1991 30.36516230
## 19906                                 Bangladesh  1991 30.36516230
## 19907                                 Bangladesh  1991 30.36516230
## 19908                                 Bangladesh  1991 30.36516230
## 19915                                 Bangladesh  1991 30.36516230
## 19916                                 Bangladesh  1991 30.36516230
## 19917                                 Bangladesh  1991 30.36516230
## 19919                                 Bangladesh  1991 30.36516230
## 19920                                 Bangladesh  1991 30.36516230
## 19950                                 Bangladesh  1991 30.36516230
## 19952                                 Bangladesh  1991 30.36516230
## 19956                                 Bangladesh  1991 30.36516230
## 19959                                 Bangladesh  1991 30.36516230
## 19960                                 Bangladesh  1991 30.36516230
## 19961                                 Bangladesh  1991 30.36516230
## 19962                                 Bangladesh  1991 30.36516230
## 19963                                 Bangladesh  1991 30.36516230
## 19964                                 Bangladesh  1991 30.36516230
## 19965                                 Bangladesh  1991 30.36516230
## 19967                                 Bangladesh  1991 30.36516230
## 19968                                 Bangladesh  1991 30.36516230
## 19969                                 Bangladesh  1991 30.36516230
## 19970                                 Bangladesh  1991 30.36516230
## 19983                                 Bangladesh  1991 30.36516230
## 19984                                 Bangladesh  1991 30.36516230
## 20016                                 Bangladesh  1991 30.36516230
## 20028                                 Bangladesh  1991 30.36516230
## 20029                                 Bangladesh  1991 30.36516230
## 20030                                 Bangladesh  1991 30.36516230
## 20031                                 Bangladesh  1991 30.36516230
## 20032                                 Bangladesh  1991 30.36516230
## 20033                                 Bangladesh  1991 30.36516230
## 20034                                 Bangladesh  1991 30.36516230
## 20035                                 Bangladesh  1991 30.36516230
## 20040                                 Bangladesh  1991 30.36516230
## 20041                                 Bangladesh  1991 30.36516230
## 20042                                 Bangladesh  1991 30.36516230
## 20045                                   Barbados  1991  3.89963640
## 20047                                   Barbados  1991  3.89963640
## 20048                                   Barbados  1991  3.89963640
## 20049                                   Barbados  1991  3.89963640
## 20050                                   Barbados  1991  3.89963640
## 20052                                   Barbados  1991  3.89963640
## 20053                                   Barbados  1991  3.89963640
## 20054                                   Barbados  1991  3.89963640
## 20055                                   Barbados  1991  3.89963640
## 20056                                   Barbados  1991  3.89963640
## 20057                                   Barbados  1991  3.89963640
## 20058                                   Barbados  1991  3.89963640
## 20064                                   Barbados  1991  3.89963640
## 20065                                   Barbados  1991  3.89963640
## 20066                                   Barbados  1991  3.89963640
## 20068                                   Barbados  1991  3.89963640
## 20069                                   Barbados  1991  3.89963640
## 20098                                   Barbados  1991  3.89963640
## 20100                                   Barbados  1991  3.89963640
## 20102                                   Barbados  1991  3.89963640
## 20105                                   Barbados  1991  3.89963640
## 20106                                   Barbados  1991  3.89963640
## 20107                                   Barbados  1991  3.89963640
## 20108                                   Barbados  1991  3.89963640
## 20109                                   Barbados  1991  3.89963640
## 20110                                   Barbados  1991  3.89963640
## 20111                                   Barbados  1991  3.89963640
## 20112                                   Barbados  1991  3.89963640
## 20113                                   Barbados  1991  3.89963640
## 20114                                   Barbados  1991  3.89963640
## 20115                                   Barbados  1991  3.89963640
## 20128                                   Barbados  1991  3.89963640
## 20129                                   Barbados  1991  3.89963640
## 20155                                   Barbados  1991  3.89963640
## 20162                                   Barbados  1991  3.89963640
## 20163                                   Barbados  1991  3.89963640
## 20164                                   Barbados  1991  3.89963640
## 20165                                   Barbados  1991  3.89963640
## 20166                                   Barbados  1991  3.89963640
## 20168                                   Barbados  1991  3.89963640
## 20169                                   Barbados  1991  3.89963640
## 20170                                   Barbados  1991  3.89963640
## 20175                                   Barbados  1991  3.89963640
## 20176                                   Barbados  1991  3.89963640
## 20177                                   Barbados  1991  3.89963640
## 20181                                    Belarus  1991 20.98803828
## 20182                                    Belarus  1991 20.98803828
## 20183                                    Belarus  1991 20.98803828
## 20184                                    Belarus  1991 20.98803828
## 20186                                    Belarus  1991 20.98803828
## 20187                                    Belarus  1991 20.98803828
## 20188                                    Belarus  1991 20.98803828
## 20190                                    Belarus  1991 20.98803828
## 20235                                    Belarus  1991 20.98803828
## 20237                                    Belarus  1991 20.98803828
## 20240                                    Belarus  1991 20.98803828
## 20242                                    Belarus  1991 20.98803828
## 20245                                    Belarus  1991 20.98803828
## 20246                                    Belarus  1991 20.98803828
## 20247                                    Belarus  1991 20.98803828
## 20248                                    Belarus  1991 20.98803828
## 20249                                    Belarus  1991 20.98803828
## 20250                                    Belarus  1991 20.98803828
## 20251                                    Belarus  1991 20.98803828
## 20252                                    Belarus  1991 20.98803828
## 20265                                    Belarus  1991 20.98803828
## 20266                                    Belarus  1991 20.98803828
## 20285                                    Belarus  1991 20.98803828
## 20298                                    Belarus  1991 20.98803828
## 20304                                    Belarus  1991 20.98803828
## 20305                                    Belarus  1991 20.98803828
## 20306                                    Belarus  1991 20.98803828
## 20311                                    Belarus  1991 20.98803828
## 20312                                    Belarus  1991 20.98803828
## 20313                                    Belarus  1991 20.98803828
## 20316                                     Belize  1991 18.28921726
## 20318                                     Belize  1991 18.28921726
## 20319                                     Belize  1991 18.28921726
## 20320                                     Belize  1991 18.28921726
## 20321                                     Belize  1991 18.28921726
## 20323                                     Belize  1991 18.28921726
## 20324                                     Belize  1991 18.28921726
## 20325                                     Belize  1991 18.28921726
## 20326                                     Belize  1991 18.28921726
## 20327                                     Belize  1991 18.28921726
## 20335                                     Belize  1991 18.28921726
## 20336                                     Belize  1991 18.28921726
## 20337                                     Belize  1991 18.28921726
## 20339                                     Belize  1991 18.28921726
## 20340                                     Belize  1991 18.28921726
## 20370                                     Belize  1991 18.28921726
## 20372                                     Belize  1991 18.28921726
## 20375                                     Belize  1991 18.28921726
## 20378                                     Belize  1991 18.28921726
## 20379                                     Belize  1991 18.28921726
## 20380                                     Belize  1991 18.28921726
## 20381                                     Belize  1991 18.28921726
## 20382                                     Belize  1991 18.28921726
## 20383                                     Belize  1991 18.28921726
## 20384                                     Belize  1991 18.28921726
## 20386                                     Belize  1991 18.28921726
## 20387                                     Belize  1991 18.28921726
## 20388                                     Belize  1991 18.28921726
## 20389                                     Belize  1991 18.28921726
## 20402                                     Belize  1991 18.28921726
## 20403                                     Belize  1991 18.28921726
## 20428                                     Belize  1991 18.28921726
## 20439                                     Belize  1991 18.28921726
## 20440                                     Belize  1991 18.28921726
## 20441                                     Belize  1991 18.28921726
## 20442                                     Belize  1991 18.28921726
## 20443                                     Belize  1991 18.28921726
## 20445                                     Belize  1991 18.28921726
## 20446                                     Belize  1991 18.28921726
## 20447                                     Belize  1991 18.28921726
## 20452                                     Belize  1991 18.28921726
## 20453                                     Belize  1991 18.28921726
## 20454                                     Belize  1991 18.28921726
## 20457                                      Benin  1991 35.04377350
## 20459                                      Benin  1991 35.04377350
## 20460                                      Benin  1991 35.04377350
## 20461                                      Benin  1991 35.04377350
## 20462                                      Benin  1991 35.04377350
## 20464                                      Benin  1991 35.04377350
## 20465                                      Benin  1991 35.04377350
## 20466                                      Benin  1991 35.04377350
## 20467                                      Benin  1991 35.04377350
## 20468                                      Benin  1991 35.04377350
## 20477                                      Benin  1991 35.04377350
## 20478                                      Benin  1991 35.04377350
## 20479                                      Benin  1991 35.04377350
## 20481                                      Benin  1991 35.04377350
## 20482                                      Benin  1991 35.04377350
## 20511                                      Benin  1991 35.04377350
## 20513                                      Benin  1991 35.04377350
## 20516                                      Benin  1991 35.04377350
## 20519                                      Benin  1991 35.04377350
## 20520                                      Benin  1991 35.04377350
## 20521                                      Benin  1991 35.04377350
## 20522                                      Benin  1991 35.04377350
## 20523                                      Benin  1991 35.04377350
## 20524                                      Benin  1991 35.04377350
## 20525                                      Benin  1991 35.04377350
## 20527                                      Benin  1991 35.04377350
## 20528                                      Benin  1991 35.04377350
## 20529                                      Benin  1991 35.04377350
## 20530                                      Benin  1991 35.04377350
## 20543                                      Benin  1991 35.04377350
## 20544                                      Benin  1991 35.04377350
## 20575                                      Benin  1991 35.04377350
## 20587                                      Benin  1991 35.04377350
## 20588                                      Benin  1991 35.04377350
## 20589                                      Benin  1991 35.04377350
## 20590                                      Benin  1991 35.04377350
## 20591                                      Benin  1991 35.04377350
## 20593                                      Benin  1991 35.04377350
## 20594                                      Benin  1991 35.04377350
## 20595                                      Benin  1991 35.04377350
## 20600                                      Benin  1991 35.04377350
## 20601                                      Benin  1991 35.04377350
## 20602                                      Benin  1991 35.04377350
## 20607                                     Bhutan  1991 33.82891002
## 20608                                     Bhutan  1991 33.82891002
## 20609                                     Bhutan  1991 33.82891002
## 20610                                     Bhutan  1991 33.82891002
## 20612                                     Bhutan  1991 33.82891002
## 20613                                     Bhutan  1991 33.82891002
## 20614                                     Bhutan  1991 33.82891002
## 20616                                     Bhutan  1991 33.82891002
## 20659                                     Bhutan  1991 33.82891002
## 20661                                     Bhutan  1991 33.82891002
## 20666                                     Bhutan  1991 33.82891002
## 20669                                     Bhutan  1991 33.82891002
## 20670                                     Bhutan  1991 33.82891002
## 20671                                     Bhutan  1991 33.82891002
## 20672                                     Bhutan  1991 33.82891002
## 20673                                     Bhutan  1991 33.82891002
## 20674                                     Bhutan  1991 33.82891002
## 20676                                     Bhutan  1991 33.82891002
## 20677                                     Bhutan  1991 33.82891002
## 20678                                     Bhutan  1991 33.82891002
## 20679                                     Bhutan  1991 33.82891002
## 20692                                     Bhutan  1991 33.82891002
## 20693                                     Bhutan  1991 33.82891002
## 20724                                     Bhutan  1991 33.82891002
## 20734                                     Bhutan  1991 33.82891002
## 20735                                     Bhutan  1991 33.82891002
## 20736                                     Bhutan  1991 33.82891002
## 20740                                     Bhutan  1991 33.82891002
## 20741                                     Bhutan  1991 33.82891002
## 20742                                     Bhutan  1991 33.82891002
## 20747                                     Bhutan  1991 33.82891002
## 20748                                     Bhutan  1991 33.82891002
## 20749                                     Bhutan  1991 33.82891002
## 20751           Bolivia (Plurinational State of)  1991 17.08879728
## 20753           Bolivia (Plurinational State of)  1991 17.08879728
## 20754           Bolivia (Plurinational State of)  1991 17.08879728
## 20755           Bolivia (Plurinational State of)  1991 17.08879728
## 20756           Bolivia (Plurinational State of)  1991 17.08879728
## 20758           Bolivia (Plurinational State of)  1991 17.08879728
## 20759           Bolivia (Plurinational State of)  1991 17.08879728
## 20760           Bolivia (Plurinational State of)  1991 17.08879728
## 20761           Bolivia (Plurinational State of)  1991 17.08879728
## 20762           Bolivia (Plurinational State of)  1991 17.08879728
## 20770           Bolivia (Plurinational State of)  1991 17.08879728
## 20771           Bolivia (Plurinational State of)  1991 17.08879728
## 20772           Bolivia (Plurinational State of)  1991 17.08879728
## 20774           Bolivia (Plurinational State of)  1991 17.08879728
## 20775           Bolivia (Plurinational State of)  1991 17.08879728
## 20803           Bolivia (Plurinational State of)  1991 17.08879728
## 20805           Bolivia (Plurinational State of)  1991 17.08879728
## 20809           Bolivia (Plurinational State of)  1991 17.08879728
## 20812           Bolivia (Plurinational State of)  1991 17.08879728
## 20813           Bolivia (Plurinational State of)  1991 17.08879728
## 20814           Bolivia (Plurinational State of)  1991 17.08879728
## 20815           Bolivia (Plurinational State of)  1991 17.08879728
## 20816           Bolivia (Plurinational State of)  1991 17.08879728
## 20817           Bolivia (Plurinational State of)  1991 17.08879728
## 20818           Bolivia (Plurinational State of)  1991 17.08879728
## 20820           Bolivia (Plurinational State of)  1991 17.08879728
## 20821           Bolivia (Plurinational State of)  1991 17.08879728
## 20822           Bolivia (Plurinational State of)  1991 17.08879728
## 20823           Bolivia (Plurinational State of)  1991 17.08879728
## 20836           Bolivia (Plurinational State of)  1991 17.08879728
## 20837           Bolivia (Plurinational State of)  1991 17.08879728
## 20868           Bolivia (Plurinational State of)  1991 17.08879728
## 20880           Bolivia (Plurinational State of)  1991 17.08879728
## 20881           Bolivia (Plurinational State of)  1991 17.08879728
## 20882           Bolivia (Plurinational State of)  1991 17.08879728
## 20883           Bolivia (Plurinational State of)  1991 17.08879728
## 20884           Bolivia (Plurinational State of)  1991 17.08879728
## 20885           Bolivia (Plurinational State of)  1991 17.08879728
## 20886           Bolivia (Plurinational State of)  1991 17.08879728
## 20887           Bolivia (Plurinational State of)  1991 17.08879728
## 20892           Bolivia (Plurinational State of)  1991 17.08879728
## 20893           Bolivia (Plurinational State of)  1991 17.08879728
## 20894           Bolivia (Plurinational State of)  1991 17.08879728
## 20897                                   Botswana  1991  4.81753456
## 20899                                   Botswana  1991  4.81753456
## 20900                                   Botswana  1991  4.81753456
## 20901                                   Botswana  1991  4.81753456
## 20902                                   Botswana  1991  4.81753456
## 20904                                   Botswana  1991  4.81753456
## 20905                                   Botswana  1991  4.81753456
## 20906                                   Botswana  1991  4.81753456
## 20907                                   Botswana  1991  4.81753456
## 20908                                   Botswana  1991  4.81753456
## 20909                                   Botswana  1991  4.81753456
## 20910                                   Botswana  1991  4.81753456
## 20916                                   Botswana  1991  4.81753456
## 20917                                   Botswana  1991  4.81753456
## 20918                                   Botswana  1991  4.81753456
## 20920                                   Botswana  1991  4.81753456
## 20921                                   Botswana  1991  4.81753456
## 20949                                   Botswana  1991  4.81753456
## 20951                                   Botswana  1991  4.81753456
## 20954                                   Botswana  1991  4.81753456
## 20957                                   Botswana  1991  4.81753456
## 20958                                   Botswana  1991  4.81753456
## 20959                                   Botswana  1991  4.81753456
## 20960                                   Botswana  1991  4.81753456
## 20961                                   Botswana  1991  4.81753456
## 20962                                   Botswana  1991  4.81753456
## 20963                                   Botswana  1991  4.81753456
## 20965                                   Botswana  1991  4.81753456
## 20966                                   Botswana  1991  4.81753456
## 20967                                   Botswana  1991  4.81753456
## 20968                                   Botswana  1991  4.81753456
## 20981                                   Botswana  1991  4.81753456
## 20982                                   Botswana  1991  4.81753456
## 21001                                   Botswana  1991  4.81753456
## 21012                                   Botswana  1991  4.81753456
## 21013                                   Botswana  1991  4.81753456
## 21014                                   Botswana  1991  4.81753456
## 21015                                   Botswana  1991  4.81753456
## 21016                                   Botswana  1991  4.81753456
## 21017                                   Botswana  1991  4.81753456
## 21018                                   Botswana  1991  4.81753456
## 21019                                   Botswana  1991  4.81753456
## 21024                                   Botswana  1991  4.81753456
## 21025                                   Botswana  1991  4.81753456
## 21026                                   Botswana  1991  4.81753456
## 21029                                     Brazil  1991  7.78998059
## 21031                                     Brazil  1991  7.78998059
## 21032                                     Brazil  1991  7.78998059
## 21033                                     Brazil  1991  7.78998059
## 21034                                     Brazil  1991  7.78998059
## 21036                                     Brazil  1991  7.78998059
## 21037                                     Brazil  1991  7.78998059
## 21038                                     Brazil  1991  7.78998059
## 21039                                     Brazil  1991  7.78998059
## 21040                                     Brazil  1991  7.78998059
## 21049                                     Brazil  1991  7.78998059
## 21050                                     Brazil  1991  7.78998059
## 21051                                     Brazil  1991  7.78998059
## 21053                                     Brazil  1991  7.78998059
## 21054                                     Brazil  1991  7.78998059
## 21087                                     Brazil  1991  7.78998059
## 21089                                     Brazil  1991  7.78998059
## 21092                                     Brazil  1991  7.78998059
## 21095                                     Brazil  1991  7.78998059
## 21096                                     Brazil  1991  7.78998059
## 21097                                     Brazil  1991  7.78998059
## 21098                                     Brazil  1991  7.78998059
## 21099                                     Brazil  1991  7.78998059
## 21100                                     Brazil  1991  7.78998059
## 21101                                     Brazil  1991  7.78998059
## 21103                                     Brazil  1991  7.78998059
## 21104                                     Brazil  1991  7.78998059
## 21105                                     Brazil  1991  7.78998059
## 21106                                     Brazil  1991  7.78998059
## 21119                                     Brazil  1991  7.78998059
## 21120                                     Brazil  1991  7.78998059
## 21152                                     Brazil  1991  7.78998059
## 21165                                     Brazil  1991  7.78998059
## 21166                                     Brazil  1991  7.78998059
## 21167                                     Brazil  1991  7.78998059
## 21168                                     Brazil  1991  7.78998059
## 21169                                     Brazil  1991  7.78998059
## 21171                                     Brazil  1991  7.78998059
## 21172                                     Brazil  1991  7.78998059
## 21173                                     Brazil  1991  7.78998059
## 21178                                     Brazil  1991  7.78998059
## 21179                                     Brazil  1991  7.78998059
## 21180                                     Brazil  1991  7.78998059
## 21183                          Brunei Darussalam  1991  1.02205317
## 21185                          Brunei Darussalam  1991  1.02205317
## 21186                          Brunei Darussalam  1991  1.02205317
## 21187                          Brunei Darussalam  1991  1.02205317
## 21188                          Brunei Darussalam  1991  1.02205317
## 21190                          Brunei Darussalam  1991  1.02205317
## 21191                          Brunei Darussalam  1991  1.02205317
## 21192                          Brunei Darussalam  1991  1.02205317
## 21193                          Brunei Darussalam  1991  1.02205317
## 21194                          Brunei Darussalam  1991  1.02205317
## 21195                          Brunei Darussalam  1991  1.02205317
## 21196                          Brunei Darussalam  1991  1.02205317
## 21203                          Brunei Darussalam  1991  1.02205317
## 21204                          Brunei Darussalam  1991  1.02205317
## 21205                          Brunei Darussalam  1991  1.02205317
## 21207                          Brunei Darussalam  1991  1.02205317
## 21208                          Brunei Darussalam  1991  1.02205317
## 21236                          Brunei Darussalam  1991  1.02205317
## 21238                          Brunei Darussalam  1991  1.02205317
## 21239                          Brunei Darussalam  1991  1.02205317
## 21242                          Brunei Darussalam  1991  1.02205317
## 21243                          Brunei Darussalam  1991  1.02205317
## 21244                          Brunei Darussalam  1991  1.02205317
## 21245                          Brunei Darussalam  1991  1.02205317
## 21246                          Brunei Darussalam  1991  1.02205317
## 21247                          Brunei Darussalam  1991  1.02205317
## 21248                          Brunei Darussalam  1991  1.02205317
## 21249                          Brunei Darussalam  1991  1.02205317
## 21250                          Brunei Darussalam  1991  1.02205317
## 21251                          Brunei Darussalam  1991  1.02205317
## 21263                          Brunei Darussalam  1991  1.02205317
## 21264                          Brunei Darussalam  1991  1.02205317
## 21273                          Brunei Darussalam  1991  1.02205317
## 21282                          Brunei Darussalam  1991  1.02205317
## 21284                          Brunei Darussalam  1991  1.02205317
## 21286                          Brunei Darussalam  1991  1.02205317
## 21287                          Brunei Darussalam  1991  1.02205317
## 21288                          Brunei Darussalam  1991  1.02205317
## 21293                          Brunei Darussalam  1991  1.02205317
## 21294                          Brunei Darussalam  1991  1.02205317
## 21295                          Brunei Darussalam  1991  1.02205317
## 21298                                   Bulgaria  1991 16.94193423
## 21300                                   Bulgaria  1991 16.94193423
## 21301                                   Bulgaria  1991 16.94193423
## 21302                                   Bulgaria  1991 16.94193423
## 21303                                   Bulgaria  1991 16.94193423
## 21305                                   Bulgaria  1991 16.94193423
## 21306                                   Bulgaria  1991 16.94193423
## 21307                                   Bulgaria  1991 16.94193423
## 21308                                   Bulgaria  1991 16.94193423
## 21309                                   Bulgaria  1991 16.94193423
## 21310                                   Bulgaria  1991 16.94193423
## 21311                                   Bulgaria  1991 16.94193423
## 21318                                   Bulgaria  1991 16.94193423
## 21319                                   Bulgaria  1991 16.94193423
## 21320                                   Bulgaria  1991 16.94193423
## 21322                                   Bulgaria  1991 16.94193423
## 21323                                   Bulgaria  1991 16.94193423
## 21353                                   Bulgaria  1991 16.94193423
## 21355                                   Bulgaria  1991 16.94193423
## 21359                                   Bulgaria  1991 16.94193423
## 21361                                   Bulgaria  1991 16.94193423
## 21362                                   Bulgaria  1991 16.94193423
## 21363                                   Bulgaria  1991 16.94193423
## 21364                                   Bulgaria  1991 16.94193423
## 21365                                   Bulgaria  1991 16.94193423
## 21366                                   Bulgaria  1991 16.94193423
## 21367                                   Bulgaria  1991 16.94193423
## 21368                                   Bulgaria  1991 16.94193423
## 21369                                   Bulgaria  1991 16.94193423
## 21370                                   Bulgaria  1991 16.94193423
## 21371                                   Bulgaria  1991 16.94193423
## 21384                                   Bulgaria  1991 16.94193423
## 21385                                   Bulgaria  1991 16.94193423
## 21415                                   Bulgaria  1991 16.94193423
## 21416                                   Bulgaria  1991 16.94193423
## 21419                                   Bulgaria  1991 16.94193423
## 21420                                   Bulgaria  1991 16.94193423
## 21421                                   Bulgaria  1991 16.94193423
## 21426                                   Bulgaria  1991 16.94193423
## 21427                                   Bulgaria  1991 16.94193423
## 21428                                   Bulgaria  1991 16.94193423
## 21433                               Burkina Faso  1991 31.22742370
## 21434                               Burkina Faso  1991 31.22742370
## 21435                               Burkina Faso  1991 31.22742370
## 21436                               Burkina Faso  1991 31.22742370
## 21438                               Burkina Faso  1991 31.22742370
## 21439                               Burkina Faso  1991 31.22742370
## 21440                               Burkina Faso  1991 31.22742370
## 21442                               Burkina Faso  1991 31.22742370
## 21443                               Burkina Faso  1991 31.22742370
## 21444                               Burkina Faso  1991 31.22742370
## 21484                               Burkina Faso  1991 31.22742370
## 21486                               Burkina Faso  1991 31.22742370
## 21490                               Burkina Faso  1991 31.22742370
## 21493                               Burkina Faso  1991 31.22742370
## 21494                               Burkina Faso  1991 31.22742370
## 21495                               Burkina Faso  1991 31.22742370
## 21496                               Burkina Faso  1991 31.22742370
## 21497                               Burkina Faso  1991 31.22742370
## 21498                               Burkina Faso  1991 31.22742370
## 21499                               Burkina Faso  1991 31.22742370
## 21501                               Burkina Faso  1991 31.22742370
## 21502                               Burkina Faso  1991 31.22742370
## 21503                               Burkina Faso  1991 31.22742370
## 21504                               Burkina Faso  1991 31.22742370
## 21517                               Burkina Faso  1991 31.22742370
## 21518                               Burkina Faso  1991 31.22742370
## 21549                               Burkina Faso  1991 31.22742370
## 21562                               Burkina Faso  1991 31.22742370
## 21563                               Burkina Faso  1991 31.22742370
## 21564                               Burkina Faso  1991 31.22742370
## 21566                               Burkina Faso  1991 31.22742370
## 21568                               Burkina Faso  1991 31.22742370
## 21569                               Burkina Faso  1991 31.22742370
## 21570                               Burkina Faso  1991 31.22742370
## 21575                               Burkina Faso  1991 31.22742370
## 21576                               Burkina Faso  1991 31.22742370
## 21577                               Burkina Faso  1991 31.22742370
## 21579                                    Burundi  1991 54.31071310
## 21581                                    Burundi  1991 54.31071310
## 21582                                    Burundi  1991 54.31071310
## 21583                                    Burundi  1991 54.31071310
## 21584                                    Burundi  1991 54.31071310
## 21586                                    Burundi  1991 54.31071310
## 21587                                    Burundi  1991 54.31071310
## 21588                                    Burundi  1991 54.31071310
## 21589                                    Burundi  1991 54.31071310
## 21590                                    Burundi  1991 54.31071310
## 21591                                    Burundi  1991 54.31071310
## 21592                                    Burundi  1991 54.31071310
## 21599                                    Burundi  1991 54.31071310
## 21600                                    Burundi  1991 54.31071310
## 21601                                    Burundi  1991 54.31071310
## 21603                                    Burundi  1991 54.31071310
## 21604                                    Burundi  1991 54.31071310
## 21632                                    Burundi  1991 54.31071310
## 21634                                    Burundi  1991 54.31071310
## 21637                                    Burundi  1991 54.31071310
## 21640                                    Burundi  1991 54.31071310
## 21641                                    Burundi  1991 54.31071310
## 21642                                    Burundi  1991 54.31071310
## 21643                                    Burundi  1991 54.31071310
## 21644                                    Burundi  1991 54.31071310
## 21645                                    Burundi  1991 54.31071310
## 21646                                    Burundi  1991 54.31071310
## 21648                                    Burundi  1991 54.31071310
## 21649                                    Burundi  1991 54.31071310
## 21650                                    Burundi  1991 54.31071310
## 21651                                    Burundi  1991 54.31071310
## 21664                                    Burundi  1991 54.31071310
## 21665                                    Burundi  1991 54.31071310
## 21697                                    Burundi  1991 54.31071310
## 21708                                    Burundi  1991 54.31071310
## 21709                                    Burundi  1991 54.31071310
## 21710                                    Burundi  1991 54.31071310
## 21711                                    Burundi  1991 54.31071310
## 21714                                    Burundi  1991 54.31071310
## 21715                                    Burundi  1991 54.31071310
## 21716                                    Burundi  1991 54.31071310
## 21721                                    Burundi  1991 54.31071310
## 21722                                    Burundi  1991 54.31071310
## 21723                                    Burundi  1991 54.31071310
## 21726                                   Cameroon  1991 24.79498173
## 21728                                   Cameroon  1991 24.79498173
## 21729                                   Cameroon  1991 24.79498173
## 21730                                   Cameroon  1991 24.79498173
## 21731                                   Cameroon  1991 24.79498173
## 21733                                   Cameroon  1991 24.79498173
## 21734                                   Cameroon  1991 24.79498173
## 21735                                   Cameroon  1991 24.79498173
## 21736                                   Cameroon  1991 24.79498173
## 21737                                   Cameroon  1991 24.79498173
## 21738                                   Cameroon  1991 24.79498173
## 21746                                   Cameroon  1991 24.79498173
## 21747                                   Cameroon  1991 24.79498173
## 21748                                   Cameroon  1991 24.79498173
## 21750                                   Cameroon  1991 24.79498173
## 21751                                   Cameroon  1991 24.79498173
## 21779                                   Cameroon  1991 24.79498173
## 21781                                   Cameroon  1991 24.79498173
## 21786                                   Cameroon  1991 24.79498173
## 21789                                   Cameroon  1991 24.79498173
## 21790                                   Cameroon  1991 24.79498173
## 21791                                   Cameroon  1991 24.79498173
## 21792                                   Cameroon  1991 24.79498173
## 21793                                   Cameroon  1991 24.79498173
## 21794                                   Cameroon  1991 24.79498173
## 21795                                   Cameroon  1991 24.79498173
## 21797                                   Cameroon  1991 24.79498173
## 21798                                   Cameroon  1991 24.79498173
## 21799                                   Cameroon  1991 24.79498173
## 21800                                   Cameroon  1991 24.79498173
## 21813                                   Cameroon  1991 24.79498173
## 21814                                   Cameroon  1991 24.79498173
## 21845                                   Cameroon  1991 24.79498173
## 21857                                   Cameroon  1991 24.79498173
## 21858                                   Cameroon  1991 24.79498173
## 21859                                   Cameroon  1991 24.79498173
## 21860                                   Cameroon  1991 24.79498173
## 21861                                   Cameroon  1991 24.79498173
## 21863                                   Cameroon  1991 24.79498173
## 21864                                   Cameroon  1991 24.79498173
## 21865                                   Cameroon  1991 24.79498173
## 21870                                   Cameroon  1991 24.79498173
## 21871                                   Cameroon  1991 24.79498173
## 21872                                   Cameroon  1991 24.79498173
## 21875                   Central African Republic  1991 45.97148974
## 21877                   Central African Republic  1991 45.97148974
## 21878                   Central African Republic  1991 45.97148974
## 21879                   Central African Republic  1991 45.97148974
## 21880                   Central African Republic  1991 45.97148974
## 21882                   Central African Republic  1991 45.97148974
## 21883                   Central African Republic  1991 45.97148974
## 21884                   Central African Republic  1991 45.97148974
## 21885                   Central African Republic  1991 45.97148974
## 21886                   Central African Republic  1991 45.97148974
## 21887                   Central African Republic  1991 45.97148974
## 21888                   Central African Republic  1991 45.97148974
## 21895                   Central African Republic  1991 45.97148974
## 21896                   Central African Republic  1991 45.97148974
## 21897                   Central African Republic  1991 45.97148974
## 21899                   Central African Republic  1991 45.97148974
## 21900                   Central African Republic  1991 45.97148974
## 21927                   Central African Republic  1991 45.97148974
## 21929                   Central African Republic  1991 45.97148974
## 21933                   Central African Republic  1991 45.97148974
## 21936                   Central African Republic  1991 45.97148974
## 21937                   Central African Republic  1991 45.97148974
## 21938                   Central African Republic  1991 45.97148974
## 21939                   Central African Republic  1991 45.97148974
## 21940                   Central African Republic  1991 45.97148974
## 21941                   Central African Republic  1991 45.97148974
## 21942                   Central African Republic  1991 45.97148974
## 21944                   Central African Republic  1991 45.97148974
## 21945                   Central African Republic  1991 45.97148974
## 21946                   Central African Republic  1991 45.97148974
## 21947                   Central African Republic  1991 45.97148974
## 21960                   Central African Republic  1991 45.97148974
## 21961                   Central African Republic  1991 45.97148974
## 21992                   Central African Republic  1991 45.97148974
## 22003                   Central African Republic  1991 45.97148974
## 22004                   Central African Republic  1991 45.97148974
## 22005                   Central African Republic  1991 45.97148974
## 22006                   Central African Republic  1991 45.97148974
## 22007                   Central African Republic  1991 45.97148974
## 22009                   Central African Republic  1991 45.97148974
## 22010                   Central African Republic  1991 45.97148974
## 22011                   Central African Republic  1991 45.97148974
## 22015                   Central African Republic  1991 45.97148974
## 22016                   Central African Republic  1991 45.97148974
## 22017                   Central African Republic  1991 45.97148974
## 22021                                       Chad  1991 36.49593846
## 22022                                       Chad  1991 36.49593846
## 22023                                       Chad  1991 36.49593846
## 22024                                       Chad  1991 36.49593846
## 22026                                       Chad  1991 36.49593846
## 22027                                       Chad  1991 36.49593846
## 22028                                       Chad  1991 36.49593846
## 22030                                       Chad  1991 36.49593846
## 22071                                       Chad  1991 36.49593846
## 22073                                       Chad  1991 36.49593846
## 22077                                       Chad  1991 36.49593846
## 22080                                       Chad  1991 36.49593846
## 22081                                       Chad  1991 36.49593846
## 22082                                       Chad  1991 36.49593846
## 22083                                       Chad  1991 36.49593846
## 22084                                       Chad  1991 36.49593846
## 22085                                       Chad  1991 36.49593846
## 22086                                       Chad  1991 36.49593846
## 22088                                       Chad  1991 36.49593846
## 22089                                       Chad  1991 36.49593846
## 22090                                       Chad  1991 36.49593846
## 22091                                       Chad  1991 36.49593846
## 22104                                       Chad  1991 36.49593846
## 22105                                       Chad  1991 36.49593846
## 22136                                       Chad  1991 36.49593846
## 22147                                       Chad  1991 36.49593846
## 22148                                       Chad  1991 36.49593846
## 22149                                       Chad  1991 36.49593846
## 22150                                       Chad  1991 36.49593846
## 22153                                       Chad  1991 36.49593846
## 22154                                       Chad  1991 36.49593846
## 22155                                       Chad  1991 36.49593846
## 22160                                       Chad  1991 36.49593846
## 22161                                       Chad  1991 36.49593846
## 22162                                       Chad  1991 36.49593846
## 22164                                      Chile  1991 10.26202172
## 22166                                      Chile  1991 10.26202172
## 22167                                      Chile  1991 10.26202172
## 22168                                      Chile  1991 10.26202172
## 22169                                      Chile  1991 10.26202172
## 22171                                      Chile  1991 10.26202172
## 22172                                      Chile  1991 10.26202172
## 22173                                      Chile  1991 10.26202172
## 22174                                      Chile  1991 10.26202172
## 22175                                      Chile  1991 10.26202172
## 22176                                      Chile  1991 10.26202172
## 22177                                      Chile  1991 10.26202172
## 22184                                      Chile  1991 10.26202172
## 22185                                      Chile  1991 10.26202172
## 22186                                      Chile  1991 10.26202172
## 22188                                      Chile  1991 10.26202172
## 22189                                      Chile  1991 10.26202172
## 22219                                      Chile  1991 10.26202172
## 22221                                      Chile  1991 10.26202172
## 22223                                      Chile  1991 10.26202172
## 22226                                      Chile  1991 10.26202172
## 22227                                      Chile  1991 10.26202172
## 22228                                      Chile  1991 10.26202172
## 22229                                      Chile  1991 10.26202172
## 22230                                      Chile  1991 10.26202172
## 22231                                      Chile  1991 10.26202172
## 22232                                      Chile  1991 10.26202172
## 22233                                      Chile  1991 10.26202172
## 22234                                      Chile  1991 10.26202172
## 22235                                      Chile  1991 10.26202172
## 22236                                      Chile  1991 10.26202172
## 22249                                      Chile  1991 10.26202172
## 22250                                      Chile  1991 10.26202172
## 22268                                      Chile  1991 10.26202172
## 22280                                      Chile  1991 10.26202172
## 22281                                      Chile  1991 10.26202172
## 22282                                      Chile  1991 10.26202172
## 22283                                      Chile  1991 10.26202172
## 22286                                      Chile  1991 10.26202172
## 22287                                      Chile  1991 10.26202172
## 22288                                      Chile  1991 10.26202172
## 22293                                      Chile  1991 10.26202172
## 22294                                      Chile  1991 10.26202172
## 22295                                      Chile  1991 10.26202172
## 22298                                      China  1991 24.03406739
## 22300                                      China  1991 24.03406739
## 22301                                      China  1991 24.03406739
## 22302                                      China  1991 24.03406739
## 22303                                      China  1991 24.03406739
## 22305                                      China  1991 24.03406739
## 22306                                      China  1991 24.03406739
## 22307                                      China  1991 24.03406739
## 22308                                      China  1991 24.03406739
## 22309                                      China  1991 24.03406739
## 22310                                      China  1991 24.03406739
## 22311                                      China  1991 24.03406739
## 22318                                      China  1991 24.03406739
## 22319                                      China  1991 24.03406739
## 22320                                      China  1991 24.03406739
## 22322                                      China  1991 24.03406739
## 22323                                      China  1991 24.03406739
## 22352                                      China  1991 24.03406739
## 22354                                      China  1991 24.03406739
## 22356                                      China  1991 24.03406739
## 22359                                      China  1991 24.03406739
## 22360                                      China  1991 24.03406739
## 22361                                      China  1991 24.03406739
## 22362                                      China  1991 24.03406739
## 22363                                      China  1991 24.03406739
## 22364                                      China  1991 24.03406739
## 22366                                      China  1991 24.03406739
## 22367                                      China  1991 24.03406739
## 22368                                      China  1991 24.03406739
## 22369                                      China  1991 24.03406739
## 22381                                      China  1991 24.03406739
## 22382                                      China  1991 24.03406739
## 22413                                      China  1991 24.03406739
## 22424                                      China  1991 24.03406739
## 22425                                      China  1991 24.03406739
## 22426                                      China  1991 24.03406739
## 22427                                      China  1991 24.03406739
## 22428                                      China  1991 24.03406739
## 22429                                      China  1991 24.03406739
## 22430                                      China  1991 24.03406739
## 22431                                      China  1991 24.03406739
## 22436                                      China  1991 24.03406739
## 22437                                      China  1991 24.03406739
## 22438                                      China  1991 24.03406739
## 22440                                   Colombia  1991 17.42227530
## 22442                                   Colombia  1991 17.42227530
## 22443                                   Colombia  1991 17.42227530
## 22444                                   Colombia  1991 17.42227530
## 22445                                   Colombia  1991 17.42227530
## 22447                                   Colombia  1991 17.42227530
## 22448                                   Colombia  1991 17.42227530
## 22449                                   Colombia  1991 17.42227530
## 22450                                   Colombia  1991 17.42227530
## 22451                                   Colombia  1991 17.42227530
## 22452                                   Colombia  1991 17.42227530
## 22453                                   Colombia  1991 17.42227530
## 22460                                   Colombia  1991 17.42227530
## 22461                                   Colombia  1991 17.42227530
## 22462                                   Colombia  1991 17.42227530
## 22464                                   Colombia  1991 17.42227530
## 22465                                   Colombia  1991 17.42227530
## 22498                                   Colombia  1991 17.42227530
## 22500                                   Colombia  1991 17.42227530
## 22503                                   Colombia  1991 17.42227530
## 22506                                   Colombia  1991 17.42227530
## 22507                                   Colombia  1991 17.42227530
## 22508                                   Colombia  1991 17.42227530
## 22509                                   Colombia  1991 17.42227530
## 22510                                   Colombia  1991 17.42227530
## 22511                                   Colombia  1991 17.42227530
## 22512                                   Colombia  1991 17.42227530
## 22514                                   Colombia  1991 17.42227530
## 22515                                   Colombia  1991 17.42227530
## 22516                                   Colombia  1991 17.42227530
## 22517                                   Colombia  1991 17.42227530
## 22530                                   Colombia  1991 17.42227530
## 22531                                   Colombia  1991 17.42227530
## 22563                                   Colombia  1991 17.42227530
## 22576                                   Colombia  1991 17.42227530
## 22577                                   Colombia  1991 17.42227530
## 22578                                   Colombia  1991 17.42227530
## 22579                                   Colombia  1991 17.42227530
## 22580                                   Colombia  1991 17.42227530
## 22582                                   Colombia  1991 17.42227530
## 22583                                   Colombia  1991 17.42227530
## 22584                                   Colombia  1991 17.42227530
## 22589                                   Colombia  1991 17.42227530
## 22590                                   Colombia  1991 17.42227530
## 22591                                   Colombia  1991 17.42227530
## 22594                                      Congo  1991 11.31780929
## 22596                                      Congo  1991 11.31780929
## 22597                                      Congo  1991 11.31780929
## 22598                                      Congo  1991 11.31780929
## 22599                                      Congo  1991 11.31780929
## 22601                                      Congo  1991 11.31780929
## 22602                                      Congo  1991 11.31780929
## 22603                                      Congo  1991 11.31780929
## 22604                                      Congo  1991 11.31780929
## 22605                                      Congo  1991 11.31780929
## 22606                                      Congo  1991 11.31780929
## 22607                                      Congo  1991 11.31780929
## 22614                                      Congo  1991 11.31780929
## 22615                                      Congo  1991 11.31780929
## 22616                                      Congo  1991 11.31780929
## 22618                                      Congo  1991 11.31780929
## 22619                                      Congo  1991 11.31780929
## 22646                                      Congo  1991 11.31780929
## 22648                                      Congo  1991 11.31780929
## 22651                                      Congo  1991 11.31780929
## 22654                                      Congo  1991 11.31780929
## 22655                                      Congo  1991 11.31780929
## 22656                                      Congo  1991 11.31780929
## 22657                                      Congo  1991 11.31780929
## 22658                                      Congo  1991 11.31780929
## 22659                                      Congo  1991 11.31780929
## 22660                                      Congo  1991 11.31780929
## 22662                                      Congo  1991 11.31780929
## 22663                                      Congo  1991 11.31780929
## 22664                                      Congo  1991 11.31780929
## 22665                                      Congo  1991 11.31780929
## 22678                                      Congo  1991 11.31780929
## 22679                                      Congo  1991 11.31780929
## 22710                                      Congo  1991 11.31780929
## 22722                                      Congo  1991 11.31780929
## 22723                                      Congo  1991 11.31780929
## 22724                                      Congo  1991 11.31780929
## 22725                                      Congo  1991 11.31780929
## 22726                                      Congo  1991 11.31780929
## 22728                                      Congo  1991 11.31780929
## 22729                                      Congo  1991 11.31780929
## 22730                                      Congo  1991 11.31780929
## 22735                                      Congo  1991 11.31780929
## 22736                                      Congo  1991 11.31780929
## 22737                                      Congo  1991 11.31780929
## 22740                                 Costa Rica  1991 13.02099579
## 22742                                 Costa Rica  1991 13.02099579
## 22743                                 Costa Rica  1991 13.02099579
## 22744                                 Costa Rica  1991 13.02099579
## 22745                                 Costa Rica  1991 13.02099579
## 22747                                 Costa Rica  1991 13.02099579
## 22748                                 Costa Rica  1991 13.02099579
## 22749                                 Costa Rica  1991 13.02099579
## 22750                                 Costa Rica  1991 13.02099579
## 22751                                 Costa Rica  1991 13.02099579
## 22760                                 Costa Rica  1991 13.02099579
## 22761                                 Costa Rica  1991 13.02099579
## 22762                                 Costa Rica  1991 13.02099579
## 22764                                 Costa Rica  1991 13.02099579
## 22765                                 Costa Rica  1991 13.02099579
## 22788                                 Costa Rica  1991 13.02099579
## 22789                                 Costa Rica  1991 13.02099579
## 22799                                 Costa Rica  1991 13.02099579
## 22801                                 Costa Rica  1991 13.02099579
## 22804                                 Costa Rica  1991 13.02099579
## 22807                                 Costa Rica  1991 13.02099579
## 22808                                 Costa Rica  1991 13.02099579
## 22809                                 Costa Rica  1991 13.02099579
## 22810                                 Costa Rica  1991 13.02099579
## 22811                                 Costa Rica  1991 13.02099579
## 22812                                 Costa Rica  1991 13.02099579
## 22813                                 Costa Rica  1991 13.02099579
## 22815                                 Costa Rica  1991 13.02099579
## 22816                                 Costa Rica  1991 13.02099579
## 22817                                 Costa Rica  1991 13.02099579
## 22818                                 Costa Rica  1991 13.02099579
## 22831                                 Costa Rica  1991 13.02099579
## 22832                                 Costa Rica  1991 13.02099579
## 22851                                 Costa Rica  1991 13.02099579
## 22863                                 Costa Rica  1991 13.02099579
## 22864                                 Costa Rica  1991 13.02099579
## 22865                                 Costa Rica  1991 13.02099579
## 22866                                 Costa Rica  1991 13.02099579
## 22867                                 Costa Rica  1991 13.02099579
## 22869                                 Costa Rica  1991 13.02099579
## 22870                                 Costa Rica  1991 13.02099579
## 22871                                 Costa Rica  1991 13.02099579
## 22876                                 Costa Rica  1991 13.02099579
## 22877                                 Costa Rica  1991 13.02099579
## 22878                                 Costa Rica  1991 13.02099579
## 22881                                       Cuba  1991 13.30896194
## 22883                                       Cuba  1991 13.30896194
## 22884                                       Cuba  1991 13.30896194
## 22885                                       Cuba  1991 13.30896194
## 22886                                       Cuba  1991 13.30896194
## 22888                                       Cuba  1991 13.30896194
## 22889                                       Cuba  1991 13.30896194
## 22890                                       Cuba  1991 13.30896194
## 22891                                       Cuba  1991 13.30896194
## 22892                                       Cuba  1991 13.30896194
## 22893                                       Cuba  1991 13.30896194
## 22894                                       Cuba  1991 13.30896194
## 22901                                       Cuba  1991 13.30896194
## 22902                                       Cuba  1991 13.30896194
## 22903                                       Cuba  1991 13.30896194
## 22905                                       Cuba  1991 13.30896194
## 22906                                       Cuba  1991 13.30896194
## 22933                                       Cuba  1991 13.30896194
## 22935                                       Cuba  1991 13.30896194
## 22937                                       Cuba  1991 13.30896194
## 22938                                       Cuba  1991 13.30896194
## 22939                                       Cuba  1991 13.30896194
## 22940                                       Cuba  1991 13.30896194
## 22941                                       Cuba  1991 13.30896194
## 22942                                       Cuba  1991 13.30896194
## 22943                                       Cuba  1991 13.30896194
## 22944                                       Cuba  1991 13.30896194
## 22945                                       Cuba  1991 13.30896194
## 22946                                       Cuba  1991 13.30896194
## 22947                                       Cuba  1991 13.30896194
## 22948                                       Cuba  1991 13.30896194
## 22958                                       Cuba  1991 13.30896194
## 22959                                       Cuba  1991 13.30896194
## 22970                                       Cuba  1991 13.30896194
## 22979                                       Cuba  1991 13.30896194
## 22980                                       Cuba  1991 13.30896194
## 22981                                       Cuba  1991 13.30896194
## 22982                                       Cuba  1991 13.30896194
## 22983                                       Cuba  1991 13.30896194
## 22987                                       Cuba  1991 13.30896194
## 22988                                       Cuba  1991 13.30896194
## 22989                                       Cuba  1991 13.30896194
## 22991                                     Cyprus  1991  6.19134856
## 22993                                     Cyprus  1991  6.19134856
## 22994                                     Cyprus  1991  6.19134856
## 22995                                     Cyprus  1991  6.19134856
## 22996                                     Cyprus  1991  6.19134856
## 22998                                     Cyprus  1991  6.19134856
## 22999                                     Cyprus  1991  6.19134856
## 23000                                     Cyprus  1991  6.19134856
## 23001                                     Cyprus  1991  6.19134856
## 23002                                     Cyprus  1991  6.19134856
## 23003                                     Cyprus  1991  6.19134856
## 23004                                     Cyprus  1991  6.19134856
## 23011                                     Cyprus  1991  6.19134856
## 23012                                     Cyprus  1991  6.19134856
## 23013                                     Cyprus  1991  6.19134856
## 23015                                     Cyprus  1991  6.19134856
## 23016                                     Cyprus  1991  6.19134856
## 23047                                     Cyprus  1991  6.19134856
## 23049                                     Cyprus  1991  6.19134856
## 23053                                     Cyprus  1991  6.19134856
## 23055                                     Cyprus  1991  6.19134856
## 23056                                     Cyprus  1991  6.19134856
## 23057                                     Cyprus  1991  6.19134856
## 23058                                     Cyprus  1991  6.19134856
## 23059                                     Cyprus  1991  6.19134856
## 23060                                     Cyprus  1991  6.19134856
## 23061                                     Cyprus  1991  6.19134856
## 23062                                     Cyprus  1991  6.19134856
## 23063                                     Cyprus  1991  6.19134856
## 23064                                     Cyprus  1991  6.19134856
## 23077                                     Cyprus  1991  6.19134856
## 23078                                     Cyprus  1991  6.19134856
## 23108                                     Cyprus  1991  6.19134856
## 23109                                     Cyprus  1991  6.19134856
## 23110                                     Cyprus  1991  6.19134856
## 23111                                     Cyprus  1991  6.19134856
## 23112                                     Cyprus  1991  6.19134856
## 23113                                     Cyprus  1991  6.19134856
## 23114                                     Cyprus  1991  6.19134856
## 23115                                     Cyprus  1991  6.19134856
## 23120                                     Cyprus  1991  6.19134856
## 23121                                     Cyprus  1991  6.19134856
## 23122                                     Cyprus  1991  6.19134856
## 23126                                    Denmark  1991  3.48314070
## 23128                                    Denmark  1991  3.48314070
## 23129                                    Denmark  1991  3.48314070
## 23130                                    Denmark  1991  3.48314070
## 23131                                    Denmark  1991  3.48314070
## 23133                                    Denmark  1991  3.48314070
## 23134                                    Denmark  1991  3.48314070
## 23135                                    Denmark  1991  3.48314070
## 23136                                    Denmark  1991  3.48314070
## 23137                                    Denmark  1991  3.48314070
## 23138                                    Denmark  1991  3.48314070
## 23139                                    Denmark  1991  3.48314070
## 23145                                    Denmark  1991  3.48314070
## 23146                                    Denmark  1991  3.48314070
## 23147                                    Denmark  1991  3.48314070
## 23149                                    Denmark  1991  3.48314070
## 23150                                    Denmark  1991  3.48314070
## 23180                                    Denmark  1991  3.48314070
## 23182                                    Denmark  1991  3.48314070
## 23186                                    Denmark  1991  3.48314070
## 23188                                    Denmark  1991  3.48314070
## 23189                                    Denmark  1991  3.48314070
## 23190                                    Denmark  1991  3.48314070
## 23191                                    Denmark  1991  3.48314070
## 23192                                    Denmark  1991  3.48314070
## 23193                                    Denmark  1991  3.48314070
## 23194                                    Denmark  1991  3.48314070
## 23195                                    Denmark  1991  3.48314070
## 23196                                    Denmark  1991  3.48314070
## 23197                                    Denmark  1991  3.48314070
## 23210                                    Denmark  1991  3.48314070
## 23211                                    Denmark  1991  3.48314070
## 23241                                    Denmark  1991  3.48314070
## 23242                                    Denmark  1991  3.48314070
## 23243                                    Denmark  1991  3.48314070
## 23245                                    Denmark  1991  3.48314070
## 23246                                    Denmark  1991  3.48314070
## 23247                                    Denmark  1991  3.48314070
## 23252                                    Denmark  1991  3.48314070
## 23253                                    Denmark  1991  3.48314070
## 23254                                    Denmark  1991  3.48314070
## 23259                                   Djibouti  1991  3.18270459
## 23260                                   Djibouti  1991  3.18270459
## 23261                                   Djibouti  1991  3.18270459
## 23262                                   Djibouti  1991  3.18270459
## 23264                                   Djibouti  1991  3.18270459
## 23265                                   Djibouti  1991  3.18270459
## 23266                                   Djibouti  1991  3.18270459
## 23268                                   Djibouti  1991  3.18270459
## 23269                                   Djibouti  1991  3.18270459
## 23270                                   Djibouti  1991  3.18270459
## 23300                                   Djibouti  1991  3.18270459
## 23302                                   Djibouti  1991  3.18270459
## 23304                                   Djibouti  1991  3.18270459
## 23307                                   Djibouti  1991  3.18270459
## 23308                                   Djibouti  1991  3.18270459
## 23309                                   Djibouti  1991  3.18270459
## 23310                                   Djibouti  1991  3.18270459
## 23311                                   Djibouti  1991  3.18270459
## 23312                                   Djibouti  1991  3.18270459
## 23313                                   Djibouti  1991  3.18270459
## 23315                                   Djibouti  1991  3.18270459
## 23316                                   Djibouti  1991  3.18270459
## 23317                                   Djibouti  1991  3.18270459
## 23318                                   Djibouti  1991  3.18270459
## 23331                                   Djibouti  1991  3.18270459
## 23332                                   Djibouti  1991  3.18270459
## 23374                                   Djibouti  1991  3.18270459
## 23376                                   Djibouti  1991  3.18270459
## 23377                                   Djibouti  1991  3.18270459
## 23378                                   Djibouti  1991  3.18270459
## 23379                                   Djibouti  1991  3.18270459
## 23384                                   Djibouti  1991  3.18270459
## 23385                                   Djibouti  1991  3.18270459
## 23386                                   Djibouti  1991  3.18270459
## 23389                                   Dominica  1991 23.78976826
## 23390                                   Dominica  1991 23.78976826
## 23392                                   Dominica  1991 23.78976826
## 23419                                   Dominica  1991 23.78976826
## 23420                                   Dominica  1991 23.78976826
## 23421                                   Dominica  1991 23.78976826
## 23422                                   Dominica  1991 23.78976826
## 23424                                   Dominica  1991 23.78976826
## 23426                                   Dominica  1991 23.78976826
## 23435                                   Dominica  1991 23.78976826
## 23436                                   Dominica  1991 23.78976826
## 23445                                   Dominica  1991 23.78976826
## 23446                                   Dominica  1991 23.78976826
## 23447                                   Dominica  1991 23.78976826
## 23448                                   Dominica  1991 23.78976826
## 23449                                   Dominica  1991 23.78976826
## 23452                         Dominican Republic  1991 13.34079994
## 23454                         Dominican Republic  1991 13.34079994
## 23455                         Dominican Republic  1991 13.34079994
## 23456                         Dominican Republic  1991 13.34079994
## 23457                         Dominican Republic  1991 13.34079994
## 23459                         Dominican Republic  1991 13.34079994
## 23460                         Dominican Republic  1991 13.34079994
## 23461                         Dominican Republic  1991 13.34079994
## 23462                         Dominican Republic  1991 13.34079994
## 23463                         Dominican Republic  1991 13.34079994
## 23472                         Dominican Republic  1991 13.34079994
## 23473                         Dominican Republic  1991 13.34079994
## 23474                         Dominican Republic  1991 13.34079994
## 23476                         Dominican Republic  1991 13.34079994
## 23477                         Dominican Republic  1991 13.34079994
## 23511                         Dominican Republic  1991 13.34079994
## 23513                         Dominican Republic  1991 13.34079994
## 23517                         Dominican Republic  1991 13.34079994
## 23520                         Dominican Republic  1991 13.34079994
## 23521                         Dominican Republic  1991 13.34079994
## 23522                         Dominican Republic  1991 13.34079994
## 23523                         Dominican Republic  1991 13.34079994
## 23524                         Dominican Republic  1991 13.34079994
## 23525                         Dominican Republic  1991 13.34079994
## 23526                         Dominican Republic  1991 13.34079994
## 23528                         Dominican Republic  1991 13.34079994
## 23529                         Dominican Republic  1991 13.34079994
## 23530                         Dominican Republic  1991 13.34079994
## 23531                         Dominican Republic  1991 13.34079994
## 23544                         Dominican Republic  1991 13.34079994
## 23545                         Dominican Republic  1991 13.34079994
## 23576                         Dominican Republic  1991 13.34079994
## 23588                         Dominican Republic  1991 13.34079994
## 23589                         Dominican Republic  1991 13.34079994
## 23590                         Dominican Republic  1991 13.34079994
## 23591                         Dominican Republic  1991 13.34079994
## 23592                         Dominican Republic  1991 13.34079994
## 23594                         Dominican Republic  1991 13.34079994
## 23595                         Dominican Republic  1991 13.34079994
## 23596                         Dominican Republic  1991 13.34079994
## 23601                         Dominican Republic  1991 13.34079994
## 23602                         Dominican Republic  1991 13.34079994
## 23603                         Dominican Republic  1991 13.34079994
## 23606                                    Ecuador  1991 21.73425750
## 23608                                    Ecuador  1991 21.73425750
## 23609                                    Ecuador  1991 21.73425750
## 23610                                    Ecuador  1991 21.73425750
## 23611                                    Ecuador  1991 21.73425750
## 23613                                    Ecuador  1991 21.73425750
## 23614                                    Ecuador  1991 21.73425750
## 23615                                    Ecuador  1991 21.73425750
## 23616                                    Ecuador  1991 21.73425750
## 23617                                    Ecuador  1991 21.73425750
## 23626                                    Ecuador  1991 21.73425750
## 23627                                    Ecuador  1991 21.73425750
## 23628                                    Ecuador  1991 21.73425750
## 23630                                    Ecuador  1991 21.73425750
## 23631                                    Ecuador  1991 21.73425750
## 23662                                    Ecuador  1991 21.73425750
## 23664                                    Ecuador  1991 21.73425750
## 23668                                    Ecuador  1991 21.73425750
## 23671                                    Ecuador  1991 21.73425750
## 23672                                    Ecuador  1991 21.73425750
## 23673                                    Ecuador  1991 21.73425750
## 23674                                    Ecuador  1991 21.73425750
## 23675                                    Ecuador  1991 21.73425750
## 23676                                    Ecuador  1991 21.73425750
## 23677                                    Ecuador  1991 21.73425750
## 23679                                    Ecuador  1991 21.73425750
## 23680                                    Ecuador  1991 21.73425750
## 23681                                    Ecuador  1991 21.73425750
## 23682                                    Ecuador  1991 21.73425750
## 23695                                    Ecuador  1991 21.73425750
## 23696                                    Ecuador  1991 21.73425750
## 23728                                    Ecuador  1991 21.73425750
## 23741                                    Ecuador  1991 21.73425750
## 23742                                    Ecuador  1991 21.73425750
## 23743                                    Ecuador  1991 21.73425750
## 23745                                    Ecuador  1991 21.73425750
## 23746                                    Ecuador  1991 21.73425750
## 23747                                    Ecuador  1991 21.73425750
## 23748                                    Ecuador  1991 21.73425750
## 23753                                    Ecuador  1991 21.73425750
## 23754                                    Ecuador  1991 21.73425750
## 23755                                    Ecuador  1991 21.73425750
## 23758                                      Egypt  1991 17.57403006
## 23760                                      Egypt  1991 17.57403006
## 23761                                      Egypt  1991 17.57403006
## 23762                                      Egypt  1991 17.57403006
## 23763                                      Egypt  1991 17.57403006
## 23765                                      Egypt  1991 17.57403006
## 23766                                      Egypt  1991 17.57403006
## 23767                                      Egypt  1991 17.57403006
## 23768                                      Egypt  1991 17.57403006
## 23769                                      Egypt  1991 17.57403006
## 23770                                      Egypt  1991 17.57403006
## 23771                                      Egypt  1991 17.57403006
## 23778                                      Egypt  1991 17.57403006
## 23779                                      Egypt  1991 17.57403006
## 23780                                      Egypt  1991 17.57403006
## 23782                                      Egypt  1991 17.57403006
## 23783                                      Egypt  1991 17.57403006
## 23813                                      Egypt  1991 17.57403006
## 23815                                      Egypt  1991 17.57403006
## 23819                                      Egypt  1991 17.57403006
## 23822                                      Egypt  1991 17.57403006
## 23823                                      Egypt  1991 17.57403006
## 23824                                      Egypt  1991 17.57403006
## 23825                                      Egypt  1991 17.57403006
## 23826                                      Egypt  1991 17.57403006
## 23827                                      Egypt  1991 17.57403006
## 23828                                      Egypt  1991 17.57403006
## 23829                                      Egypt  1991 17.57403006
## 23830                                      Egypt  1991 17.57403006
## 23831                                      Egypt  1991 17.57403006
## 23832                                      Egypt  1991 17.57403006
## 23845                                      Egypt  1991 17.57403006
## 23846                                      Egypt  1991 17.57403006
## 23878                                      Egypt  1991 17.57403006
## 23891                                      Egypt  1991 17.57403006
## 23892                                      Egypt  1991 17.57403006
## 23893                                      Egypt  1991 17.57403006
## 23894                                      Egypt  1991 17.57403006
## 23895                                      Egypt  1991 17.57403006
## 23897                                      Egypt  1991 17.57403006
## 23898                                      Egypt  1991 17.57403006
## 23899                                      Egypt  1991 17.57403006
## 23904                                      Egypt  1991 17.57403006
## 23905                                      Egypt  1991 17.57403006
## 23906                                      Egypt  1991 17.57403006
## 23909                                El Salvador  1991 17.52090639
## 23911                                El Salvador  1991 17.52090639
## 23912                                El Salvador  1991 17.52090639
## 23913                                El Salvador  1991 17.52090639
## 23914                                El Salvador  1991 17.52090639
## 23916                                El Salvador  1991 17.52090639
## 23917                                El Salvador  1991 17.52090639
## 23918                                El Salvador  1991 17.52090639
## 23919                                El Salvador  1991 17.52090639
## 23920                                El Salvador  1991 17.52090639
## 23929                                El Salvador  1991 17.52090639
## 23930                                El Salvador  1991 17.52090639
## 23931                                El Salvador  1991 17.52090639
## 23933                                El Salvador  1991 17.52090639
## 23934                                El Salvador  1991 17.52090639
## 23965                                El Salvador  1991 17.52090639
## 23967                                El Salvador  1991 17.52090639
## 23971                                El Salvador  1991 17.52090639
## 23974                                El Salvador  1991 17.52090639
## 23975                                El Salvador  1991 17.52090639
## 23976                                El Salvador  1991 17.52090639
## 23977                                El Salvador  1991 17.52090639
## 23978                                El Salvador  1991 17.52090639
## 23979                                El Salvador  1991 17.52090639
## 23980                                El Salvador  1991 17.52090639
## 23982                                El Salvador  1991 17.52090639
## 23983                                El Salvador  1991 17.52090639
## 23984                                El Salvador  1991 17.52090639
## 23985                                El Salvador  1991 17.52090639
## 23998                                El Salvador  1991 17.52090639
## 23999                                El Salvador  1991 17.52090639
## 24031                                El Salvador  1991 17.52090639
## 24044                                El Salvador  1991 17.52090639
## 24045                                El Salvador  1991 17.52090639
## 24046                                El Salvador  1991 17.52090639
## 24048                                El Salvador  1991 17.52090639
## 24050                                El Salvador  1991 17.52090639
## 24051                                El Salvador  1991 17.52090639
## 24052                                El Salvador  1991 17.52090639
## 24057                                El Salvador  1991 17.52090639
## 24058                                El Salvador  1991 17.52090639
## 24059                                El Salvador  1991 17.52090639
## 24065                                   Ethiopia  1991 61.35629685
## 24066                                   Ethiopia  1991 61.35629685
## 24067                                   Ethiopia  1991 61.35629685
## 24068                                   Ethiopia  1991 61.35629685
## 24070                                   Ethiopia  1991 61.35629685
## 24071                                   Ethiopia  1991 61.35629685
## 24072                                   Ethiopia  1991 61.35629685
## 24074                                   Ethiopia  1991 61.35629685
## 24075                                   Ethiopia  1991 61.35629685
## 24076                                   Ethiopia  1991 61.35629685
## 24119                                   Ethiopia  1991 61.35629685
## 24121                                   Ethiopia  1991 61.35629685
## 24125                                   Ethiopia  1991 61.35629685
## 24128                                   Ethiopia  1991 61.35629685
## 24129                                   Ethiopia  1991 61.35629685
## 24130                                   Ethiopia  1991 61.35629685
## 24131                                   Ethiopia  1991 61.35629685
## 24132                                   Ethiopia  1991 61.35629685
## 24133                                   Ethiopia  1991 61.35629685
## 24134                                   Ethiopia  1991 61.35629685
## 24136                                   Ethiopia  1991 61.35629685
## 24137                                   Ethiopia  1991 61.35629685
## 24138                                   Ethiopia  1991 61.35629685
## 24139                                   Ethiopia  1991 61.35629685
## 24152                                   Ethiopia  1991 61.35629685
## 24153                                   Ethiopia  1991 61.35629685
## 24183                                   Ethiopia  1991 61.35629685
## 24198                                   Ethiopia  1991 61.35629685
## 24199                                   Ethiopia  1991 61.35629685
## 24200                                   Ethiopia  1991 61.35629685
## 24202                                   Ethiopia  1991 61.35629685
## 24203                                   Ethiopia  1991 61.35629685
## 24204                                   Ethiopia  1991 61.35629685
## 24209                                   Ethiopia  1991 61.35629685
## 24210                                   Ethiopia  1991 61.35629685
## 24211                                   Ethiopia  1991 61.35629685
## 24214                                       Fiji  1991 20.65041267
## 24216                                       Fiji  1991 20.65041267
## 24217                                       Fiji  1991 20.65041267
## 24218                                       Fiji  1991 20.65041267
## 24219                                       Fiji  1991 20.65041267
## 24221                                       Fiji  1991 20.65041267
## 24222                                       Fiji  1991 20.65041267
## 24223                                       Fiji  1991 20.65041267
## 24224                                       Fiji  1991 20.65041267
## 24225                                       Fiji  1991 20.65041267
## 24233                                       Fiji  1991 20.65041267
## 24234                                       Fiji  1991 20.65041267
## 24235                                       Fiji  1991 20.65041267
## 24237                                       Fiji  1991 20.65041267
## 24238                                       Fiji  1991 20.65041267
## 24265                                       Fiji  1991 20.65041267
## 24267                                       Fiji  1991 20.65041267
## 24270                                       Fiji  1991 20.65041267
## 24272                                       Fiji  1991 20.65041267
## 24273                                       Fiji  1991 20.65041267
## 24274                                       Fiji  1991 20.65041267
## 24275                                       Fiji  1991 20.65041267
## 24276                                       Fiji  1991 20.65041267
## 24277                                       Fiji  1991 20.65041267
## 24278                                       Fiji  1991 20.65041267
## 24279                                       Fiji  1991 20.65041267
## 24280                                       Fiji  1991 20.65041267
## 24281                                       Fiji  1991 20.65041267
## 24282                                       Fiji  1991 20.65041267
## 24294                                       Fiji  1991 20.65041267
## 24295                                       Fiji  1991 20.65041267
## 24313                                       Fiji  1991 20.65041267
## 24324                                       Fiji  1991 20.65041267
## 24325                                       Fiji  1991 20.65041267
## 24326                                       Fiji  1991 20.65041267
## 24327                                       Fiji  1991 20.65041267
## 24328                                       Fiji  1991 20.65041267
## 24329                                       Fiji  1991 20.65041267
## 24330                                       Fiji  1991 20.65041267
## 24331                                       Fiji  1991 20.65041267
## 24336                                       Fiji  1991 20.65041267
## 24337                                       Fiji  1991 20.65041267
## 24338                                       Fiji  1991 20.65041267
## 24341                                    Finland  1991  5.54197121
## 24343                                    Finland  1991  5.54197121
## 24344                                    Finland  1991  5.54197121
## 24345                                    Finland  1991  5.54197121
## 24346                                    Finland  1991  5.54197121
## 24348                                    Finland  1991  5.54197121
## 24349                                    Finland  1991  5.54197121
## 24350                                    Finland  1991  5.54197121
## 24351                                    Finland  1991  5.54197121
## 24352                                    Finland  1991  5.54197121
## 24353                                    Finland  1991  5.54197121
## 24354                                    Finland  1991  5.54197121
## 24360                                    Finland  1991  5.54197121
## 24361                                    Finland  1991  5.54197121
## 24362                                    Finland  1991  5.54197121
## 24364                                    Finland  1991  5.54197121
## 24365                                    Finland  1991  5.54197121
## 24396                                    Finland  1991  5.54197121
## 24398                                    Finland  1991  5.54197121
## 24402                                    Finland  1991  5.54197121
## 24404                                    Finland  1991  5.54197121
## 24405                                    Finland  1991  5.54197121
## 24406                                    Finland  1991  5.54197121
## 24407                                    Finland  1991  5.54197121
## 24408                                    Finland  1991  5.54197121
## 24409                                    Finland  1991  5.54197121
## 24410                                    Finland  1991  5.54197121
## 24411                                    Finland  1991  5.54197121
## 24412                                    Finland  1991  5.54197121
## 24413                                    Finland  1991  5.54197121
## 24426                                    Finland  1991  5.54197121
## 24427                                    Finland  1991  5.54197121
## 24457                                    Finland  1991  5.54197121
## 24458                                    Finland  1991  5.54197121
## 24459                                    Finland  1991  5.54197121
## 24460                                    Finland  1991  5.54197121
## 24461                                    Finland  1991  5.54197121
## 24462                                    Finland  1991  5.54197121
## 24463                                    Finland  1991  5.54197121
## 24468                                    Finland  1991  5.54197121
## 24469                                    Finland  1991  5.54197121
## 24470                                    Finland  1991  5.54197121
## 24473                                     France  1991  2.91848979
## 24475                                     France  1991  2.91848979
## 24476                                     France  1991  2.91848979
## 24477                                     France  1991  2.91848979
## 24478                                     France  1991  2.91848979
## 24480                                     France  1991  2.91848979
## 24481                                     France  1991  2.91848979
## 24482                                     France  1991  2.91848979
## 24483                                     France  1991  2.91848979
## 24484                                     France  1991  2.91848979
## 24485                                     France  1991  2.91848979
## 24486                                     France  1991  2.91848979
## 24492                                     France  1991  2.91848979
## 24493                                     France  1991  2.91848979
## 24494                                     France  1991  2.91848979
## 24496                                     France  1991  2.91848979
## 24497                                     France  1991  2.91848979
## 24527                                     France  1991  2.91848979
## 24529                                     France  1991  2.91848979
## 24534                                     France  1991  2.91848979
## 24536                                     France  1991  2.91848979
## 24537                                     France  1991  2.91848979
## 24538                                     France  1991  2.91848979
## 24539                                     France  1991  2.91848979
## 24540                                     France  1991  2.91848979
## 24541                                     France  1991  2.91848979
## 24542                                     France  1991  2.91848979
## 24543                                     France  1991  2.91848979
## 24544                                     France  1991  2.91848979
## 24545                                     France  1991  2.91848979
## 24546                                     France  1991  2.91848979
## 24559                                     France  1991  2.91848979
## 24560                                     France  1991  2.91848979
## 24590                                     France  1991  2.91848979
## 24591                                     France  1991  2.91848979
## 24592                                     France  1991  2.91848979
## 24593                                     France  1991  2.91848979
## 24594                                     France  1991  2.91848979
## 24595                                     France  1991  2.91848979
## 24596                                     France  1991  2.91848979
## 24601                                     France  1991  2.91848979
## 24602                                     France  1991  2.91848979
## 24603                                     France  1991  2.91848979
## 24608                                    Georgia  1991 28.65168539
## 24609                                    Georgia  1991 28.65168539
## 24610                                    Georgia  1991 28.65168539
## 24611                                    Georgia  1991 28.65168539
## 24613                                    Georgia  1991 28.65168539
## 24614                                    Georgia  1991 28.65168539
## 24615                                    Georgia  1991 28.65168539
## 24617                                    Georgia  1991 28.65168539
## 24618                                    Georgia  1991 28.65168539
## 24619                                    Georgia  1991 28.65168539
## 24630                                    Georgia  1991 28.65168539
## 24631                                    Georgia  1991 28.65168539
## 24664                                    Georgia  1991 28.65168539
## 24666                                    Georgia  1991 28.65168539
## 24671                                    Georgia  1991 28.65168539
## 24674                                    Georgia  1991 28.65168539
## 24677                                    Georgia  1991 28.65168539
## 24678                                    Georgia  1991 28.65168539
## 24679                                    Georgia  1991 28.65168539
## 24680                                    Georgia  1991 28.65168539
## 24682                                    Georgia  1991 28.65168539
## 24683                                    Georgia  1991 28.65168539
## 24684                                    Georgia  1991 28.65168539
## 24685                                    Georgia  1991 28.65168539
## 24698                                    Georgia  1991 28.65168539
## 24699                                    Georgia  1991 28.65168539
## 24718                                    Georgia  1991 28.65168539
## 24731                                    Georgia  1991 28.65168539
## 24737                                    Georgia  1991 28.65168539
## 24738                                    Georgia  1991 28.65168539
## 24739                                    Georgia  1991 28.65168539
## 24744                                    Georgia  1991 28.65168539
## 24745                                    Georgia  1991 28.65168539
## 24746                                    Georgia  1991 28.65168539
## 24748                                    Germany  1991  1.16868069
## 24750                                    Germany  1991  1.16868069
## 24751                                    Germany  1991  1.16868069
## 24752                                    Germany  1991  1.16868069
## 24753                                    Germany  1991  1.16868069
## 24755                                    Germany  1991  1.16868069
## 24756                                    Germany  1991  1.16868069
## 24757                                    Germany  1991  1.16868069
## 24758                                    Germany  1991  1.16868069
## 24759                                    Germany  1991  1.16868069
## 24760                                    Germany  1991  1.16868069
## 24761                                    Germany  1991  1.16868069
## 24767                                    Germany  1991  1.16868069
## 24768                                    Germany  1991  1.16868069
## 24769                                    Germany  1991  1.16868069
## 24771                                    Germany  1991  1.16868069
## 24772                                    Germany  1991  1.16868069
## 24801                                    Germany  1991  1.16868069
## 24803                                    Germany  1991  1.16868069
## 24807                                    Germany  1991  1.16868069
## 24809                                    Germany  1991  1.16868069
## 24810                                    Germany  1991  1.16868069
## 24811                                    Germany  1991  1.16868069
## 24812                                    Germany  1991  1.16868069
## 24813                                    Germany  1991  1.16868069
## 24814                                    Germany  1991  1.16868069
## 24815                                    Germany  1991  1.16868069
## 24816                                    Germany  1991  1.16868069
## 24817                                    Germany  1991  1.16868069
## 24818                                    Germany  1991  1.16868069
## 24831                                    Germany  1991  1.16868069
## 24832                                    Germany  1991  1.16868069
## 24862                                    Germany  1991  1.16868069
## 24863                                    Germany  1991  1.16868069
## 24864                                    Germany  1991  1.16868069
## 24865                                    Germany  1991  1.16868069
## 24866                                    Germany  1991  1.16868069
## 24867                                    Germany  1991  1.16868069
## 24868                                    Germany  1991  1.16868069
## 24873                                    Germany  1991  1.16868069
## 24874                                    Germany  1991  1.16868069
## 24875                                    Germany  1991  1.16868069
## 24878                                      Ghana  1991 45.55955386
## 24880                                      Ghana  1991 45.55955386
## 24881                                      Ghana  1991 45.55955386
## 24882                                      Ghana  1991 45.55955386
## 24883                                      Ghana  1991 45.55955386
## 24885                                      Ghana  1991 45.55955386
## 24886                                      Ghana  1991 45.55955386
## 24887                                      Ghana  1991 45.55955386
## 24888                                      Ghana  1991 45.55955386
## 24889                                      Ghana  1991 45.55955386
## 24898                                      Ghana  1991 45.55955386
## 24899                                      Ghana  1991 45.55955386
## 24900                                      Ghana  1991 45.55955386
## 24902                                      Ghana  1991 45.55955386
## 24903                                      Ghana  1991 45.55955386
## 24933                                      Ghana  1991 45.55955386
## 24935                                      Ghana  1991 45.55955386
## 24940                                      Ghana  1991 45.55955386
## 24943                                      Ghana  1991 45.55955386
## 24944                                      Ghana  1991 45.55955386
## 24945                                      Ghana  1991 45.55955386
## 24946                                      Ghana  1991 45.55955386
## 24947                                      Ghana  1991 45.55955386
## 24948                                      Ghana  1991 45.55955386
## 24949                                      Ghana  1991 45.55955386
## 24951                                      Ghana  1991 45.55955386
## 24952                                      Ghana  1991 45.55955386
## 24953                                      Ghana  1991 45.55955386
## 24954                                      Ghana  1991 45.55955386
## 24967                                      Ghana  1991 45.55955386
## 24968                                      Ghana  1991 45.55955386
## 24999                                      Ghana  1991 45.55955386
## 25012                                      Ghana  1991 45.55955386
## 25013                                      Ghana  1991 45.55955386
## 25014                                      Ghana  1991 45.55955386
## 25015                                      Ghana  1991 45.55955386
## 25016                                      Ghana  1991 45.55955386
## 25018                                      Ghana  1991 45.55955386
## 25019                                      Ghana  1991 45.55955386
## 25020                                      Ghana  1991 45.55955386
## 25025                                      Ghana  1991 45.55955386
## 25026                                      Ghana  1991 45.55955386
## 25027                                      Ghana  1991 45.55955386
## 25032                                    Grenada  1991 10.51686475
## 25033                                    Grenada  1991 10.51686475
## 25034                                    Grenada  1991 10.51686475
## 25035                                    Grenada  1991 10.51686475
## 25037                                    Grenada  1991 10.51686475
## 25038                                    Grenada  1991 10.51686475
## 25039                                    Grenada  1991 10.51686475
## 25041                                    Grenada  1991 10.51686475
## 25073                                    Grenada  1991 10.51686475
## 25074                                    Grenada  1991 10.51686475
## 25075                                    Grenada  1991 10.51686475
## 25076                                    Grenada  1991 10.51686475
## 25077                                    Grenada  1991 10.51686475
## 25078                                    Grenada  1991 10.51686475
## 25079                                    Grenada  1991 10.51686475
## 25080                                    Grenada  1991 10.51686475
## 25081                                    Grenada  1991 10.51686475
## 25082                                    Grenada  1991 10.51686475
## 25093                                    Grenada  1991 10.51686475
## 25094                                    Grenada  1991 10.51686475
## 25107                                    Grenada  1991 10.51686475
## 25108                                    Grenada  1991 10.51686475
## 25109                                    Grenada  1991 10.51686475
## 25110                                    Grenada  1991 10.51686475
## 25111                                    Grenada  1991 10.51686475
## 25114                                     Guinea  1991 18.84587373
## 25116                                     Guinea  1991 18.84587373
## 25117                                     Guinea  1991 18.84587373
## 25118                                     Guinea  1991 18.84587373
## 25119                                     Guinea  1991 18.84587373
## 25121                                     Guinea  1991 18.84587373
## 25122                                     Guinea  1991 18.84587373
## 25123                                     Guinea  1991 18.84587373
## 25124                                     Guinea  1991 18.84587373
## 25125                                     Guinea  1991 18.84587373
## 25126                                     Guinea  1991 18.84587373
## 25127                                     Guinea  1991 18.84587373
## 25134                                     Guinea  1991 18.84587373
## 25162                                     Guinea  1991 18.84587373
## 25164                                     Guinea  1991 18.84587373
## 25167                                     Guinea  1991 18.84587373
## 25170                                     Guinea  1991 18.84587373
## 25171                                     Guinea  1991 18.84587373
## 25172                                     Guinea  1991 18.84587373
## 25173                                     Guinea  1991 18.84587373
## 25174                                     Guinea  1991 18.84587373
## 25175                                     Guinea  1991 18.84587373
## 25176                                     Guinea  1991 18.84587373
## 25178                                     Guinea  1991 18.84587373
## 25179                                     Guinea  1991 18.84587373
## 25180                                     Guinea  1991 18.84587373
## 25181                                     Guinea  1991 18.84587373
## 25194                                     Guinea  1991 18.84587373
## 25195                                     Guinea  1991 18.84587373
## 25226                                     Guinea  1991 18.84587373
## 25237                                     Guinea  1991 18.84587373
## 25238                                     Guinea  1991 18.84587373
## 25239                                     Guinea  1991 18.84587373
## 25241                                     Guinea  1991 18.84587373
## 25243                                     Guinea  1991 18.84587373
## 25244                                     Guinea  1991 18.84587373
## 25245                                     Guinea  1991 18.84587373
## 25250                                     Guinea  1991 18.84587373
## 25251                                     Guinea  1991 18.84587373
## 25252                                     Guinea  1991 18.84587373
## 25256                              Guinea-Bissau  1991 54.11244886
## 25257                              Guinea-Bissau  1991 54.11244886
## 25258                              Guinea-Bissau  1991 54.11244886
## 25259                              Guinea-Bissau  1991 54.11244886
## 25261                              Guinea-Bissau  1991 54.11244886
## 25262                              Guinea-Bissau  1991 54.11244886
## 25263                              Guinea-Bissau  1991 54.11244886
## 25265                              Guinea-Bissau  1991 54.11244886
## 25296                              Guinea-Bissau  1991 54.11244886
## 25298                              Guinea-Bissau  1991 54.11244886
## 25300                              Guinea-Bissau  1991 54.11244886
## 25303                              Guinea-Bissau  1991 54.11244886
## 25304                              Guinea-Bissau  1991 54.11244886
## 25305                              Guinea-Bissau  1991 54.11244886
## 25306                              Guinea-Bissau  1991 54.11244886
## 25307                              Guinea-Bissau  1991 54.11244886
## 25308                              Guinea-Bissau  1991 54.11244886
## 25309                              Guinea-Bissau  1991 54.11244886
## 25311                              Guinea-Bissau  1991 54.11244886
## 25312                              Guinea-Bissau  1991 54.11244886
## 25313                              Guinea-Bissau  1991 54.11244886
## 25314                              Guinea-Bissau  1991 54.11244886
## 25326                              Guinea-Bissau  1991 54.11244886
## 25327                              Guinea-Bissau  1991 54.11244886
## 25357                              Guinea-Bissau  1991 54.11244886
## 25368                              Guinea-Bissau  1991 54.11244886
## 25369                              Guinea-Bissau  1991 54.11244886
## 25370                              Guinea-Bissau  1991 54.11244886
## 25371                              Guinea-Bissau  1991 54.11244886
## 25372                              Guinea-Bissau  1991 54.11244886
## 25374                              Guinea-Bissau  1991 54.11244886
## 25375                              Guinea-Bissau  1991 54.11244886
## 25376                              Guinea-Bissau  1991 54.11244886
## 25381                              Guinea-Bissau  1991 54.11244886
## 25382                              Guinea-Bissau  1991 54.11244886
## 25383                              Guinea-Bissau  1991 54.11244886
## 25385                                     Guyana  1991 38.37665889
## 25387                                     Guyana  1991 38.37665889
## 25388                                     Guyana  1991 38.37665889
## 25389                                     Guyana  1991 38.37665889
## 25390                                     Guyana  1991 38.37665889
## 25392                                     Guyana  1991 38.37665889
## 25393                                     Guyana  1991 38.37665889
## 25394                                     Guyana  1991 38.37665889
## 25395                                     Guyana  1991 38.37665889
## 25396                                     Guyana  1991 38.37665889
## 25405                                     Guyana  1991 38.37665889
## 25406                                     Guyana  1991 38.37665889
## 25407                                     Guyana  1991 38.37665889
## 25409                                     Guyana  1991 38.37665889
## 25410                                     Guyana  1991 38.37665889
## 25441                                     Guyana  1991 38.37665889
## 25443                                     Guyana  1991 38.37665889
## 25445                                     Guyana  1991 38.37665889
## 25448                                     Guyana  1991 38.37665889
## 25449                                     Guyana  1991 38.37665889
## 25450                                     Guyana  1991 38.37665889
## 25451                                     Guyana  1991 38.37665889
## 25452                                     Guyana  1991 38.37665889
## 25453                                     Guyana  1991 38.37665889
## 25454                                     Guyana  1991 38.37665889
## 25456                                     Guyana  1991 38.37665889
## 25457                                     Guyana  1991 38.37665889
## 25458                                     Guyana  1991 38.37665889
## 25459                                     Guyana  1991 38.37665889
## 25472                                     Guyana  1991 38.37665889
## 25473                                     Guyana  1991 38.37665889
## 25499                                     Guyana  1991 38.37665889
## 25509                                     Guyana  1991 38.37665889
## 25510                                     Guyana  1991 38.37665889
## 25511                                     Guyana  1991 38.37665889
## 25515                                     Guyana  1991 38.37665889
## 25516                                     Guyana  1991 38.37665889
## 25517                                     Guyana  1991 38.37665889
## 25522                                     Guyana  1991 38.37665889
## 25523                                     Guyana  1991 38.37665889
## 25524                                     Guyana  1991 38.37665889
## 25527                                   Honduras  1991 22.74060751
## 25529                                   Honduras  1991 22.74060751
## 25530                                   Honduras  1991 22.74060751
## 25531                                   Honduras  1991 22.74060751
## 25532                                   Honduras  1991 22.74060751
## 25534                                   Honduras  1991 22.74060751
## 25535                                   Honduras  1991 22.74060751
## 25536                                   Honduras  1991 22.74060751
## 25537                                   Honduras  1991 22.74060751
## 25538                                   Honduras  1991 22.74060751
## 25539                                   Honduras  1991 22.74060751
## 25540                                   Honduras  1991 22.74060751
## 25547                                   Honduras  1991 22.74060751
## 25548                                   Honduras  1991 22.74060751
## 25549                                   Honduras  1991 22.74060751
## 25551                                   Honduras  1991 22.74060751
## 25552                                   Honduras  1991 22.74060751
## 25580                                   Honduras  1991 22.74060751
## 25582                                   Honduras  1991 22.74060751
## 25586                                   Honduras  1991 22.74060751
## 25589                                   Honduras  1991 22.74060751
## 25590                                   Honduras  1991 22.74060751
## 25591                                   Honduras  1991 22.74060751
## 25592                                   Honduras  1991 22.74060751
## 25593                                   Honduras  1991 22.74060751
## 25594                                   Honduras  1991 22.74060751
## 25595                                   Honduras  1991 22.74060751
## 25597                                   Honduras  1991 22.74060751
## 25598                                   Honduras  1991 22.74060751
## 25599                                   Honduras  1991 22.74060751
## 25600                                   Honduras  1991 22.74060751
## 25613                                   Honduras  1991 22.74060751
## 25614                                   Honduras  1991 22.74060751
## 25645                                   Honduras  1991 22.74060751
## 25658                                   Honduras  1991 22.74060751
## 25659                                   Honduras  1991 22.74060751
## 25660                                   Honduras  1991 22.74060751
## 25661                                   Honduras  1991 22.74060751
## 25662                                   Honduras  1991 22.74060751
## 25663                                   Honduras  1991 22.74060751
## 25664                                   Honduras  1991 22.74060751
## 25665                                   Honduras  1991 22.74060751
## 25670                                   Honduras  1991 22.74060751
## 25671                                   Honduras  1991 22.74060751
## 25672                                   Honduras  1991 22.74060751
## 25675                                      India  1991 30.47961223
## 25677                                      India  1991 30.47961223
## 25678                                      India  1991 30.47961223
## 25679                                      India  1991 30.47961223
## 25680                                      India  1991 30.47961223
## 25682                                      India  1991 30.47961223
## 25683                                      India  1991 30.47961223
## 25684                                      India  1991 30.47961223
## 25685                                      India  1991 30.47961223
## 25686                                      India  1991 30.47961223
## 25687                                      India  1991 30.47961223
## 25688                                      India  1991 30.47961223
## 25695                                      India  1991 30.47961223
## 25696                                      India  1991 30.47961223
## 25697                                      India  1991 30.47961223
## 25699                                      India  1991 30.47961223
## 25700                                      India  1991 30.47961223
## 25729                                      India  1991 30.47961223
## 25731                                      India  1991 30.47961223
## 25735                                      India  1991 30.47961223
## 25738                                      India  1991 30.47961223
## 25739                                      India  1991 30.47961223
## 25740                                      India  1991 30.47961223
## 25741                                      India  1991 30.47961223
## 25742                                      India  1991 30.47961223
## 25743                                      India  1991 30.47961223
## 25744                                      India  1991 30.47961223
## 25746                                      India  1991 30.47961223
## 25747                                      India  1991 30.47961223
## 25748                                      India  1991 30.47961223
## 25749                                      India  1991 30.47961223
## 25762                                      India  1991 30.47961223
## 25763                                      India  1991 30.47961223
## 25794                                      India  1991 30.47961223
## 25806                                      India  1991 30.47961223
## 25807                                      India  1991 30.47961223
## 25808                                      India  1991 30.47961223
## 25809                                      India  1991 30.47961223
## 25810                                      India  1991 30.47961223
## 25811                                      India  1991 30.47961223
## 25812                                      India  1991 30.47961223
## 25813                                      India  1991 30.47961223
## 25818                                      India  1991 30.47961223
## 25819                                      India  1991 30.47961223
## 25820                                      India  1991 30.47961223
## 25823                 Iran (Islamic Republic of)  1991 12.32198512
## 25825                 Iran (Islamic Republic of)  1991 12.32198512
## 25826                 Iran (Islamic Republic of)  1991 12.32198512
## 25827                 Iran (Islamic Republic of)  1991 12.32198512
## 25828                 Iran (Islamic Republic of)  1991 12.32198512
## 25830                 Iran (Islamic Republic of)  1991 12.32198512
## 25831                 Iran (Islamic Republic of)  1991 12.32198512
## 25832                 Iran (Islamic Republic of)  1991 12.32198512
## 25833                 Iran (Islamic Republic of)  1991 12.32198512
## 25834                 Iran (Islamic Republic of)  1991 12.32198512
## 25843                 Iran (Islamic Republic of)  1991 12.32198512
## 25844                 Iran (Islamic Republic of)  1991 12.32198512
## 25845                 Iran (Islamic Republic of)  1991 12.32198512
## 25847                 Iran (Islamic Republic of)  1991 12.32198512
## 25848                 Iran (Islamic Republic of)  1991 12.32198512
## 25878                 Iran (Islamic Republic of)  1991 12.32198512
## 25880                 Iran (Islamic Republic of)  1991 12.32198512
## 25883                 Iran (Islamic Republic of)  1991 12.32198512
## 25886                 Iran (Islamic Republic of)  1991 12.32198512
## 25887                 Iran (Islamic Republic of)  1991 12.32198512
## 25888                 Iran (Islamic Republic of)  1991 12.32198512
## 25889                 Iran (Islamic Republic of)  1991 12.32198512
## 25890                 Iran (Islamic Republic of)  1991 12.32198512
## 25891                 Iran (Islamic Republic of)  1991 12.32198512
## 25892                 Iran (Islamic Republic of)  1991 12.32198512
## 25894                 Iran (Islamic Republic of)  1991 12.32198512
## 25895                 Iran (Islamic Republic of)  1991 12.32198512
## 25896                 Iran (Islamic Republic of)  1991 12.32198512
## 25897                 Iran (Islamic Republic of)  1991 12.32198512
## 25910                 Iran (Islamic Republic of)  1991 12.32198512
## 25911                 Iran (Islamic Republic of)  1991 12.32198512
## 25930                 Iran (Islamic Republic of)  1991 12.32198512
## 25941                 Iran (Islamic Republic of)  1991 12.32198512
## 25946                 Iran (Islamic Republic of)  1991 12.32198512
## 25947                 Iran (Islamic Republic of)  1991 12.32198512
## 25948                 Iran (Islamic Republic of)  1991 12.32198512
## 25953                 Iran (Islamic Republic of)  1991 12.32198512
## 25954                 Iran (Islamic Republic of)  1991 12.32198512
## 25955                 Iran (Islamic Republic of)  1991 12.32198512
## 25958                                      Italy  1991  3.54797574
## 25960                                      Italy  1991  3.54797574
## 25961                                      Italy  1991  3.54797574
## 25962                                      Italy  1991  3.54797574
## 25963                                      Italy  1991  3.54797574
## 25965                                      Italy  1991  3.54797574
## 25966                                      Italy  1991  3.54797574
## 25967                                      Italy  1991  3.54797574
## 25968                                      Italy  1991  3.54797574
## 25969                                      Italy  1991  3.54797574
## 25970                                      Italy  1991  3.54797574
## 25971                                      Italy  1991  3.54797574
## 25978                                      Italy  1991  3.54797574
## 25979                                      Italy  1991  3.54797574
## 25980                                      Italy  1991  3.54797574
## 25982                                      Italy  1991  3.54797574
## 25983                                      Italy  1991  3.54797574
## 26013                                      Italy  1991  3.54797574
## 26015                                      Italy  1991  3.54797574
## 26019                                      Italy  1991  3.54797574
## 26021                                      Italy  1991  3.54797574
## 26022                                      Italy  1991  3.54797574
## 26023                                      Italy  1991  3.54797574
## 26024                                      Italy  1991  3.54797574
## 26025                                      Italy  1991  3.54797574
## 26026                                      Italy  1991  3.54797574
## 26027                                      Italy  1991  3.54797574
## 26028                                      Italy  1991  3.54797574
## 26029                                      Italy  1991  3.54797574
## 26030                                      Italy  1991  3.54797574
## 26031                                      Italy  1991  3.54797574
## 26044                                      Italy  1991  3.54797574
## 26045                                      Italy  1991  3.54797574
## 26075                                      Italy  1991  3.54797574
## 26076                                      Italy  1991  3.54797574
## 26077                                      Italy  1991  3.54797574
## 26078                                      Italy  1991  3.54797574
## 26079                                      Italy  1991  3.54797574
## 26080                                      Italy  1991  3.54797574
## 26081                                      Italy  1991  3.54797574
## 26086                                      Italy  1991  3.54797574
## 26087                                      Italy  1991  3.54797574
## 26088                                      Italy  1991  3.54797574
## 26091                                     Jordan  1991  8.14024159
## 26093                                     Jordan  1991  8.14024159
## 26094                                     Jordan  1991  8.14024159
## 26095                                     Jordan  1991  8.14024159
## 26096                                     Jordan  1991  8.14024159
## 26098                                     Jordan  1991  8.14024159
## 26099                                     Jordan  1991  8.14024159
## 26100                                     Jordan  1991  8.14024159
## 26101                                     Jordan  1991  8.14024159
## 26102                                     Jordan  1991  8.14024159
## 26103                                     Jordan  1991  8.14024159
## 26104                                     Jordan  1991  8.14024159
## 26111                                     Jordan  1991  8.14024159
## 26112                                     Jordan  1991  8.14024159
## 26113                                     Jordan  1991  8.14024159
## 26115                                     Jordan  1991  8.14024159
## 26116                                     Jordan  1991  8.14024159
## 26149                                     Jordan  1991  8.14024159
## 26151                                     Jordan  1991  8.14024159
## 26155                                     Jordan  1991  8.14024159
## 26158                                     Jordan  1991  8.14024159
## 26159                                     Jordan  1991  8.14024159
## 26160                                     Jordan  1991  8.14024159
## 26161                                     Jordan  1991  8.14024159
## 26162                                     Jordan  1991  8.14024159
## 26163                                     Jordan  1991  8.14024159
## 26164                                     Jordan  1991  8.14024159
## 26165                                     Jordan  1991  8.14024159
## 26166                                     Jordan  1991  8.14024159
## 26167                                     Jordan  1991  8.14024159
## 26168                                     Jordan  1991  8.14024159
## 26181                                     Jordan  1991  8.14024159
## 26182                                     Jordan  1991  8.14024159
## 26213                                     Jordan  1991  8.14024159
## 26224                                     Jordan  1991  8.14024159
## 26225                                     Jordan  1991  8.14024159
## 26226                                     Jordan  1991  8.14024159
## 26227                                     Jordan  1991  8.14024159
## 26228                                     Jordan  1991  8.14024159
## 26230                                     Jordan  1991  8.14024159
## 26231                                     Jordan  1991  8.14024159
## 26232                                     Jordan  1991  8.14024159
## 26237                                     Jordan  1991  8.14024159
## 26238                                     Jordan  1991  8.14024159
## 26239                                     Jordan  1991  8.14024159
## 26241                                      Kenya  1991 28.14057919
## 26243                                      Kenya  1991 28.14057919
## 26244                                      Kenya  1991 28.14057919
## 26245                                      Kenya  1991 28.14057919
## 26246                                      Kenya  1991 28.14057919
## 26248                                      Kenya  1991 28.14057919
## 26249                                      Kenya  1991 28.14057919
## 26250                                      Kenya  1991 28.14057919
## 26251                                      Kenya  1991 28.14057919
## 26252                                      Kenya  1991 28.14057919
## 26261                                      Kenya  1991 28.14057919
## 26262                                      Kenya  1991 28.14057919
## 26263                                      Kenya  1991 28.14057919
## 26265                                      Kenya  1991 28.14057919
## 26266                                      Kenya  1991 28.14057919
## 26294                                      Kenya  1991 28.14057919
## 26296                                      Kenya  1991 28.14057919
## 26300                                      Kenya  1991 28.14057919
## 26303                                      Kenya  1991 28.14057919
## 26304                                      Kenya  1991 28.14057919
## 26305                                      Kenya  1991 28.14057919
## 26306                                      Kenya  1991 28.14057919
## 26307                                      Kenya  1991 28.14057919
## 26308                                      Kenya  1991 28.14057919
## 26309                                      Kenya  1991 28.14057919
## 26311                                      Kenya  1991 28.14057919
## 26312                                      Kenya  1991 28.14057919
## 26313                                      Kenya  1991 28.14057919
## 26314                                      Kenya  1991 28.14057919
## 26327                                      Kenya  1991 28.14057919
## 26328                                      Kenya  1991 28.14057919
## 26357                                      Kenya  1991 28.14057919
## 26369                                      Kenya  1991 28.14057919
## 26370                                      Kenya  1991 28.14057919
## 26371                                      Kenya  1991 28.14057919
## 26372                                      Kenya  1991 28.14057919
## 26373                                      Kenya  1991 28.14057919
## 26374                                      Kenya  1991 28.14057919
## 26375                                      Kenya  1991 28.14057919
## 26376                                      Kenya  1991 28.14057919
## 26381                                      Kenya  1991 28.14057919
## 26382                                      Kenya  1991 28.14057919
## 26383                                      Kenya  1991 28.14057919
## 26387                                   Kiribati  1991 28.33037854
## 26388                                   Kiribati  1991 28.33037854
## 26389                                   Kiribati  1991 28.33037854
## 26390                                   Kiribati  1991 28.33037854
## 26392                                   Kiribati  1991 28.33037854
## 26393                                   Kiribati  1991 28.33037854
## 26394                                   Kiribati  1991 28.33037854
## 26396                                   Kiribati  1991 28.33037854
## 26397                                   Kiribati  1991 28.33037854
## 26398                                   Kiribati  1991 28.33037854
## 26428                                   Kiribati  1991 28.33037854
## 26429                                   Kiribati  1991 28.33037854
## 26430                                   Kiribati  1991 28.33037854
## 26431                                   Kiribati  1991 28.33037854
## 26432                                   Kiribati  1991 28.33037854
## 26433                                   Kiribati  1991 28.33037854
## 26434                                   Kiribati  1991 28.33037854
## 26435                                   Kiribati  1991 28.33037854
## 26436                                   Kiribati  1991 28.33037854
## 26437                                   Kiribati  1991 28.33037854
## 26449                                   Kiribati  1991 28.33037854
## 26450                                   Kiribati  1991 28.33037854
## 26472                                   Kiribati  1991 28.33037854
## 26473                                   Kiribati  1991 28.33037854
## 26474                                   Kiribati  1991 28.33037854
## 26475                                   Kiribati  1991 28.33037854
## 26476                                   Kiribati  1991 28.33037854
## 26478                                 Kyrgyzstan  1991 36.97773245
## 26480                                 Kyrgyzstan  1991 36.97773245
## 26481                                 Kyrgyzstan  1991 36.97773245
## 26482                                 Kyrgyzstan  1991 36.97773245
## 26483                                 Kyrgyzstan  1991 36.97773245
## 26485                                 Kyrgyzstan  1991 36.97773245
## 26486                                 Kyrgyzstan  1991 36.97773245
## 26487                                 Kyrgyzstan  1991 36.97773245
## 26488                                 Kyrgyzstan  1991 36.97773245
## 26489                                 Kyrgyzstan  1991 36.97773245
## 26498                                 Kyrgyzstan  1991 36.97773245
## 26499                                 Kyrgyzstan  1991 36.97773245
## 26500                                 Kyrgyzstan  1991 36.97773245
## 26502                                 Kyrgyzstan  1991 36.97773245
## 26503                                 Kyrgyzstan  1991 36.97773245
## 26533                                 Kyrgyzstan  1991 36.97773245
## 26535                                 Kyrgyzstan  1991 36.97773245
## 26540                                 Kyrgyzstan  1991 36.97773245
## 26543                                 Kyrgyzstan  1991 36.97773245
## 26546                                 Kyrgyzstan  1991 36.97773245
## 26547                                 Kyrgyzstan  1991 36.97773245
## 26548                                 Kyrgyzstan  1991 36.97773245
## 26549                                 Kyrgyzstan  1991 36.97773245
## 26551                                 Kyrgyzstan  1991 36.97773245
## 26552                                 Kyrgyzstan  1991 36.97773245
## 26553                                 Kyrgyzstan  1991 36.97773245
## 26554                                 Kyrgyzstan  1991 36.97773245
## 26567                                 Kyrgyzstan  1991 36.97773245
## 26568                                 Kyrgyzstan  1991 36.97773245
## 26599                                 Kyrgyzstan  1991 36.97773245
## 26612                                 Kyrgyzstan  1991 36.97773245
## 26618                                 Kyrgyzstan  1991 36.97773245
## 26619                                 Kyrgyzstan  1991 36.97773245
## 26620                                 Kyrgyzstan  1991 36.97773245
## 26625                                 Kyrgyzstan  1991 36.97773245
## 26626                                 Kyrgyzstan  1991 36.97773245
## 26627                                 Kyrgyzstan  1991 36.97773245
## 26630           Lao People's Democratic Republic  1991 58.23068704
## 26632           Lao People's Democratic Republic  1991 58.23068704
## 26633           Lao People's Democratic Republic  1991 58.23068704
## 26634           Lao People's Democratic Republic  1991 58.23068704
## 26635           Lao People's Democratic Republic  1991 58.23068704
## 26637           Lao People's Democratic Republic  1991 58.23068704
## 26638           Lao People's Democratic Republic  1991 58.23068704
## 26639           Lao People's Democratic Republic  1991 58.23068704
## 26640           Lao People's Democratic Republic  1991 58.23068704
## 26641           Lao People's Democratic Republic  1991 58.23068704
## 26642           Lao People's Democratic Republic  1991 58.23068704
## 26643           Lao People's Democratic Republic  1991 58.23068704
## 26650           Lao People's Democratic Republic  1991 58.23068704
## 26651           Lao People's Democratic Republic  1991 58.23068704
## 26652           Lao People's Democratic Republic  1991 58.23068704
## 26654           Lao People's Democratic Republic  1991 58.23068704
## 26655           Lao People's Democratic Republic  1991 58.23068704
## 26683           Lao People's Democratic Republic  1991 58.23068704
## 26685           Lao People's Democratic Republic  1991 58.23068704
## 26690           Lao People's Democratic Republic  1991 58.23068704
## 26693           Lao People's Democratic Republic  1991 58.23068704
## 26694           Lao People's Democratic Republic  1991 58.23068704
## 26695           Lao People's Democratic Republic  1991 58.23068704
## 26696           Lao People's Democratic Republic  1991 58.23068704
## 26697           Lao People's Democratic Republic  1991 58.23068704
## 26698           Lao People's Democratic Republic  1991 58.23068704
## 26699           Lao People's Democratic Republic  1991 58.23068704
## 26701           Lao People's Democratic Republic  1991 58.23068704
## 26702           Lao People's Democratic Republic  1991 58.23068704
## 26703           Lao People's Democratic Republic  1991 58.23068704
## 26704           Lao People's Democratic Republic  1991 58.23068704
## 26717           Lao People's Democratic Republic  1991 58.23068704
## 26718           Lao People's Democratic Republic  1991 58.23068704
## 26749           Lao People's Democratic Republic  1991 58.23068704
## 26761           Lao People's Democratic Republic  1991 58.23068704
## 26762           Lao People's Democratic Republic  1991 58.23068704
## 26763           Lao People's Democratic Republic  1991 58.23068704
## 26764           Lao People's Democratic Republic  1991 58.23068704
## 26765           Lao People's Democratic Republic  1991 58.23068704
## 26767           Lao People's Democratic Republic  1991 58.23068704
## 26768           Lao People's Democratic Republic  1991 58.23068704
## 26769           Lao People's Democratic Republic  1991 58.23068704
## 26774           Lao People's Democratic Republic  1991 58.23068704
## 26775           Lao People's Democratic Republic  1991 58.23068704
## 26776           Lao People's Democratic Republic  1991 58.23068704
## 26779                                    Lesotho  1991  8.04716161
## 26781                                    Lesotho  1991  8.04716161
## 26782                                    Lesotho  1991  8.04716161
## 26783                                    Lesotho  1991  8.04716161
## 26784                                    Lesotho  1991  8.04716161
## 26786                                    Lesotho  1991  8.04716161
## 26787                                    Lesotho  1991  8.04716161
## 26788                                    Lesotho  1991  8.04716161
## 26789                                    Lesotho  1991  8.04716161
## 26790                                    Lesotho  1991  8.04716161
## 26791                                    Lesotho  1991  8.04716161
## 26792                                    Lesotho  1991  8.04716161
## 26799                                    Lesotho  1991  8.04716161
## 26800                                    Lesotho  1991  8.04716161
## 26801                                    Lesotho  1991  8.04716161
## 26803                                    Lesotho  1991  8.04716161
## 26804                                    Lesotho  1991  8.04716161
## 26834                                    Lesotho  1991  8.04716161
## 26836                                    Lesotho  1991  8.04716161
## 26839                                    Lesotho  1991  8.04716161
## 26842                                    Lesotho  1991  8.04716161
## 26843                                    Lesotho  1991  8.04716161
## 26844                                    Lesotho  1991  8.04716161
## 26845                                    Lesotho  1991  8.04716161
## 26846                                    Lesotho  1991  8.04716161
## 26847                                    Lesotho  1991  8.04716161
## 26848                                    Lesotho  1991  8.04716161
## 26849                                    Lesotho  1991  8.04716161
## 26850                                    Lesotho  1991  8.04716161
## 26851                                    Lesotho  1991  8.04716161
## 26852                                    Lesotho  1991  8.04716161
## 26865                                    Lesotho  1991  8.04716161
## 26866                                    Lesotho  1991  8.04716161
## 26897                                    Lesotho  1991  8.04716161
## 26911                                    Lesotho  1991  8.04716161
## 26912                                    Lesotho  1991  8.04716161
## 26913                                    Lesotho  1991  8.04716161
## 26914                                    Lesotho  1991  8.04716161
## 26915                                    Lesotho  1991  8.04716161
## 26916                                    Lesotho  1991  8.04716161
## 26917                                    Lesotho  1991  8.04716161
## 26922                                    Lesotho  1991  8.04716161
## 26923                                    Lesotho  1991  8.04716161
## 26924                                    Lesotho  1991  8.04716161
## 26928                                    Liberia  1991 55.60344828
## 26929                                    Liberia  1991 55.60344828
## 26930                                    Liberia  1991 55.60344828
## 26931                                    Liberia  1991 55.60344828
## 26933                                    Liberia  1991 55.60344828
## 26934                                    Liberia  1991 55.60344828
## 26935                                    Liberia  1991 55.60344828
## 26946                                    Liberia  1991 55.60344828
## 26947                                    Liberia  1991 55.60344828
## 26948                                    Liberia  1991 55.60344828
## 26950                                    Liberia  1991 55.60344828
## 26951                                    Liberia  1991 55.60344828
## 26979                                    Liberia  1991 55.60344828
## 26981                                    Liberia  1991 55.60344828
## 26986                                    Liberia  1991 55.60344828
## 26989                                    Liberia  1991 55.60344828
## 26992                                    Liberia  1991 55.60344828
## 26993                                    Liberia  1991 55.60344828
## 26994                                    Liberia  1991 55.60344828
## 26995                                    Liberia  1991 55.60344828
## 26997                                    Liberia  1991 55.60344828
## 26998                                    Liberia  1991 55.60344828
## 26999                                    Liberia  1991 55.60344828
## 27000                                    Liberia  1991 55.60344828
## 27013                                    Liberia  1991 55.60344828
## 27014                                    Liberia  1991 55.60344828
## 27043                                    Liberia  1991 55.60344828
## 27055                                    Liberia  1991 55.60344828
## 27060                                    Liberia  1991 55.60344828
## 27061                                    Liberia  1991 55.60344828
## 27062                                    Liberia  1991 55.60344828
## 27066                                    Liberia  1991 55.60344828
## 27067                                    Liberia  1991 55.60344828
## 27068                                    Liberia  1991 55.60344828
## 27073                                 Madagascar  1991 29.67744332
## 27074                                 Madagascar  1991 29.67744332
## 27075                                 Madagascar  1991 29.67744332
## 27076                                 Madagascar  1991 29.67744332
## 27078                                 Madagascar  1991 29.67744332
## 27079                                 Madagascar  1991 29.67744332
## 27080                                 Madagascar  1991 29.67744332
## 27082                                 Madagascar  1991 29.67744332
## 27083                                 Madagascar  1991 29.67744332
## 27084                                 Madagascar  1991 29.67744332
## 27121                                 Madagascar  1991 29.67744332
## 27123                                 Madagascar  1991 29.67744332
## 27126                                 Madagascar  1991 29.67744332
## 27129                                 Madagascar  1991 29.67744332
## 27130                                 Madagascar  1991 29.67744332
## 27131                                 Madagascar  1991 29.67744332
## 27132                                 Madagascar  1991 29.67744332
## 27133                                 Madagascar  1991 29.67744332
## 27134                                 Madagascar  1991 29.67744332
## 27135                                 Madagascar  1991 29.67744332
## 27137                                 Madagascar  1991 29.67744332
## 27138                                 Madagascar  1991 29.67744332
## 27139                                 Madagascar  1991 29.67744332
## 27140                                 Madagascar  1991 29.67744332
## 27153                                 Madagascar  1991 29.67744332
## 27154                                 Madagascar  1991 29.67744332
## 27185                                 Madagascar  1991 29.67744332
## 27198                                 Madagascar  1991 29.67744332
## 27199                                 Madagascar  1991 29.67744332
## 27200                                 Madagascar  1991 29.67744332
## 27201                                 Madagascar  1991 29.67744332
## 27202                                 Madagascar  1991 29.67744332
## 27203                                 Madagascar  1991 29.67744332
## 27204                                 Madagascar  1991 29.67744332
## 27205                                 Madagascar  1991 29.67744332
## 27210                                 Madagascar  1991 29.67744332
## 27211                                 Madagascar  1991 29.67744332
## 27212                                 Madagascar  1991 29.67744332
## 27215                                     Malawi  1991 43.72187589
## 27217                                     Malawi  1991 43.72187589
## 27218                                     Malawi  1991 43.72187589
## 27219                                     Malawi  1991 43.72187589
## 27220                                     Malawi  1991 43.72187589
## 27222                                     Malawi  1991 43.72187589
## 27223                                     Malawi  1991 43.72187589
## 27224                                     Malawi  1991 43.72187589
## 27225                                     Malawi  1991 43.72187589
## 27226                                     Malawi  1991 43.72187589
## 27227                                     Malawi  1991 43.72187589
## 27228                                     Malawi  1991 43.72187589
## 27235                                     Malawi  1991 43.72187589
## 27236                                     Malawi  1991 43.72187589
## 27237                                     Malawi  1991 43.72187589
## 27239                                     Malawi  1991 43.72187589
## 27240                                     Malawi  1991 43.72187589
## 27267                                     Malawi  1991 43.72187589
## 27269                                     Malawi  1991 43.72187589
## 27273                                     Malawi  1991 43.72187589
## 27276                                     Malawi  1991 43.72187589
## 27277                                     Malawi  1991 43.72187589
## 27278                                     Malawi  1991 43.72187589
## 27279                                     Malawi  1991 43.72187589
## 27280                                     Malawi  1991 43.72187589
## 27281                                     Malawi  1991 43.72187589
## 27282                                     Malawi  1991 43.72187589
## 27284                                     Malawi  1991 43.72187589
## 27285                                     Malawi  1991 43.72187589
## 27286                                     Malawi  1991 43.72187589
## 27287                                     Malawi  1991 43.72187589
## 27300                                     Malawi  1991 43.72187589
## 27301                                     Malawi  1991 43.72187589
## 27332                                     Malawi  1991 43.72187589
## 27344                                     Malawi  1991 43.72187589
## 27345                                     Malawi  1991 43.72187589
## 27346                                     Malawi  1991 43.72187589
## 27347                                     Malawi  1991 43.72187589
## 27350                                     Malawi  1991 43.72187589
## 27351                                     Malawi  1991 43.72187589
## 27352                                     Malawi  1991 43.72187589
## 27357                                     Malawi  1991 43.72187589
## 27358                                     Malawi  1991 43.72187589
## 27359                                     Malawi  1991 43.72187589
## 27361                                   Malaysia  1991 14.35580915
## 27363                                   Malaysia  1991 14.35580915
## 27364                                   Malaysia  1991 14.35580915
## 27365                                   Malaysia  1991 14.35580915
## 27366                                   Malaysia  1991 14.35580915
## 27368                                   Malaysia  1991 14.35580915
## 27369                                   Malaysia  1991 14.35580915
## 27370                                   Malaysia  1991 14.35580915
## 27371                                   Malaysia  1991 14.35580915
## 27372                                   Malaysia  1991 14.35580915
## 27381                                   Malaysia  1991 14.35580915
## 27382                                   Malaysia  1991 14.35580915
## 27383                                   Malaysia  1991 14.35580915
## 27385                                   Malaysia  1991 14.35580915
## 27386                                   Malaysia  1991 14.35580915
## 27416                                   Malaysia  1991 14.35580915
## 27418                                   Malaysia  1991 14.35580915
## 27420                                   Malaysia  1991 14.35580915
## 27423                                   Malaysia  1991 14.35580915
## 27424                                   Malaysia  1991 14.35580915
## 27425                                   Malaysia  1991 14.35580915
## 27426                                   Malaysia  1991 14.35580915
## 27427                                   Malaysia  1991 14.35580915
## 27428                                   Malaysia  1991 14.35580915
## 27429                                   Malaysia  1991 14.35580915
## 27431                                   Malaysia  1991 14.35580915
## 27432                                   Malaysia  1991 14.35580915
## 27433                                   Malaysia  1991 14.35580915
## 27434                                   Malaysia  1991 14.35580915
## 27446                                   Malaysia  1991 14.35580915
## 27447                                   Malaysia  1991 14.35580915
## 27463                                   Malaysia  1991 14.35580915
## 27475                                   Malaysia  1991 14.35580915
## 27476                                   Malaysia  1991 14.35580915
## 27477                                   Malaysia  1991 14.35580915
## 27478                                   Malaysia  1991 14.35580915
## 27479                                   Malaysia  1991 14.35580915
## 27480                                   Malaysia  1991 14.35580915
## 27481                                   Malaysia  1991 14.35580915
## 27482                                   Malaysia  1991 14.35580915
## 27487                                   Malaysia  1991 14.35580915
## 27488                                   Malaysia  1991 14.35580915
## 27489                                   Malaysia  1991 14.35580915
## 27492                                       Mali  1991 41.31923718
## 27494                                       Mali  1991 41.31923718
## 27495                                       Mali  1991 41.31923718
## 27496                                       Mali  1991 41.31923718
## 27497                                       Mali  1991 41.31923718
## 27499                                       Mali  1991 41.31923718
## 27500                                       Mali  1991 41.31923718
## 27501                                       Mali  1991 41.31923718
## 27502                                       Mali  1991 41.31923718
## 27503                                       Mali  1991 41.31923718
## 27504                                       Mali  1991 41.31923718
## 27505                                       Mali  1991 41.31923718
## 27512                                       Mali  1991 41.31923718
## 27513                                       Mali  1991 41.31923718
## 27514                                       Mali  1991 41.31923718
## 27516                                       Mali  1991 41.31923718
## 27517                                       Mali  1991 41.31923718
## 27545                                       Mali  1991 41.31923718
## 27547                                       Mali  1991 41.31923718
## 27551                                       Mali  1991 41.31923718
## 27554                                       Mali  1991 41.31923718
## 27555                                       Mali  1991 41.31923718
## 27556                                       Mali  1991 41.31923718
## 27557                                       Mali  1991 41.31923718
## 27558                                       Mali  1991 41.31923718
## 27559                                       Mali  1991 41.31923718
## 27560                                       Mali  1991 41.31923718
## 27562                                       Mali  1991 41.31923718
## 27563                                       Mali  1991 41.31923718
## 27564                                       Mali  1991 41.31923718
## 27565                                       Mali  1991 41.31923718
## 27578                                       Mali  1991 41.31923718
## 27579                                       Mali  1991 41.31923718
## 27610                                       Mali  1991 41.31923718
## 27623                                       Mali  1991 41.31923718
## 27624                                       Mali  1991 41.31923718
## 27625                                       Mali  1991 41.31923718
## 27626                                       Mali  1991 41.31923718
## 27627                                       Mali  1991 41.31923718
## 27629                                       Mali  1991 41.31923718
## 27630                                       Mali  1991 41.31923718
## 27631                                       Mali  1991 41.31923718
## 27636                                       Mali  1991 41.31923718
## 27637                                       Mali  1991 41.31923718
## 27638                                       Mali  1991 41.31923718
## 27641                                      Malta  1991  3.29999035
## 27643                                      Malta  1991  3.29999035
## 27644                                      Malta  1991  3.29999035
## 27645                                      Malta  1991  3.29999035
## 27646                                      Malta  1991  3.29999035
## 27648                                      Malta  1991  3.29999035
## 27649                                      Malta  1991  3.29999035
## 27650                                      Malta  1991  3.29999035
## 27651                                      Malta  1991  3.29999035
## 27652                                      Malta  1991  3.29999035
## 27653                                      Malta  1991  3.29999035
## 27654                                      Malta  1991  3.29999035
## 27661                                      Malta  1991  3.29999035
## 27662                                      Malta  1991  3.29999035
## 27663                                      Malta  1991  3.29999035
## 27665                                      Malta  1991  3.29999035
## 27666                                      Malta  1991  3.29999035
## 27696                                      Malta  1991  3.29999035
## 27698                                      Malta  1991  3.29999035
## 27702                                      Malta  1991  3.29999035
## 27704                                      Malta  1991  3.29999035
## 27705                                      Malta  1991  3.29999035
## 27706                                      Malta  1991  3.29999035
## 27707                                      Malta  1991  3.29999035
## 27708                                      Malta  1991  3.29999035
## 27709                                      Malta  1991  3.29999035
## 27710                                      Malta  1991  3.29999035
## 27711                                      Malta  1991  3.29999035
## 27712                                      Malta  1991  3.29999035
## 27713                                      Malta  1991  3.29999035
## 27714                                      Malta  1991  3.29999035
## 27725                                      Malta  1991  3.29999035
## 27726                                      Malta  1991  3.29999035
## 27753                                      Malta  1991  3.29999035
## 27754                                      Malta  1991  3.29999035
## 27755                                      Malta  1991  3.29999035
## 27756                                      Malta  1991  3.29999035
## 27757                                      Malta  1991  3.29999035
## 27758                                      Malta  1991  3.29999035
## 27759                                      Malta  1991  3.29999035
## 27760                                      Malta  1991  3.29999035
## 27765                                      Malta  1991  3.29999035
## 27766                                      Malta  1991  3.29999035
## 27767                                      Malta  1991  3.29999035
## 27770                                 Mauritania  1991 37.51582320
## 27772                                 Mauritania  1991 37.51582320
## 27773                                 Mauritania  1991 37.51582320
## 27774                                 Mauritania  1991 37.51582320
## 27775                                 Mauritania  1991 37.51582320
## 27777                                 Mauritania  1991 37.51582320
## 27778                                 Mauritania  1991 37.51582320
## 27779                                 Mauritania  1991 37.51582320
## 27780                                 Mauritania  1991 37.51582320
## 27781                                 Mauritania  1991 37.51582320
## 27782                                 Mauritania  1991 37.51582320
## 27783                                 Mauritania  1991 37.51582320
## 27790                                 Mauritania  1991 37.51582320
## 27791                                 Mauritania  1991 37.51582320
## 27792                                 Mauritania  1991 37.51582320
## 27794                                 Mauritania  1991 37.51582320
## 27795                                 Mauritania  1991 37.51582320
## 27823                                 Mauritania  1991 37.51582320
## 27825                                 Mauritania  1991 37.51582320
## 27828                                 Mauritania  1991 37.51582320
## 27831                                 Mauritania  1991 37.51582320
## 27832                                 Mauritania  1991 37.51582320
## 27833                                 Mauritania  1991 37.51582320
## 27834                                 Mauritania  1991 37.51582320
## 27835                                 Mauritania  1991 37.51582320
## 27836                                 Mauritania  1991 37.51582320
## 27837                                 Mauritania  1991 37.51582320
## 27839                                 Mauritania  1991 37.51582320
## 27840                                 Mauritania  1991 37.51582320
## 27841                                 Mauritania  1991 37.51582320
## 27842                                 Mauritania  1991 37.51582320
## 27855                                 Mauritania  1991 37.51582320
## 27856                                 Mauritania  1991 37.51582320
## 27887                                 Mauritania  1991 37.51582320
## 27899                                 Mauritania  1991 37.51582320
## 27900                                 Mauritania  1991 37.51582320
## 27901                                 Mauritania  1991 37.51582320
## 27902                                 Mauritania  1991 37.51582320
## 27903                                 Mauritania  1991 37.51582320
## 27905                                 Mauritania  1991 37.51582320
## 27906                                 Mauritania  1991 37.51582320
## 27907                                 Mauritania  1991 37.51582320
## 27912                                 Mauritania  1991 37.51582320
## 27913                                 Mauritania  1991 37.51582320
## 27914                                 Mauritania  1991 37.51582320
## 27917                                  Mauritius  1991 11.70207516
## 27919                                  Mauritius  1991 11.70207516
## 27920                                  Mauritius  1991 11.70207516
## 27921                                  Mauritius  1991 11.70207516
## 27922                                  Mauritius  1991 11.70207516
## 27924                                  Mauritius  1991 11.70207516
## 27925                                  Mauritius  1991 11.70207516
## 27926                                  Mauritius  1991 11.70207516
## 27927                                  Mauritius  1991 11.70207516
## 27928                                  Mauritius  1991 11.70207516
## 27929                                  Mauritius  1991 11.70207516
## 27930                                  Mauritius  1991 11.70207516
## 27937                                  Mauritius  1991 11.70207516
## 27938                                  Mauritius  1991 11.70207516
## 27939                                  Mauritius  1991 11.70207516
## 27941                                  Mauritius  1991 11.70207516
## 27942                                  Mauritius  1991 11.70207516
## 27970                                  Mauritius  1991 11.70207516
## 27972                                  Mauritius  1991 11.70207516
## 27975                                  Mauritius  1991 11.70207516
## 27977                                  Mauritius  1991 11.70207516
## 27978                                  Mauritius  1991 11.70207516
## 27979                                  Mauritius  1991 11.70207516
## 27980                                  Mauritius  1991 11.70207516
## 27981                                  Mauritius  1991 11.70207516
## 27982                                  Mauritius  1991 11.70207516
## 27983                                  Mauritius  1991 11.70207516
## 27984                                  Mauritius  1991 11.70207516
## 27985                                  Mauritius  1991 11.70207516
## 27986                                  Mauritius  1991 11.70207516
## 27998                                  Mauritius  1991 11.70207516
## 27999                                  Mauritius  1991 11.70207516
## 28018                                  Mauritius  1991 11.70207516
## 28029                                  Mauritius  1991 11.70207516
## 28030                                  Mauritius  1991 11.70207516
## 28031                                  Mauritius  1991 11.70207516
## 28032                                  Mauritius  1991 11.70207516
## 28034                                  Mauritius  1991 11.70207516
## 28035                                  Mauritius  1991 11.70207516
## 28036                                  Mauritius  1991 11.70207516
## 28041                                  Mauritius  1991 11.70207516
## 28042                                  Mauritius  1991 11.70207516
## 28043                                  Mauritius  1991 11.70207516
## 28045                                     Mexico  1991  7.52452792
## 28047                                     Mexico  1991  7.52452792
## 28048                                     Mexico  1991  7.52452792
## 28049                                     Mexico  1991  7.52452792
## 28050                                     Mexico  1991  7.52452792
## 28052                                     Mexico  1991  7.52452792
## 28053                                     Mexico  1991  7.52452792
## 28054                                     Mexico  1991  7.52452792
## 28055                                     Mexico  1991  7.52452792
## 28056                                     Mexico  1991  7.52452792
## 28057                                     Mexico  1991  7.52452792
## 28058                                     Mexico  1991  7.52452792
## 28065                                     Mexico  1991  7.52452792
## 28066                                     Mexico  1991  7.52452792
## 28067                                     Mexico  1991  7.52452792
## 28069                                     Mexico  1991  7.52452792
## 28070                                     Mexico  1991  7.52452792
## 28093                                     Mexico  1991  7.52452792
## 28094                                     Mexico  1991  7.52452792
## 28097                                     Mexico  1991  7.52452792
## 28099                                     Mexico  1991  7.52452792
## 28100                                     Mexico  1991  7.52452792
## 28104                                     Mexico  1991  7.52452792
## 28106                                     Mexico  1991  7.52452792
## 28110                                     Mexico  1991  7.52452792
## 28113                                     Mexico  1991  7.52452792
## 28114                                     Mexico  1991  7.52452792
## 28115                                     Mexico  1991  7.52452792
## 28116                                     Mexico  1991  7.52452792
## 28117                                     Mexico  1991  7.52452792
## 28118                                     Mexico  1991  7.52452792
## 28119                                     Mexico  1991  7.52452792
## 28121                                     Mexico  1991  7.52452792
## 28122                                     Mexico  1991  7.52452792
## 28123                                     Mexico  1991  7.52452792
## 28124                                     Mexico  1991  7.52452792
## 28137                                     Mexico  1991  7.52452792
## 28138                                     Mexico  1991  7.52452792
## 28170                                     Mexico  1991  7.52452792
## 28183                                     Mexico  1991  7.52452792
## 28184                                     Mexico  1991  7.52452792
## 28185                                     Mexico  1991  7.52452792
## 28186                                     Mexico  1991  7.52452792
## 28187                                     Mexico  1991  7.52452792
## 28189                                     Mexico  1991  7.52452792
## 28190                                     Mexico  1991  7.52452792
## 28191                                     Mexico  1991  7.52452792
## 28196                                     Mexico  1991  7.52452792
## 28197                                     Mexico  1991  7.52452792
## 28198                                     Mexico  1991  7.52452792
## 28201                                   Mongolia  1991 13.10414500
## 28203                                   Mongolia  1991 13.10414500
## 28204                                   Mongolia  1991 13.10414500
## 28205                                   Mongolia  1991 13.10414500
## 28206                                   Mongolia  1991 13.10414500
## 28208                                   Mongolia  1991 13.10414500
## 28209                                   Mongolia  1991 13.10414500
## 28210                                   Mongolia  1991 13.10414500
## 28211                                   Mongolia  1991 13.10414500
## 28212                                   Mongolia  1991 13.10414500
## 28221                                   Mongolia  1991 13.10414500
## 28222                                   Mongolia  1991 13.10414500
## 28223                                   Mongolia  1991 13.10414500
## 28225                                   Mongolia  1991 13.10414500
## 28226                                   Mongolia  1991 13.10414500
## 28257                                   Mongolia  1991 13.10414500
## 28259                                   Mongolia  1991 13.10414500
## 28262                                   Mongolia  1991 13.10414500
## 28265                                   Mongolia  1991 13.10414500
## 28266                                   Mongolia  1991 13.10414500
## 28267                                   Mongolia  1991 13.10414500
## 28268                                   Mongolia  1991 13.10414500
## 28269                                   Mongolia  1991 13.10414500
## 28270                                   Mongolia  1991 13.10414500
## 28271                                   Mongolia  1991 13.10414500
## 28272                                   Mongolia  1991 13.10414500
## 28273                                   Mongolia  1991 13.10414500
## 28274                                   Mongolia  1991 13.10414500
## 28275                                   Mongolia  1991 13.10414500
## 28288                                   Mongolia  1991 13.10414500
## 28289                                   Mongolia  1991 13.10414500
## 28320                                   Mongolia  1991 13.10414500
## 28333                                   Mongolia  1991 13.10414500
## 28334                                   Mongolia  1991 13.10414500
## 28335                                   Mongolia  1991 13.10414500
## 28339                                   Mongolia  1991 13.10414500
## 28340                                   Mongolia  1991 13.10414500
## 28341                                   Mongolia  1991 13.10414500
## 28346                                   Mongolia  1991 13.10414500
## 28347                                   Mongolia  1991 13.10414500
## 28348                                   Mongolia  1991 13.10414500
## 28351                                    Morocco  1991 19.94560417
## 28353                                    Morocco  1991 19.94560417
## 28354                                    Morocco  1991 19.94560417
## 28355                                    Morocco  1991 19.94560417
## 28356                                    Morocco  1991 19.94560417
## 28358                                    Morocco  1991 19.94560417
## 28359                                    Morocco  1991 19.94560417
## 28360                                    Morocco  1991 19.94560417
## 28361                                    Morocco  1991 19.94560417
## 28362                                    Morocco  1991 19.94560417
## 28363                                    Morocco  1991 19.94560417
## 28364                                    Morocco  1991 19.94560417
## 28371                                    Morocco  1991 19.94560417
## 28372                                    Morocco  1991 19.94560417
## 28373                                    Morocco  1991 19.94560417
## 28375                                    Morocco  1991 19.94560417
## 28376                                    Morocco  1991 19.94560417
## 28406                                    Morocco  1991 19.94560417
## 28408                                    Morocco  1991 19.94560417
## 28411                                    Morocco  1991 19.94560417
## 28414                                    Morocco  1991 19.94560417
## 28415                                    Morocco  1991 19.94560417
## 28416                                    Morocco  1991 19.94560417
## 28417                                    Morocco  1991 19.94560417
## 28418                                    Morocco  1991 19.94560417
## 28419                                    Morocco  1991 19.94560417
## 28420                                    Morocco  1991 19.94560417
## 28421                                    Morocco  1991 19.94560417
## 28422                                    Morocco  1991 19.94560417
## 28423                                    Morocco  1991 19.94560417
## 28424                                    Morocco  1991 19.94560417
## 28437                                    Morocco  1991 19.94560417
## 28438                                    Morocco  1991 19.94560417
## 28470                                    Morocco  1991 19.94560417
## 28481                                    Morocco  1991 19.94560417
## 28482                                    Morocco  1991 19.94560417
## 28483                                    Morocco  1991 19.94560417
## 28484                                    Morocco  1991 19.94560417
## 28485                                    Morocco  1991 19.94560417
## 28486                                    Morocco  1991 19.94560417
## 28487                                    Morocco  1991 19.94560417
## 28488                                    Morocco  1991 19.94560417
## 28493                                    Morocco  1991 19.94560417
## 28494                                    Morocco  1991 19.94560417
## 28495                                    Morocco  1991 19.94560417
## 28497                                 Mozambique  1991 37.01162000
## 28499                                 Mozambique  1991 37.01162000
## 28500                                 Mozambique  1991 37.01162000
## 28501                                 Mozambique  1991 37.01162000
## 28502                                 Mozambique  1991 37.01162000
## 28504                                 Mozambique  1991 37.01162000
## 28505                                 Mozambique  1991 37.01162000
## 28506                                 Mozambique  1991 37.01162000
## 28507                                 Mozambique  1991 37.01162000
## 28508                                 Mozambique  1991 37.01162000
## 28509                                 Mozambique  1991 37.01162000
## 28510                                 Mozambique  1991 37.01162000
## 28517                                 Mozambique  1991 37.01162000
## 28518                                 Mozambique  1991 37.01162000
## 28519                                 Mozambique  1991 37.01162000
## 28552                                 Mozambique  1991 37.01162000
## 28554                                 Mozambique  1991 37.01162000
## 28558                                 Mozambique  1991 37.01162000
## 28561                                 Mozambique  1991 37.01162000
## 28562                                 Mozambique  1991 37.01162000
## 28563                                 Mozambique  1991 37.01162000
## 28564                                 Mozambique  1991 37.01162000
## 28565                                 Mozambique  1991 37.01162000
## 28566                                 Mozambique  1991 37.01162000
## 28567                                 Mozambique  1991 37.01162000
## 28569                                 Mozambique  1991 37.01162000
## 28570                                 Mozambique  1991 37.01162000
## 28571                                 Mozambique  1991 37.01162000
## 28572                                 Mozambique  1991 37.01162000
## 28585                                 Mozambique  1991 37.01162000
## 28586                                 Mozambique  1991 37.01162000
## 28617                                 Mozambique  1991 37.01162000
## 28630                                 Mozambique  1991 37.01162000
## 28631                                 Mozambique  1991 37.01162000
## 28632                                 Mozambique  1991 37.01162000
## 28634                                 Mozambique  1991 37.01162000
## 28635                                 Mozambique  1991 37.01162000
## 28636                                 Mozambique  1991 37.01162000
## 28637                                 Mozambique  1991 37.01162000
## 28642                                 Mozambique  1991 37.01162000
## 28643                                 Mozambique  1991 37.01162000
## 28644                                 Mozambique  1991 37.01162000
## 28647                                    Namibia  1991 10.74334412
## 28649                                    Namibia  1991 10.74334412
## 28650                                    Namibia  1991 10.74334412
## 28651                                    Namibia  1991 10.74334412
## 28652                                    Namibia  1991 10.74334412
## 28654                                    Namibia  1991 10.74334412
## 28655                                    Namibia  1991 10.74334412
## 28656                                    Namibia  1991 10.74334412
## 28657                                    Namibia  1991 10.74334412
## 28658                                    Namibia  1991 10.74334412
## 28659                                    Namibia  1991 10.74334412
## 28660                                    Namibia  1991 10.74334412
## 28667                                    Namibia  1991 10.74334412
## 28668                                    Namibia  1991 10.74334412
## 28669                                    Namibia  1991 10.74334412
## 28671                                    Namibia  1991 10.74334412
## 28672                                    Namibia  1991 10.74334412
## 28700                                    Namibia  1991 10.74334412
## 28702                                    Namibia  1991 10.74334412
## 28706                                    Namibia  1991 10.74334412
## 28709                                    Namibia  1991 10.74334412
## 28710                                    Namibia  1991 10.74334412
## 28711                                    Namibia  1991 10.74334412
## 28712                                    Namibia  1991 10.74334412
## 28713                                    Namibia  1991 10.74334412
## 28714                                    Namibia  1991 10.74334412
## 28715                                    Namibia  1991 10.74334412
## 28717                                    Namibia  1991 10.74334412
## 28718                                    Namibia  1991 10.74334412
## 28719                                    Namibia  1991 10.74334412
## 28720                                    Namibia  1991 10.74334412
## 28733                                    Namibia  1991 10.74334412
## 28734                                    Namibia  1991 10.74334412
## 28765                                    Namibia  1991 10.74334412
## 28777                                    Namibia  1991 10.74334412
## 28778                                    Namibia  1991 10.74334412
## 28779                                    Namibia  1991 10.74334412
## 28780                                    Namibia  1991 10.74334412
## 28781                                    Namibia  1991 10.74334412
## 28782                                    Namibia  1991 10.74334412
## 28783                                    Namibia  1991 10.74334412
## 28784                                    Namibia  1991 10.74334412
## 28789                                    Namibia  1991 10.74334412
## 28790                                    Namibia  1991 10.74334412
## 28791                                    Namibia  1991 10.74334412
## 28794                                      Nepal  1991 47.21452387
## 28796                                      Nepal  1991 47.21452387
## 28797                                      Nepal  1991 47.21452387
## 28798                                      Nepal  1991 47.21452387
## 28799                                      Nepal  1991 47.21452387
## 28801                                      Nepal  1991 47.21452387
## 28802                                      Nepal  1991 47.21452387
## 28803                                      Nepal  1991 47.21452387
## 28804                                      Nepal  1991 47.21452387
## 28805                                      Nepal  1991 47.21452387
## 28806                                      Nepal  1991 47.21452387
## 28807                                      Nepal  1991 47.21452387
## 28814                                      Nepal  1991 47.21452387
## 28815                                      Nepal  1991 47.21452387
## 28816                                      Nepal  1991 47.21452387
## 28818                                      Nepal  1991 47.21452387
## 28819                                      Nepal  1991 47.21452387
## 28848                                      Nepal  1991 47.21452387
## 28850                                      Nepal  1991 47.21452387
## 28854                                      Nepal  1991 47.21452387
## 28857                                      Nepal  1991 47.21452387
## 28858                                      Nepal  1991 47.21452387
## 28859                                      Nepal  1991 47.21452387
## 28860                                      Nepal  1991 47.21452387
## 28861                                      Nepal  1991 47.21452387
## 28862                                      Nepal  1991 47.21452387
## 28863                                      Nepal  1991 47.21452387
## 28865                                      Nepal  1991 47.21452387
## 28866                                      Nepal  1991 47.21452387
## 28867                                      Nepal  1991 47.21452387
## 28868                                      Nepal  1991 47.21452387
## 28881                                      Nepal  1991 47.21452387
## 28882                                      Nepal  1991 47.21452387
## 28913                                      Nepal  1991 47.21452387
## 28926                                      Nepal  1991 47.21452387
## 28927                                      Nepal  1991 47.21452387
## 28928                                      Nepal  1991 47.21452387
## 28929                                      Nepal  1991 47.21452387
## 28932                                      Nepal  1991 47.21452387
## 28933                                      Nepal  1991 47.21452387
## 28934                                      Nepal  1991 47.21452387
## 28939                                      Nepal  1991 47.21452387
## 28940                                      Nepal  1991 47.21452387
## 28941                                      Nepal  1991 47.21452387
## 28944                                Netherlands  1991  4.17159775
## 28946                                Netherlands  1991  4.17159775
## 28947                                Netherlands  1991  4.17159775
## 28948                                Netherlands  1991  4.17159775
## 28949                                Netherlands  1991  4.17159775
## 28951                                Netherlands  1991  4.17159775
## 28952                                Netherlands  1991  4.17159775
## 28953                                Netherlands  1991  4.17159775
## 28954                                Netherlands  1991  4.17159775
## 28955                                Netherlands  1991  4.17159775
## 28956                                Netherlands  1991  4.17159775
## 28957                                Netherlands  1991  4.17159775
## 28963                                Netherlands  1991  4.17159775
## 28964                                Netherlands  1991  4.17159775
## 28965                                Netherlands  1991  4.17159775
## 28967                                Netherlands  1991  4.17159775
## 28968                                Netherlands  1991  4.17159775
## 28997                                Netherlands  1991  4.17159775
## 28999                                Netherlands  1991  4.17159775
## 29003                                Netherlands  1991  4.17159775
## 29005                                Netherlands  1991  4.17159775
## 29006                                Netherlands  1991  4.17159775
## 29007                                Netherlands  1991  4.17159775
## 29008                                Netherlands  1991  4.17159775
## 29009                                Netherlands  1991  4.17159775
## 29010                                Netherlands  1991  4.17159775
## 29011                                Netherlands  1991  4.17159775
## 29012                                Netherlands  1991  4.17159775
## 29013                                Netherlands  1991  4.17159775
## 29014                                Netherlands  1991  4.17159775
## 29015                                Netherlands  1991  4.17159775
## 29028                                Netherlands  1991  4.17159775
## 29029                                Netherlands  1991  4.17159775
## 29059                                Netherlands  1991  4.17159775
## 29060                                Netherlands  1991  4.17159775
## 29061                                Netherlands  1991  4.17159775
## 29062                                Netherlands  1991  4.17159775
## 29063                                Netherlands  1991  4.17159775
## 29064                                Netherlands  1991  4.17159775
## 29065                                Netherlands  1991  4.17159775
## 29070                                Netherlands  1991  4.17159775
## 29071                                Netherlands  1991  4.17159775
## 29072                                Netherlands  1991  4.17159775
## 29075                                New Zealand  1991  9.00515552
## 29077                                New Zealand  1991  9.00515552
## 29078                                New Zealand  1991  9.00515552
## 29079                                New Zealand  1991  9.00515552
## 29080                                New Zealand  1991  9.00515552
## 29082                                New Zealand  1991  9.00515552
## 29083                                New Zealand  1991  9.00515552
## 29084                                New Zealand  1991  9.00515552
## 29085                                New Zealand  1991  9.00515552
## 29086                                New Zealand  1991  9.00515552
## 29087                                New Zealand  1991  9.00515552
## 29088                                New Zealand  1991  9.00515552
## 29094                                New Zealand  1991  9.00515552
## 29095                                New Zealand  1991  9.00515552
## 29096                                New Zealand  1991  9.00515552
## 29098                                New Zealand  1991  9.00515552
## 29099                                New Zealand  1991  9.00515552
## 29126                                New Zealand  1991  9.00515552
## 29128                                New Zealand  1991  9.00515552
## 29130                                New Zealand  1991  9.00515552
## 29132                                New Zealand  1991  9.00515552
## 29133                                New Zealand  1991  9.00515552
## 29134                                New Zealand  1991  9.00515552
## 29135                                New Zealand  1991  9.00515552
## 29136                                New Zealand  1991  9.00515552
## 29137                                New Zealand  1991  9.00515552
## 29138                                New Zealand  1991  9.00515552
## 29139                                New Zealand  1991  9.00515552
## 29140                                New Zealand  1991  9.00515552
## 29141                                New Zealand  1991  9.00515552
## 29154                                New Zealand  1991  9.00515552
## 29155                                New Zealand  1991  9.00515552
## 29179                                New Zealand  1991  9.00515552
## 29180                                New Zealand  1991  9.00515552
## 29182                                New Zealand  1991  9.00515552
## 29183                                New Zealand  1991  9.00515552
## 29184                                New Zealand  1991  9.00515552
## 29185                                New Zealand  1991  9.00515552
## 29190                                New Zealand  1991  9.00515552
## 29191                                New Zealand  1991  9.00515552
## 29192                                New Zealand  1991  9.00515552
## 29197                                    Nigeria  1991 31.22449680
## 29198                                    Nigeria  1991 31.22449680
## 29199                                    Nigeria  1991 31.22449680
## 29200                                    Nigeria  1991 31.22449680
## 29202                                    Nigeria  1991 31.22449680
## 29203                                    Nigeria  1991 31.22449680
## 29204                                    Nigeria  1991 31.22449680
## 29206                                    Nigeria  1991 31.22449680
## 29242                                    Nigeria  1991 31.22449680
## 29244                                    Nigeria  1991 31.22449680
## 29249                                    Nigeria  1991 31.22449680
## 29252                                    Nigeria  1991 31.22449680
## 29253                                    Nigeria  1991 31.22449680
## 29254                                    Nigeria  1991 31.22449680
## 29255                                    Nigeria  1991 31.22449680
## 29256                                    Nigeria  1991 31.22449680
## 29257                                    Nigeria  1991 31.22449680
## 29258                                    Nigeria  1991 31.22449680
## 29260                                    Nigeria  1991 31.22449680
## 29261                                    Nigeria  1991 31.22449680
## 29262                                    Nigeria  1991 31.22449680
## 29263                                    Nigeria  1991 31.22449680
## 29276                                    Nigeria  1991 31.22449680
## 29277                                    Nigeria  1991 31.22449680
## 29307                                    Nigeria  1991 31.22449680
## 29318                                    Nigeria  1991 31.22449680
## 29319                                    Nigeria  1991 31.22449680
## 29320                                    Nigeria  1991 31.22449680
## 29321                                    Nigeria  1991 31.22449680
## 29322                                    Nigeria  1991 31.22449680
## 29324                                    Nigeria  1991 31.22449680
## 29325                                    Nigeria  1991 31.22449680
## 29326                                    Nigeria  1991 31.22449680
## 29331                                    Nigeria  1991 31.22449680
## 29332                                    Nigeria  1991 31.22449680
## 29333                                    Nigeria  1991 31.22449680
## 29336                                     Norway  1991  3.28072551
## 29338                                     Norway  1991  3.28072551
## 29339                                     Norway  1991  3.28072551
## 29340                                     Norway  1991  3.28072551
## 29341                                     Norway  1991  3.28072551
## 29343                                     Norway  1991  3.28072551
## 29344                                     Norway  1991  3.28072551
## 29345                                     Norway  1991  3.28072551
## 29346                                     Norway  1991  3.28072551
## 29347                                     Norway  1991  3.28072551
## 29348                                     Norway  1991  3.28072551
## 29349                                     Norway  1991  3.28072551
## 29355                                     Norway  1991  3.28072551
## 29356                                     Norway  1991  3.28072551
## 29357                                     Norway  1991  3.28072551
## 29359                                     Norway  1991  3.28072551
## 29360                                     Norway  1991  3.28072551
## 29390                                     Norway  1991  3.28072551
## 29392                                     Norway  1991  3.28072551
## 29395                                     Norway  1991  3.28072551
## 29397                                     Norway  1991  3.28072551
## 29398                                     Norway  1991  3.28072551
## 29399                                     Norway  1991  3.28072551
## 29400                                     Norway  1991  3.28072551
## 29401                                     Norway  1991  3.28072551
## 29402                                     Norway  1991  3.28072551
## 29403                                     Norway  1991  3.28072551
## 29404                                     Norway  1991  3.28072551
## 29405                                     Norway  1991  3.28072551
## 29406                                     Norway  1991  3.28072551
## 29419                                     Norway  1991  3.28072551
## 29420                                     Norway  1991  3.28072551
## 29450                                     Norway  1991  3.28072551
## 29451                                     Norway  1991  3.28072551
## 29452                                     Norway  1991  3.28072551
## 29453                                     Norway  1991  3.28072551
## 29454                                     Norway  1991  3.28072551
## 29455                                     Norway  1991  3.28072551
## 29456                                     Norway  1991  3.28072551
## 29461                                     Norway  1991  3.28072551
## 29462                                     Norway  1991  3.28072551
## 29463                                     Norway  1991  3.28072551
## 29466                                   Pakistan  1991 25.77451802
## 29468                                   Pakistan  1991 25.77451802
## 29469                                   Pakistan  1991 25.77451802
## 29470                                   Pakistan  1991 25.77451802
## 29471                                   Pakistan  1991 25.77451802
## 29473                                   Pakistan  1991 25.77451802
## 29474                                   Pakistan  1991 25.77451802
## 29475                                   Pakistan  1991 25.77451802
## 29476                                   Pakistan  1991 25.77451802
## 29477                                   Pakistan  1991 25.77451802
## 29478                                   Pakistan  1991 25.77451802
## 29479                                   Pakistan  1991 25.77451802
## 29486                                   Pakistan  1991 25.77451802
## 29487                                   Pakistan  1991 25.77451802
## 29488                                   Pakistan  1991 25.77451802
## 29490                                   Pakistan  1991 25.77451802
## 29491                                   Pakistan  1991 25.77451802
## 29520                                   Pakistan  1991 25.77451802
## 29522                                   Pakistan  1991 25.77451802
## 29525                                   Pakistan  1991 25.77451802
## 29528                                   Pakistan  1991 25.77451802
## 29529                                   Pakistan  1991 25.77451802
## 29530                                   Pakistan  1991 25.77451802
## 29531                                   Pakistan  1991 25.77451802
## 29532                                   Pakistan  1991 25.77451802
## 29533                                   Pakistan  1991 25.77451802
## 29534                                   Pakistan  1991 25.77451802
## 29536                                   Pakistan  1991 25.77451802
## 29537                                   Pakistan  1991 25.77451802
## 29538                                   Pakistan  1991 25.77451802
## 29539                                   Pakistan  1991 25.77451802
## 29552                                   Pakistan  1991 25.77451802
## 29553                                   Pakistan  1991 25.77451802
## 29585                                   Pakistan  1991 25.77451802
## 29598                                   Pakistan  1991 25.77451802
## 29599                                   Pakistan  1991 25.77451802
## 29600                                   Pakistan  1991 25.77451802
## 29601                                   Pakistan  1991 25.77451802
## 29602                                   Pakistan  1991 25.77451802
## 29603                                   Pakistan  1991 25.77451802
## 29604                                   Pakistan  1991 25.77451802
## 29605                                   Pakistan  1991 25.77451802
## 29610                                   Pakistan  1991 25.77451802
## 29611                                   Pakistan  1991 25.77451802
## 29612                                   Pakistan  1991 25.77451802
## 29615                                     Panama  1991  7.90247159
## 29617                                     Panama  1991  7.90247159
## 29618                                     Panama  1991  7.90247159
## 29619                                     Panama  1991  7.90247159
## 29620                                     Panama  1991  7.90247159
## 29622                                     Panama  1991  7.90247159
## 29623                                     Panama  1991  7.90247159
## 29624                                     Panama  1991  7.90247159
## 29625                                     Panama  1991  7.90247159
## 29626                                     Panama  1991  7.90247159
## 29635                                     Panama  1991  7.90247159
## 29636                                     Panama  1991  7.90247159
## 29639                                     Panama  1991  7.90247159
## 29640                                     Panama  1991  7.90247159
## 29671                                     Panama  1991  7.90247159
## 29673                                     Panama  1991  7.90247159
## 29676                                     Panama  1991  7.90247159
## 29679                                     Panama  1991  7.90247159
## 29680                                     Panama  1991  7.90247159
## 29681                                     Panama  1991  7.90247159
## 29682                                     Panama  1991  7.90247159
## 29683                                     Panama  1991  7.90247159
## 29684                                     Panama  1991  7.90247159
## 29685                                     Panama  1991  7.90247159
## 29687                                     Panama  1991  7.90247159
## 29688                                     Panama  1991  7.90247159
## 29689                                     Panama  1991  7.90247159
## 29690                                     Panama  1991  7.90247159
## 29703                                     Panama  1991  7.90247159
## 29704                                     Panama  1991  7.90247159
## 29722                                     Panama  1991  7.90247159
## 29734                                     Panama  1991  7.90247159
## 29735                                     Panama  1991  7.90247159
## 29736                                     Panama  1991  7.90247159
## 29737                                     Panama  1991  7.90247159
## 29738                                     Panama  1991  7.90247159
## 29740                                     Panama  1991  7.90247159
## 29741                                     Panama  1991  7.90247159
## 29742                                     Panama  1991  7.90247159
## 29747                                     Panama  1991  7.90247159
## 29748                                     Panama  1991  7.90247159
## 29749                                     Panama  1991  7.90247159
## 29752                           Papua New Guinea  1991 27.51277683
## 29754                           Papua New Guinea  1991 27.51277683
## 29755                           Papua New Guinea  1991 27.51277683
## 29756                           Papua New Guinea  1991 27.51277683
## 29757                           Papua New Guinea  1991 27.51277683
## 29759                           Papua New Guinea  1991 27.51277683
## 29760                           Papua New Guinea  1991 27.51277683
## 29761                           Papua New Guinea  1991 27.51277683
## 29762                           Papua New Guinea  1991 27.51277683
## 29763                           Papua New Guinea  1991 27.51277683
## 29764                           Papua New Guinea  1991 27.51277683
## 29765                           Papua New Guinea  1991 27.51277683
## 29771                           Papua New Guinea  1991 27.51277683
## 29772                           Papua New Guinea  1991 27.51277683
## 29773                           Papua New Guinea  1991 27.51277683
## 29775                           Papua New Guinea  1991 27.51277683
## 29776                           Papua New Guinea  1991 27.51277683
## 29802                           Papua New Guinea  1991 27.51277683
## 29804                           Papua New Guinea  1991 27.51277683
## 29806                           Papua New Guinea  1991 27.51277683
## 29809                           Papua New Guinea  1991 27.51277683
## 29810                           Papua New Guinea  1991 27.51277683
## 29811                           Papua New Guinea  1991 27.51277683
## 29812                           Papua New Guinea  1991 27.51277683
## 29813                           Papua New Guinea  1991 27.51277683
## 29814                           Papua New Guinea  1991 27.51277683
## 29815                           Papua New Guinea  1991 27.51277683
## 29817                           Papua New Guinea  1991 27.51277683
## 29818                           Papua New Guinea  1991 27.51277683
## 29819                           Papua New Guinea  1991 27.51277683
## 29820                           Papua New Guinea  1991 27.51277683
## 29832                           Papua New Guinea  1991 27.51277683
## 29833                           Papua New Guinea  1991 27.51277683
## 29846                           Papua New Guinea  1991 27.51277683
## 29855                           Papua New Guinea  1991 27.51277683
## 29856                           Papua New Guinea  1991 27.51277683
## 29857                           Papua New Guinea  1991 27.51277683
## 29858                           Papua New Guinea  1991 27.51277683
## 29859                           Papua New Guinea  1991 27.51277683
## 29860                           Papua New Guinea  1991 27.51277683
## 29861                           Papua New Guinea  1991 27.51277683
## 29862                           Papua New Guinea  1991 27.51277683
## 29867                           Papua New Guinea  1991 27.51277683
## 29868                           Papua New Guinea  1991 27.51277683
## 29869                           Papua New Guinea  1991 27.51277683
## 29872                                   Paraguay  1991 17.01401644
## 29874                                   Paraguay  1991 17.01401644
## 29875                                   Paraguay  1991 17.01401644
## 29876                                   Paraguay  1991 17.01401644
## 29877                                   Paraguay  1991 17.01401644
## 29879                                   Paraguay  1991 17.01401644
## 29880                                   Paraguay  1991 17.01401644
## 29881                                   Paraguay  1991 17.01401644
## 29882                                   Paraguay  1991 17.01401644
## 29883                                   Paraguay  1991 17.01401644
## 29884                                   Paraguay  1991 17.01401644
## 29885                                   Paraguay  1991 17.01401644
## 29892                                   Paraguay  1991 17.01401644
## 29893                                   Paraguay  1991 17.01401644
## 29894                                   Paraguay  1991 17.01401644
## 29896                                   Paraguay  1991 17.01401644
## 29897                                   Paraguay  1991 17.01401644
## 29926                                   Paraguay  1991 17.01401644
## 29928                                   Paraguay  1991 17.01401644
## 29931                                   Paraguay  1991 17.01401644
## 29934                                   Paraguay  1991 17.01401644
## 29935                                   Paraguay  1991 17.01401644
## 29936                                   Paraguay  1991 17.01401644
## 29937                                   Paraguay  1991 17.01401644
## 29938                                   Paraguay  1991 17.01401644
## 29939                                   Paraguay  1991 17.01401644
## 29940                                   Paraguay  1991 17.01401644
## 29942                                   Paraguay  1991 17.01401644
## 29943                                   Paraguay  1991 17.01401644
## 29944                                   Paraguay  1991 17.01401644
## 29945                                   Paraguay  1991 17.01401644
## 29958                                   Paraguay  1991 17.01401644
## 29959                                   Paraguay  1991 17.01401644
## 29990                                   Paraguay  1991 17.01401644
## 30003                                   Paraguay  1991 17.01401644
## 30004                                   Paraguay  1991 17.01401644
## 30006                                   Paraguay  1991 17.01401644
## 30007                                   Paraguay  1991 17.01401644
## 30009                                   Paraguay  1991 17.01401644
## 30010                                   Paraguay  1991 17.01401644
## 30011                                   Paraguay  1991 17.01401644
## 30016                                   Paraguay  1991 17.01401644
## 30017                                   Paraguay  1991 17.01401644
## 30018                                   Paraguay  1991 17.01401644
## 30021                                       Peru  1991  8.53557672
## 30023                                       Peru  1991  8.53557672
## 30024                                       Peru  1991  8.53557672
## 30025                                       Peru  1991  8.53557672
## 30026                                       Peru  1991  8.53557672
## 30028                                       Peru  1991  8.53557672
## 30029                                       Peru  1991  8.53557672
## 30030                                       Peru  1991  8.53557672
## 30031                                       Peru  1991  8.53557672
## 30032                                       Peru  1991  8.53557672
## 30041                                       Peru  1991  8.53557672
## 30042                                       Peru  1991  8.53557672
## 30043                                       Peru  1991  8.53557672
## 30045                                       Peru  1991  8.53557672
## 30046                                       Peru  1991  8.53557672
## 30076                                       Peru  1991  8.53557672
## 30078                                       Peru  1991  8.53557672
## 30082                                       Peru  1991  8.53557672
## 30085                                       Peru  1991  8.53557672
## 30086                                       Peru  1991  8.53557672
## 30087                                       Peru  1991  8.53557672
## 30088                                       Peru  1991  8.53557672
## 30089                                       Peru  1991  8.53557672
## 30090                                       Peru  1991  8.53557672
## 30091                                       Peru  1991  8.53557672
## 30093                                       Peru  1991  8.53557672
## 30094                                       Peru  1991  8.53557672
## 30095                                       Peru  1991  8.53557672
## 30096                                       Peru  1991  8.53557672
## 30109                                       Peru  1991  8.53557672
## 30110                                       Peru  1991  8.53557672
## 30141                                       Peru  1991  8.53557672
## 30154                                       Peru  1991  8.53557672
## 30155                                       Peru  1991  8.53557672
## 30156                                       Peru  1991  8.53557672
## 30157                                       Peru  1991  8.53557672
## 30158                                       Peru  1991  8.53557672
## 30160                                       Peru  1991  8.53557672
## 30161                                       Peru  1991  8.53557672
## 30162                                       Peru  1991  8.53557672
## 30167                                       Peru  1991  8.53557672
## 30168                                       Peru  1991  8.53557672
## 30169                                       Peru  1991  8.53557672
## 30172                                Philippines  1991 20.98282788
## 30174                                Philippines  1991 20.98282788
## 30175                                Philippines  1991 20.98282788
## 30176                                Philippines  1991 20.98282788
## 30177                                Philippines  1991 20.98282788
## 30179                                Philippines  1991 20.98282788
## 30180                                Philippines  1991 20.98282788
## 30181                                Philippines  1991 20.98282788
## 30182                                Philippines  1991 20.98282788
## 30183                                Philippines  1991 20.98282788
## 30192                                Philippines  1991 20.98282788
## 30193                                Philippines  1991 20.98282788
## 30194                                Philippines  1991 20.98282788
## 30196                                Philippines  1991 20.98282788
## 30197                                Philippines  1991 20.98282788
## 30228                                Philippines  1991 20.98282788
## 30230                                Philippines  1991 20.98282788
## 30234                                Philippines  1991 20.98282788
## 30237                                Philippines  1991 20.98282788
## 30238                                Philippines  1991 20.98282788
## 30239                                Philippines  1991 20.98282788
## 30240                                Philippines  1991 20.98282788
## 30241                                Philippines  1991 20.98282788
## 30242                                Philippines  1991 20.98282788
## 30243                                Philippines  1991 20.98282788
## 30245                                Philippines  1991 20.98282788
## 30246                                Philippines  1991 20.98282788
## 30247                                Philippines  1991 20.98282788
## 30248                                Philippines  1991 20.98282788
## 30261                                Philippines  1991 20.98282788
## 30262                                Philippines  1991 20.98282788
## 30293                                Philippines  1991 20.98282788
## 30306                                Philippines  1991 20.98282788
## 30307                                Philippines  1991 20.98282788
## 30308                                Philippines  1991 20.98282788
## 30309                                Philippines  1991 20.98282788
## 30310                                Philippines  1991 20.98282788
## 30311                                Philippines  1991 20.98282788
## 30312                                Philippines  1991 20.98282788
## 30313                                Philippines  1991 20.98282788
## 30318                                Philippines  1991 20.98282788
## 30319                                Philippines  1991 20.98282788
## 30320                                Philippines  1991 20.98282788
## 30324                                    Romania  1991 20.12873875
## 30326                                    Romania  1991 20.12873875
## 30327                                    Romania  1991 20.12873875
## 30328                                    Romania  1991 20.12873875
## 30329                                    Romania  1991 20.12873875
## 30331                                    Romania  1991 20.12873875
## 30332                                    Romania  1991 20.12873875
## 30333                                    Romania  1991 20.12873875
## 30334                                    Romania  1991 20.12873875
## 30335                                    Romania  1991 20.12873875
## 30336                                    Romania  1991 20.12873875
## 30337                                    Romania  1991 20.12873875
## 30344                                    Romania  1991 20.12873875
## 30345                                    Romania  1991 20.12873875
## 30346                                    Romania  1991 20.12873875
## 30348                                    Romania  1991 20.12873875
## 30349                                    Romania  1991 20.12873875
## 30380                                    Romania  1991 20.12873875
## 30382                                    Romania  1991 20.12873875
## 30386                                    Romania  1991 20.12873875
## 30388                                    Romania  1991 20.12873875
## 30389                                    Romania  1991 20.12873875
## 30390                                    Romania  1991 20.12873875
## 30391                                    Romania  1991 20.12873875
## 30392                                    Romania  1991 20.12873875
## 30393                                    Romania  1991 20.12873875
## 30394                                    Romania  1991 20.12873875
## 30395                                    Romania  1991 20.12873875
## 30396                                    Romania  1991 20.12873875
## 30397                                    Romania  1991 20.12873875
## 30398                                    Romania  1991 20.12873875
## 30410                                    Romania  1991 20.12873875
## 30411                                    Romania  1991 20.12873875
## 30442                                    Romania  1991 20.12873875
## 30443                                    Romania  1991 20.12873875
## 30444                                    Romania  1991 20.12873875
## 30446                                    Romania  1991 20.12873875
## 30447                                    Romania  1991 20.12873875
## 30448                                    Romania  1991 20.12873875
## 30453                                    Romania  1991 20.12873875
## 30454                                    Romania  1991 20.12873875
## 30455                                    Romania  1991 20.12873875
## 30458                         Russian Federation  1991 14.29419623
## 30460                         Russian Federation  1991 14.29419623
## 30461                         Russian Federation  1991 14.29419623
## 30462                         Russian Federation  1991 14.29419623
## 30463                         Russian Federation  1991 14.29419623
## 30465                         Russian Federation  1991 14.29419623
## 30466                         Russian Federation  1991 14.29419623
## 30467                         Russian Federation  1991 14.29419623
## 30468                         Russian Federation  1991 14.29419623
## 30469                         Russian Federation  1991 14.29419623
## 30478                         Russian Federation  1991 14.29419623
## 30479                         Russian Federation  1991 14.29419623
## 30480                         Russian Federation  1991 14.29419623
## 30482                         Russian Federation  1991 14.29419623
## 30483                         Russian Federation  1991 14.29419623
## 30513                         Russian Federation  1991 14.29419623
## 30515                         Russian Federation  1991 14.29419623
## 30518                         Russian Federation  1991 14.29419623
## 30522                         Russian Federation  1991 14.29419623
## 30523                         Russian Federation  1991 14.29419623
## 30524                         Russian Federation  1991 14.29419623
## 30525                         Russian Federation  1991 14.29419623
## 30526                         Russian Federation  1991 14.29419623
## 30527                         Russian Federation  1991 14.29419623
## 30528                         Russian Federation  1991 14.29419623
## 30529                         Russian Federation  1991 14.29419623
## 30542                         Russian Federation  1991 14.29419623
## 30543                         Russian Federation  1991 14.29419623
## 30562                         Russian Federation  1991 14.29419623
## 30575                         Russian Federation  1991 14.29419623
## 30579                         Russian Federation  1991 14.29419623
## 30580                         Russian Federation  1991 14.29419623
## 30581                         Russian Federation  1991 14.29419623
## 30586                         Russian Federation  1991 14.29419623
## 30587                         Russian Federation  1991 14.29419623
## 30588                         Russian Federation  1991 14.29419623
## 30592                      Saint Kitts and Nevis  1991  4.34301963
## 30593                      Saint Kitts and Nevis  1991  4.34301963
## 30595                      Saint Kitts and Nevis  1991  4.34301963
## 30596                      Saint Kitts and Nevis  1991  4.34301963
## 30597                      Saint Kitts and Nevis  1991  4.34301963
## 30618                      Saint Kitts and Nevis  1991  4.34301963
## 30619                      Saint Kitts and Nevis  1991  4.34301963
## 30620                      Saint Kitts and Nevis  1991  4.34301963
## 30621                      Saint Kitts and Nevis  1991  4.34301963
## 30623                      Saint Kitts and Nevis  1991  4.34301963
## 30625                      Saint Kitts and Nevis  1991  4.34301963
## 30634                      Saint Kitts and Nevis  1991  4.34301963
## 30635                      Saint Kitts and Nevis  1991  4.34301963
## 30644                      Saint Kitts and Nevis  1991  4.34301963
## 30645                      Saint Kitts and Nevis  1991  4.34301963
## 30646                      Saint Kitts and Nevis  1991  4.34301963
## 30647                      Saint Kitts and Nevis  1991  4.34301963
## 30648                      Saint Kitts and Nevis  1991  4.34301963
## 30653                                Saint Lucia  1991 10.18976482
## 30654                                Saint Lucia  1991 10.18976482
## 30655                                Saint Lucia  1991 10.18976482
## 30656                                Saint Lucia  1991 10.18976482
## 30658                                Saint Lucia  1991 10.18976482
## 30659                                Saint Lucia  1991 10.18976482
## 30660                                Saint Lucia  1991 10.18976482
## 30662                                Saint Lucia  1991 10.18976482
## 30663                                Saint Lucia  1991 10.18976482
## 30664                                Saint Lucia  1991 10.18976482
## 30704                                Saint Lucia  1991 10.18976482
## 30706                                Saint Lucia  1991 10.18976482
## 30708                                Saint Lucia  1991 10.18976482
## 30711                                Saint Lucia  1991 10.18976482
## 30712                                Saint Lucia  1991 10.18976482
## 30713                                Saint Lucia  1991 10.18976482
## 30714                                Saint Lucia  1991 10.18976482
## 30715                                Saint Lucia  1991 10.18976482
## 30716                                Saint Lucia  1991 10.18976482
## 30717                                Saint Lucia  1991 10.18976482
## 30718                                Saint Lucia  1991 10.18976482
## 30719                                Saint Lucia  1991 10.18976482
## 30720                                Saint Lucia  1991 10.18976482
## 30732                                Saint Lucia  1991 10.18976482
## 30733                                Saint Lucia  1991 10.18976482
## 30765                                Saint Lucia  1991 10.18976482
## 30766                                Saint Lucia  1991 10.18976482
## 30767                                Saint Lucia  1991 10.18976482
## 30768                                Saint Lucia  1991 10.18976482
## 30770                                Saint Lucia  1991 10.18976482
## 30771                                Saint Lucia  1991 10.18976482
## 30772                                Saint Lucia  1991 10.18976482
## 30777                                Saint Lucia  1991 10.18976482
## 30778                                Saint Lucia  1991 10.18976482
## 30779                                Saint Lucia  1991 10.18976482
## 30783           Saint Vincent and the Grenadines  1991 14.27162670
## 30784           Saint Vincent and the Grenadines  1991 14.27162670
## 30785           Saint Vincent and the Grenadines  1991 14.27162670
## 30786           Saint Vincent and the Grenadines  1991 14.27162670
## 30788           Saint Vincent and the Grenadines  1991 14.27162670
## 30789           Saint Vincent and the Grenadines  1991 14.27162670
## 30790           Saint Vincent and the Grenadines  1991 14.27162670
## 30792           Saint Vincent and the Grenadines  1991 14.27162670
## 30823           Saint Vincent and the Grenadines  1991 14.27162670
## 30825           Saint Vincent and the Grenadines  1991 14.27162670
## 30826           Saint Vincent and the Grenadines  1991 14.27162670
## 30828           Saint Vincent and the Grenadines  1991 14.27162670
## 30829           Saint Vincent and the Grenadines  1991 14.27162670
## 30830           Saint Vincent and the Grenadines  1991 14.27162670
## 30831           Saint Vincent and the Grenadines  1991 14.27162670
## 30832           Saint Vincent and the Grenadines  1991 14.27162670
## 30833           Saint Vincent and the Grenadines  1991 14.27162670
## 30834           Saint Vincent and the Grenadines  1991 14.27162670
## 30835           Saint Vincent and the Grenadines  1991 14.27162670
## 30836           Saint Vincent and the Grenadines  1991 14.27162670
## 30837           Saint Vincent and the Grenadines  1991 14.27162670
## 30848           Saint Vincent and the Grenadines  1991 14.27162670
## 30849           Saint Vincent and the Grenadines  1991 14.27162670
## 30861           Saint Vincent and the Grenadines  1991 14.27162670
## 30862           Saint Vincent and the Grenadines  1991 14.27162670
## 30863           Saint Vincent and the Grenadines  1991 14.27162670
## 30864           Saint Vincent and the Grenadines  1991 14.27162670
## 30865           Saint Vincent and the Grenadines  1991 14.27162670
## 30866           Saint Vincent and the Grenadines  1991 14.27162670
## 30867           Saint Vincent and the Grenadines  1991 14.27162670
## 30868           Saint Vincent and the Grenadines  1991 14.27162670
## 30873           Saint Vincent and the Grenadines  1991 14.27162670
## 30874           Saint Vincent and the Grenadines  1991 14.27162670
## 30875           Saint Vincent and the Grenadines  1991 14.27162670
## 30877                               Saudi Arabia  1991  5.43281427
## 30879                               Saudi Arabia  1991  5.43281427
## 30880                               Saudi Arabia  1991  5.43281427
## 30881                               Saudi Arabia  1991  5.43281427
## 30882                               Saudi Arabia  1991  5.43281427
## 30884                               Saudi Arabia  1991  5.43281427
## 30885                               Saudi Arabia  1991  5.43281427
## 30886                               Saudi Arabia  1991  5.43281427
## 30887                               Saudi Arabia  1991  5.43281427
## 30888                               Saudi Arabia  1991  5.43281427
## 30897                               Saudi Arabia  1991  5.43281427
## 30898                               Saudi Arabia  1991  5.43281427
## 30899                               Saudi Arabia  1991  5.43281427
## 30901                               Saudi Arabia  1991  5.43281427
## 30902                               Saudi Arabia  1991  5.43281427
## 30930                               Saudi Arabia  1991  5.43281427
## 30932                               Saudi Arabia  1991  5.43281427
## 30934                               Saudi Arabia  1991  5.43281427
## 30936                               Saudi Arabia  1991  5.43281427
## 30937                               Saudi Arabia  1991  5.43281427
## 30938                               Saudi Arabia  1991  5.43281427
## 30939                               Saudi Arabia  1991  5.43281427
## 30940                               Saudi Arabia  1991  5.43281427
## 30941                               Saudi Arabia  1991  5.43281427
## 30942                               Saudi Arabia  1991  5.43281427
## 30944                               Saudi Arabia  1991  5.43281427
## 30945                               Saudi Arabia  1991  5.43281427
## 30946                               Saudi Arabia  1991  5.43281427
## 30947                               Saudi Arabia  1991  5.43281427
## 30959                               Saudi Arabia  1991  5.43281427
## 30960                               Saudi Arabia  1991  5.43281427
## 30971                               Saudi Arabia  1991  5.43281427
## 30981                               Saudi Arabia  1991  5.43281427
## 30982                               Saudi Arabia  1991  5.43281427
## 30983                               Saudi Arabia  1991  5.43281427
## 30984                               Saudi Arabia  1991  5.43281427
## 30986                               Saudi Arabia  1991  5.43281427
## 30987                               Saudi Arabia  1991  5.43281427
## 30988                               Saudi Arabia  1991  5.43281427
## 30992                               Saudi Arabia  1991  5.43281427
## 30993                               Saudi Arabia  1991  5.43281427
## 30994                               Saudi Arabia  1991  5.43281427
## 30997                                    Senegal  1991 20.27619356
## 30999                                    Senegal  1991 20.27619356
## 31000                                    Senegal  1991 20.27619356
## 31001                                    Senegal  1991 20.27619356
## 31002                                    Senegal  1991 20.27619356
## 31004                                    Senegal  1991 20.27619356
## 31005                                    Senegal  1991 20.27619356
## 31006                                    Senegal  1991 20.27619356
## 31007                                    Senegal  1991 20.27619356
## 31008                                    Senegal  1991 20.27619356
## 31009                                    Senegal  1991 20.27619356
## 31010                                    Senegal  1991 20.27619356
## 31017                                    Senegal  1991 20.27619356
## 31018                                    Senegal  1991 20.27619356
## 31019                                    Senegal  1991 20.27619356
## 31021                                    Senegal  1991 20.27619356
## 31022                                    Senegal  1991 20.27619356
## 31050                                    Senegal  1991 20.27619356
## 31052                                    Senegal  1991 20.27619356
## 31055                                    Senegal  1991 20.27619356
## 31058                                    Senegal  1991 20.27619356
## 31059                                    Senegal  1991 20.27619356
## 31060                                    Senegal  1991 20.27619356
## 31061                                    Senegal  1991 20.27619356
## 31062                                    Senegal  1991 20.27619356
## 31063                                    Senegal  1991 20.27619356
## 31064                                    Senegal  1991 20.27619356
## 31066                                    Senegal  1991 20.27619356
## 31067                                    Senegal  1991 20.27619356
## 31068                                    Senegal  1991 20.27619356
## 31069                                    Senegal  1991 20.27619356
## 31082                                    Senegal  1991 20.27619356
## 31083                                    Senegal  1991 20.27619356
## 31114                                    Senegal  1991 20.27619356
## 31127                                    Senegal  1991 20.27619356
## 31128                                    Senegal  1991 20.27619356
## 31129                                    Senegal  1991 20.27619356
## 31130                                    Senegal  1991 20.27619356
## 31131                                    Senegal  1991 20.27619356
## 31133                                    Senegal  1991 20.27619356
## 31134                                    Senegal  1991 20.27619356
## 31135                                    Senegal  1991 20.27619356
## 31140                                    Senegal  1991 20.27619356
## 31141                                    Senegal  1991 20.27619356
## 31142                                    Senegal  1991 20.27619356
## 31147                                 Seychelles  1991  6.12932487
## 31148                                 Seychelles  1991  6.12932487
## 31149                                 Seychelles  1991  6.12932487
## 31150                                 Seychelles  1991  6.12932487
## 31152                                 Seychelles  1991  6.12932487
## 31153                                 Seychelles  1991  6.12932487
## 31154                                 Seychelles  1991  6.12932487
## 31156                                 Seychelles  1991  6.12932487
## 31157                                 Seychelles  1991  6.12932487
## 31158                                 Seychelles  1991  6.12932487
## 31187                                 Seychelles  1991  6.12932487
## 31188                                 Seychelles  1991  6.12932487
## 31189                                 Seychelles  1991  6.12932487
## 31190                                 Seychelles  1991  6.12932487
## 31191                                 Seychelles  1991  6.12932487
## 31192                                 Seychelles  1991  6.12932487
## 31193                                 Seychelles  1991  6.12932487
## 31194                                 Seychelles  1991  6.12932487
## 31195                                 Seychelles  1991  6.12932487
## 31196                                 Seychelles  1991  6.12932487
## 31208                                 Seychelles  1991  6.12932487
## 31209                                 Seychelles  1991  6.12932487
## 31231                                 Seychelles  1991  6.12932487
## 31232                                 Seychelles  1991  6.12932487
## 31233                                 Seychelles  1991  6.12932487
## 31234                                 Seychelles  1991  6.12932487
## 31235                                 Seychelles  1991  6.12932487
## 31238                               Sierra Leone  1991 38.82373446
## 31240                               Sierra Leone  1991 38.82373446
## 31241                               Sierra Leone  1991 38.82373446
## 31242                               Sierra Leone  1991 38.82373446
## 31243                               Sierra Leone  1991 38.82373446
## 31245                               Sierra Leone  1991 38.82373446
## 31246                               Sierra Leone  1991 38.82373446
## 31247                               Sierra Leone  1991 38.82373446
## 31248                               Sierra Leone  1991 38.82373446
## 31249                               Sierra Leone  1991 38.82373446
## 31258                               Sierra Leone  1991 38.82373446
## 31259                               Sierra Leone  1991 38.82373446
## 31260                               Sierra Leone  1991 38.82373446
## 31262                               Sierra Leone  1991 38.82373446
## 31263                               Sierra Leone  1991 38.82373446
## 31290                               Sierra Leone  1991 38.82373446
## 31292                               Sierra Leone  1991 38.82373446
## 31296                               Sierra Leone  1991 38.82373446
## 31299                               Sierra Leone  1991 38.82373446
## 31302                               Sierra Leone  1991 38.82373446
## 31303                               Sierra Leone  1991 38.82373446
## 31304                               Sierra Leone  1991 38.82373446
## 31305                               Sierra Leone  1991 38.82373446
## 31307                               Sierra Leone  1991 38.82373446
## 31308                               Sierra Leone  1991 38.82373446
## 31309                               Sierra Leone  1991 38.82373446
## 31310                               Sierra Leone  1991 38.82373446
## 31323                               Sierra Leone  1991 38.82373446
## 31324                               Sierra Leone  1991 38.82373446
## 31354                               Sierra Leone  1991 38.82373446
## 31366                               Sierra Leone  1991 38.82373446
## 31367                               Sierra Leone  1991 38.82373446
## 31368                               Sierra Leone  1991 38.82373446
## 31369                               Sierra Leone  1991 38.82373446
## 31370                               Sierra Leone  1991 38.82373446
## 31372                               Sierra Leone  1991 38.82373446
## 31373                               Sierra Leone  1991 38.82373446
## 31374                               Sierra Leone  1991 38.82373446
## 31379                               Sierra Leone  1991 38.82373446
## 31380                               Sierra Leone  1991 38.82373446
## 31381                               Sierra Leone  1991 38.82373446
## 31384                                  Singapore  1991  0.26128105
## 31386                                  Singapore  1991  0.26128105
## 31387                                  Singapore  1991  0.26128105
## 31388                                  Singapore  1991  0.26128105
## 31389                                  Singapore  1991  0.26128105
## 31391                                  Singapore  1991  0.26128105
## 31392                                  Singapore  1991  0.26128105
## 31393                                  Singapore  1991  0.26128105
## 31394                                  Singapore  1991  0.26128105
## 31395                                  Singapore  1991  0.26128105
## 31402                                  Singapore  1991  0.26128105
## 31403                                  Singapore  1991  0.26128105
## 31404                                  Singapore  1991  0.26128105
## 31406                                  Singapore  1991  0.26128105
## 31407                                  Singapore  1991  0.26128105
## 31434                                  Singapore  1991  0.26128105
## 31436                                  Singapore  1991  0.26128105
## 31439                                  Singapore  1991  0.26128105
## 31441                                  Singapore  1991  0.26128105
## 31442                                  Singapore  1991  0.26128105
## 31443                                  Singapore  1991  0.26128105
## 31444                                  Singapore  1991  0.26128105
## 31445                                  Singapore  1991  0.26128105
## 31446                                  Singapore  1991  0.26128105
## 31447                                  Singapore  1991  0.26128105
## 31448                                  Singapore  1991  0.26128105
## 31449                                  Singapore  1991  0.26128105
## 31450                                  Singapore  1991  0.26128105
## 31462                                  Singapore  1991  0.26128105
## 31463                                  Singapore  1991  0.26128105
## 31479                                  Singapore  1991  0.26128105
## 31488                                  Singapore  1991  0.26128105
## 31489                                  Singapore  1991  0.26128105
## 31490                                  Singapore  1991  0.26128105
## 31491                                  Singapore  1991  0.26128105
## 31492                                  Singapore  1991  0.26128105
## 31493                                  Singapore  1991  0.26128105
## 31494                                  Singapore  1991  0.26128105
## 31499                                  Singapore  1991  0.26128105
## 31500                                  Singapore  1991  0.26128105
## 31501                                  Singapore  1991  0.26128105
## 31506                            Solomon Islands  1991 46.97434027
## 31507                            Solomon Islands  1991 46.97434027
## 31508                            Solomon Islands  1991 46.97434027
## 31509                            Solomon Islands  1991 46.97434027
## 31511                            Solomon Islands  1991 46.97434027
## 31512                            Solomon Islands  1991 46.97434027
## 31513                            Solomon Islands  1991 46.97434027
## 31515                            Solomon Islands  1991 46.97434027
## 31516                            Solomon Islands  1991 46.97434027
## 31517                            Solomon Islands  1991 46.97434027
## 31545                            Solomon Islands  1991 46.97434027
## 31547                            Solomon Islands  1991 46.97434027
## 31551                            Solomon Islands  1991 46.97434027
## 31554                            Solomon Islands  1991 46.97434027
## 31555                            Solomon Islands  1991 46.97434027
## 31556                            Solomon Islands  1991 46.97434027
## 31557                            Solomon Islands  1991 46.97434027
## 31558                            Solomon Islands  1991 46.97434027
## 31559                            Solomon Islands  1991 46.97434027
## 31561                            Solomon Islands  1991 46.97434027
## 31562                            Solomon Islands  1991 46.97434027
## 31563                            Solomon Islands  1991 46.97434027
## 31564                            Solomon Islands  1991 46.97434027
## 31577                            Solomon Islands  1991 46.97434027
## 31578                            Solomon Islands  1991 46.97434027
## 31595                            Solomon Islands  1991 46.97434027
## 31604                            Solomon Islands  1991 46.97434027
## 31605                            Solomon Islands  1991 46.97434027
## 31606                            Solomon Islands  1991 46.97434027
## 31607                            Solomon Islands  1991 46.97434027
## 31610                            Solomon Islands  1991 46.97434027
## 31611                            Solomon Islands  1991 46.97434027
## 31612                            Solomon Islands  1991 46.97434027
## 31617                            Solomon Islands  1991 46.97434027
## 31618                            Solomon Islands  1991 46.97434027
## 31619                            Solomon Islands  1991 46.97434027
## 31621                               South Africa  1991  4.54997577
## 31623                               South Africa  1991  4.54997577
## 31624                               South Africa  1991  4.54997577
## 31625                               South Africa  1991  4.54997577
## 31626                               South Africa  1991  4.54997577
## 31628                               South Africa  1991  4.54997577
## 31629                               South Africa  1991  4.54997577
## 31630                               South Africa  1991  4.54997577
## 31631                               South Africa  1991  4.54997577
## 31632                               South Africa  1991  4.54997577
## 31633                               South Africa  1991  4.54997577
## 31634                               South Africa  1991  4.54997577
## 31641                               South Africa  1991  4.54997577
## 31642                               South Africa  1991  4.54997577
## 31643                               South Africa  1991  4.54997577
## 31645                               South Africa  1991  4.54997577
## 31646                               South Africa  1991  4.54997577
## 31676                               South Africa  1991  4.54997577
## 31678                               South Africa  1991  4.54997577
## 31681                               South Africa  1991  4.54997577
## 31684                               South Africa  1991  4.54997577
## 31685                               South Africa  1991  4.54997577
## 31686                               South Africa  1991  4.54997577
## 31687                               South Africa  1991  4.54997577
## 31688                               South Africa  1991  4.54997577
## 31689                               South Africa  1991  4.54997577
## 31690                               South Africa  1991  4.54997577
## 31692                               South Africa  1991  4.54997577
## 31693                               South Africa  1991  4.54997577
## 31694                               South Africa  1991  4.54997577
## 31695                               South Africa  1991  4.54997577
## 31708                               South Africa  1991  4.54997577
## 31709                               South Africa  1991  4.54997577
## 31740                               South Africa  1991  4.54997577
## 31753                               South Africa  1991  4.54997577
## 31754                               South Africa  1991  4.54997577
## 31756                               South Africa  1991  4.54997577
## 31757                               South Africa  1991  4.54997577
## 31758                               South Africa  1991  4.54997577
## 31759                               South Africa  1991  4.54997577
## 31760                               South Africa  1991  4.54997577
## 31765                               South Africa  1991  4.54997577
## 31766                               South Africa  1991  4.54997577
## 31767                               South Africa  1991  4.54997577
## 31770                                  Sri Lanka  1991 27.08797056
## 31772                                  Sri Lanka  1991 27.08797056
## 31773                                  Sri Lanka  1991 27.08797056
## 31774                                  Sri Lanka  1991 27.08797056
## 31775                                  Sri Lanka  1991 27.08797056
## 31777                                  Sri Lanka  1991 27.08797056
## 31778                                  Sri Lanka  1991 27.08797056
## 31779                                  Sri Lanka  1991 27.08797056
## 31780                                  Sri Lanka  1991 27.08797056
## 31781                                  Sri Lanka  1991 27.08797056
## 31782                                  Sri Lanka  1991 27.08797056
## 31783                                  Sri Lanka  1991 27.08797056
## 31790                                  Sri Lanka  1991 27.08797056
## 31791                                  Sri Lanka  1991 27.08797056
## 31792                                  Sri Lanka  1991 27.08797056
## 31794                                  Sri Lanka  1991 27.08797056
## 31795                                  Sri Lanka  1991 27.08797056
## 31825                                  Sri Lanka  1991 27.08797056
## 31827                                  Sri Lanka  1991 27.08797056
## 31830                                  Sri Lanka  1991 27.08797056
## 31833                                  Sri Lanka  1991 27.08797056
## 31834                                  Sri Lanka  1991 27.08797056
## 31835                                  Sri Lanka  1991 27.08797056
## 31836                                  Sri Lanka  1991 27.08797056
## 31837                                  Sri Lanka  1991 27.08797056
## 31838                                  Sri Lanka  1991 27.08797056
## 31839                                  Sri Lanka  1991 27.08797056
## 31841                                  Sri Lanka  1991 27.08797056
## 31842                                  Sri Lanka  1991 27.08797056
## 31843                                  Sri Lanka  1991 27.08797056
## 31844                                  Sri Lanka  1991 27.08797056
## 31857                                  Sri Lanka  1991 27.08797056
## 31858                                  Sri Lanka  1991 27.08797056
## 31876                                  Sri Lanka  1991 27.08797056
## 31889                                  Sri Lanka  1991 27.08797056
## 31890                                  Sri Lanka  1991 27.08797056
## 31891                                  Sri Lanka  1991 27.08797056
## 31892                                  Sri Lanka  1991 27.08797056
## 31893                                  Sri Lanka  1991 27.08797056
## 31894                                  Sri Lanka  1991 27.08797056
## 31895                                  Sri Lanka  1991 27.08797056
## 31896                                  Sri Lanka  1991 27.08797056
## 31901                                  Sri Lanka  1991 27.08797056
## 31902                                  Sri Lanka  1991 27.08797056
## 31903                                  Sri Lanka  1991 27.08797056
## 31906                                      Sudan  1991 41.77936750
## 31908                                      Sudan  1991 41.77936750
## 31909                                      Sudan  1991 41.77936750
## 31910                                      Sudan  1991 41.77936750
## 31911                                      Sudan  1991 41.77936750
## 31913                                      Sudan  1991 41.77936750
## 31914                                      Sudan  1991 41.77936750
## 31915                                      Sudan  1991 41.77936750
## 31916                                      Sudan  1991 41.77936750
## 31917                                      Sudan  1991 41.77936750
## 31926                                      Sudan  1991 41.77936750
## 31927                                      Sudan  1991 41.77936750
## 31928                                      Sudan  1991 41.77936750
## 31930                                      Sudan  1991 41.77936750
## 31931                                      Sudan  1991 41.77936750
## 31961                                      Sudan  1991 41.77936750
## 31963                                      Sudan  1991 41.77936750
## 31966                                      Sudan  1991 41.77936750
## 31969                                      Sudan  1991 41.77936750
## 31970                                      Sudan  1991 41.77936750
## 31971                                      Sudan  1991 41.77936750
## 31972                                      Sudan  1991 41.77936750
## 31973                                      Sudan  1991 41.77936750
## 31974                                      Sudan  1991 41.77936750
## 31975                                      Sudan  1991 41.77936750
## 31977                                      Sudan  1991 41.77936750
## 31978                                      Sudan  1991 41.77936750
## 31979                                      Sudan  1991 41.77936750
## 31980                                      Sudan  1991 41.77936750
## 31993                                      Sudan  1991 41.77936750
## 31994                                      Sudan  1991 41.77936750
## 32025                                      Sudan  1991 41.77936750
## 32035                                      Sudan  1991 41.77936750
## 32036                                      Sudan  1991 41.77936750
## 32037                                      Sudan  1991 41.77936750
## 32038                                      Sudan  1991 41.77936750
## 32039                                      Sudan  1991 41.77936750
## 32041                                      Sudan  1991 41.77936750
## 32042                                      Sudan  1991 41.77936750
## 32043                                      Sudan  1991 41.77936750
## 32048                                      Sudan  1991 41.77936750
## 32049                                      Sudan  1991 41.77936750
## 32050                                      Sudan  1991 41.77936750
## 32054                                   Suriname  1991  8.89840054
## 32055                                   Suriname  1991  8.89840054
## 32056                                   Suriname  1991  8.89840054
## 32057                                   Suriname  1991  8.89840054
## 32059                                   Suriname  1991  8.89840054
## 32060                                   Suriname  1991  8.89840054
## 32061                                   Suriname  1991  8.89840054
## 32063                                   Suriname  1991  8.89840054
## 32064                                   Suriname  1991  8.89840054
## 32065                                   Suriname  1991  8.89840054
## 32104                                   Suriname  1991  8.89840054
## 32106                                   Suriname  1991  8.89840054
## 32108                                   Suriname  1991  8.89840054
## 32111                                   Suriname  1991  8.89840054
## 32112                                   Suriname  1991  8.89840054
## 32113                                   Suriname  1991  8.89840054
## 32114                                   Suriname  1991  8.89840054
## 32115                                   Suriname  1991  8.89840054
## 32116                                   Suriname  1991  8.89840054
## 32117                                   Suriname  1991  8.89840054
## 32119                                   Suriname  1991  8.89840054
## 32120                                   Suriname  1991  8.89840054
## 32121                                   Suriname  1991  8.89840054
## 32122                                   Suriname  1991  8.89840054
## 32135                                   Suriname  1991  8.89840054
## 32136                                   Suriname  1991  8.89840054
## 32161                                   Suriname  1991  8.89840054
## 32170                                   Suriname  1991  8.89840054
## 32171                                   Suriname  1991  8.89840054
## 32172                                   Suriname  1991  8.89840054
## 32174                                   Suriname  1991  8.89840054
## 32176                                   Suriname  1991  8.89840054
## 32177                                   Suriname  1991  8.89840054
## 32178                                   Suriname  1991  8.89840054
## 32182                                   Suriname  1991  8.89840054
## 32183                                   Suriname  1991  8.89840054
## 32184                                   Suriname  1991  8.89840054
## 32186                                     Sweden  1991  3.05849256
## 32188                                     Sweden  1991  3.05849256
## 32189                                     Sweden  1991  3.05849256
## 32190                                     Sweden  1991  3.05849256
## 32191                                     Sweden  1991  3.05849256
## 32193                                     Sweden  1991  3.05849256
## 32194                                     Sweden  1991  3.05849256
## 32195                                     Sweden  1991  3.05849256
## 32196                                     Sweden  1991  3.05849256
## 32197                                     Sweden  1991  3.05849256
## 32198                                     Sweden  1991  3.05849256
## 32199                                     Sweden  1991  3.05849256
## 32205                                     Sweden  1991  3.05849256
## 32206                                     Sweden  1991  3.05849256
## 32207                                     Sweden  1991  3.05849256
## 32209                                     Sweden  1991  3.05849256
## 32210                                     Sweden  1991  3.05849256
## 32239                                     Sweden  1991  3.05849256
## 32241                                     Sweden  1991  3.05849256
## 32245                                     Sweden  1991  3.05849256
## 32247                                     Sweden  1991  3.05849256
## 32248                                     Sweden  1991  3.05849256
## 32249                                     Sweden  1991  3.05849256
## 32250                                     Sweden  1991  3.05849256
## 32251                                     Sweden  1991  3.05849256
## 32252                                     Sweden  1991  3.05849256
## 32253                                     Sweden  1991  3.05849256
## 32254                                     Sweden  1991  3.05849256
## 32255                                     Sweden  1991  3.05849256
## 32256                                     Sweden  1991  3.05849256
## 32257                                     Sweden  1991  3.05849256
## 32270                                     Sweden  1991  3.05849256
## 32271                                     Sweden  1991  3.05849256
## 32301                                     Sweden  1991  3.05849256
## 32302                                     Sweden  1991  3.05849256
## 32303                                     Sweden  1991  3.05849256
## 32304                                     Sweden  1991  3.05849256
## 32305                                     Sweden  1991  3.05849256
## 32306                                     Sweden  1991  3.05849256
## 32307                                     Sweden  1991  3.05849256
## 32312                                     Sweden  1991  3.05849256
## 32313                                     Sweden  1991  3.05849256
## 32314                                     Sweden  1991  3.05849256
## 32317                                Switzerland  1991  2.08019451
## 32319                                Switzerland  1991  2.08019451
## 32320                                Switzerland  1991  2.08019451
## 32321                                Switzerland  1991  2.08019451
## 32322                                Switzerland  1991  2.08019451
## 32324                                Switzerland  1991  2.08019451
## 32325                                Switzerland  1991  2.08019451
## 32326                                Switzerland  1991  2.08019451
## 32327                                Switzerland  1991  2.08019451
## 32328                                Switzerland  1991  2.08019451
## 32329                                Switzerland  1991  2.08019451
## 32330                                Switzerland  1991  2.08019451
## 32336                                Switzerland  1991  2.08019451
## 32337                                Switzerland  1991  2.08019451
## 32338                                Switzerland  1991  2.08019451
## 32340                                Switzerland  1991  2.08019451
## 32341                                Switzerland  1991  2.08019451
## 32370                                Switzerland  1991  2.08019451
## 32372                                Switzerland  1991  2.08019451
## 32374                                Switzerland  1991  2.08019451
## 32376                                Switzerland  1991  2.08019451
## 32377                                Switzerland  1991  2.08019451
## 32378                                Switzerland  1991  2.08019451
## 32379                                Switzerland  1991  2.08019451
## 32380                                Switzerland  1991  2.08019451
## 32381                                Switzerland  1991  2.08019451
## 32382                                Switzerland  1991  2.08019451
## 32383                                Switzerland  1991  2.08019451
## 32384                                Switzerland  1991  2.08019451
## 32385                                Switzerland  1991  2.08019451
## 32398                                Switzerland  1991  2.08019451
## 32399                                Switzerland  1991  2.08019451
## 32428                                Switzerland  1991  2.08019451
## 32429                                Switzerland  1991  2.08019451
## 32430                                Switzerland  1991  2.08019451
## 32431                                Switzerland  1991  2.08019451
## 32432                                Switzerland  1991  2.08019451
## 32433                                Switzerland  1991  2.08019451
## 32434                                Switzerland  1991  2.08019451
## 32439                                Switzerland  1991  2.08019451
## 32440                                Switzerland  1991  2.08019451
## 32441                                Switzerland  1991  2.08019451
## 32444                       Syrian Arab Republic  1991 32.84003134
## 32446                       Syrian Arab Republic  1991 32.84003134
## 32447                       Syrian Arab Republic  1991 32.84003134
## 32448                       Syrian Arab Republic  1991 32.84003134
## 32449                       Syrian Arab Republic  1991 32.84003134
## 32451                       Syrian Arab Republic  1991 32.84003134
## 32452                       Syrian Arab Republic  1991 32.84003134
## 32453                       Syrian Arab Republic  1991 32.84003134
## 32454                       Syrian Arab Republic  1991 32.84003134
## 32455                       Syrian Arab Republic  1991 32.84003134
## 32456                       Syrian Arab Republic  1991 32.84003134
## 32457                       Syrian Arab Republic  1991 32.84003134
## 32463                       Syrian Arab Republic  1991 32.84003134
## 32464                       Syrian Arab Republic  1991 32.84003134
## 32465                       Syrian Arab Republic  1991 32.84003134
## 32467                       Syrian Arab Republic  1991 32.84003134
## 32468                       Syrian Arab Republic  1991 32.84003134
## 32496                       Syrian Arab Republic  1991 32.84003134
## 32498                       Syrian Arab Republic  1991 32.84003134
## 32501                       Syrian Arab Republic  1991 32.84003134
## 32504                       Syrian Arab Republic  1991 32.84003134
## 32505                       Syrian Arab Republic  1991 32.84003134
## 32506                       Syrian Arab Republic  1991 32.84003134
## 32507                       Syrian Arab Republic  1991 32.84003134
## 32508                       Syrian Arab Republic  1991 32.84003134
## 32509                       Syrian Arab Republic  1991 32.84003134
## 32510                       Syrian Arab Republic  1991 32.84003134
## 32511                       Syrian Arab Republic  1991 32.84003134
## 32512                       Syrian Arab Republic  1991 32.84003134
## 32513                       Syrian Arab Republic  1991 32.84003134
## 32524                       Syrian Arab Republic  1991 32.84003134
## 32525                       Syrian Arab Republic  1991 32.84003134
## 32551                       Syrian Arab Republic  1991 32.84003134
## 32558                       Syrian Arab Republic  1991 32.84003134
## 32559                       Syrian Arab Republic  1991 32.84003134
## 32560                       Syrian Arab Republic  1991 32.84003134
## 32561                       Syrian Arab Republic  1991 32.84003134
## 32562                       Syrian Arab Republic  1991 32.84003134
## 32563                       Syrian Arab Republic  1991 32.84003134
## 32564                       Syrian Arab Republic  1991 32.84003134
## 32565                       Syrian Arab Republic  1991 32.84003134
## 32570                       Syrian Arab Republic  1991 32.84003134
## 32571                       Syrian Arab Republic  1991 32.84003134
## 32572                       Syrian Arab Republic  1991 32.84003134
## 32574                                 Tajikistan  1991 36.63663664
## 32576                                 Tajikistan  1991 36.63663664
## 32577                                 Tajikistan  1991 36.63663664
## 32578                                 Tajikistan  1991 36.63663664
## 32579                                 Tajikistan  1991 36.63663664
## 32581                                 Tajikistan  1991 36.63663664
## 32582                                 Tajikistan  1991 36.63663664
## 32583                                 Tajikistan  1991 36.63663664
## 32584                                 Tajikistan  1991 36.63663664
## 32585                                 Tajikistan  1991 36.63663664
## 32594                                 Tajikistan  1991 36.63663664
## 32595                                 Tajikistan  1991 36.63663664
## 32596                                 Tajikistan  1991 36.63663664
## 32598                                 Tajikistan  1991 36.63663664
## 32599                                 Tajikistan  1991 36.63663664
## 32627                                 Tajikistan  1991 36.63663664
## 32629                                 Tajikistan  1991 36.63663664
## 32633                                 Tajikistan  1991 36.63663664
## 32636                                 Tajikistan  1991 36.63663664
## 32639                                 Tajikistan  1991 36.63663664
## 32640                                 Tajikistan  1991 36.63663664
## 32641                                 Tajikistan  1991 36.63663664
## 32642                                 Tajikistan  1991 36.63663664
## 32644                                 Tajikistan  1991 36.63663664
## 32645                                 Tajikistan  1991 36.63663664
## 32646                                 Tajikistan  1991 36.63663664
## 32647                                 Tajikistan  1991 36.63663664
## 32660                                 Tajikistan  1991 36.63663664
## 32661                                 Tajikistan  1991 36.63663664
## 32692                                 Tajikistan  1991 36.63663664
## 32705                                 Tajikistan  1991 36.63663664
## 32710                                 Tajikistan  1991 36.63663664
## 32711                                 Tajikistan  1991 36.63663664
## 32712                                 Tajikistan  1991 36.63663664
## 32717                                 Tajikistan  1991 36.63663664
## 32718                                 Tajikistan  1991 36.63663664
## 32719                                 Tajikistan  1991 36.63663664
## 32722                                   Thailand  1991 12.64982660
## 32724                                   Thailand  1991 12.64982660
## 32725                                   Thailand  1991 12.64982660
## 32726                                   Thailand  1991 12.64982660
## 32727                                   Thailand  1991 12.64982660
## 32729                                   Thailand  1991 12.64982660
## 32730                                   Thailand  1991 12.64982660
## 32731                                   Thailand  1991 12.64982660
## 32732                                   Thailand  1991 12.64982660
## 32733                                   Thailand  1991 12.64982660
## 32734                                   Thailand  1991 12.64982660
## 32735                                   Thailand  1991 12.64982660
## 32742                                   Thailand  1991 12.64982660
## 32743                                   Thailand  1991 12.64982660
## 32744                                   Thailand  1991 12.64982660
## 32746                                   Thailand  1991 12.64982660
## 32747                                   Thailand  1991 12.64982660
## 32781                                   Thailand  1991 12.64982660
## 32783                                   Thailand  1991 12.64982660
## 32786                                   Thailand  1991 12.64982660
## 32789                                   Thailand  1991 12.64982660
## 32790                                   Thailand  1991 12.64982660
## 32791                                   Thailand  1991 12.64982660
## 32792                                   Thailand  1991 12.64982660
## 32793                                   Thailand  1991 12.64982660
## 32794                                   Thailand  1991 12.64982660
## 32795                                   Thailand  1991 12.64982660
## 32797                                   Thailand  1991 12.64982660
## 32798                                   Thailand  1991 12.64982660
## 32799                                   Thailand  1991 12.64982660
## 32800                                   Thailand  1991 12.64982660
## 32813                                   Thailand  1991 12.64982660
## 32814                                   Thailand  1991 12.64982660
## 32846                                   Thailand  1991 12.64982660
## 32859                                   Thailand  1991 12.64982660
## 32860                                   Thailand  1991 12.64982660
## 32861                                   Thailand  1991 12.64982660
## 32862                                   Thailand  1991 12.64982660
## 32863                                   Thailand  1991 12.64982660
## 32864                                   Thailand  1991 12.64982660
## 32865                                   Thailand  1991 12.64982660
## 32866                                   Thailand  1991 12.64982660
## 32871                                   Thailand  1991 12.64982660
## 32872                                   Thailand  1991 12.64982660
## 32873                                   Thailand  1991 12.64982660
## 32878  The former Yugoslav Republic of Macedonia  1991 13.63873213
## 32879  The former Yugoslav Republic of Macedonia  1991 13.63873213
## 32880  The former Yugoslav Republic of Macedonia  1991 13.63873213
## 32881  The former Yugoslav Republic of Macedonia  1991 13.63873213
## 32883  The former Yugoslav Republic of Macedonia  1991 13.63873213
## 32884  The former Yugoslav Republic of Macedonia  1991 13.63873213
## 32885  The former Yugoslav Republic of Macedonia  1991 13.63873213
## 32887  The former Yugoslav Republic of Macedonia  1991 13.63873213
## 32888  The former Yugoslav Republic of Macedonia  1991 13.63873213
## 32889  The former Yugoslav Republic of Macedonia  1991 13.63873213
## 32932  The former Yugoslav Republic of Macedonia  1991 13.63873213
## 32934  The former Yugoslav Republic of Macedonia  1991 13.63873213
## 32937  The former Yugoslav Republic of Macedonia  1991 13.63873213
## 32940  The former Yugoslav Republic of Macedonia  1991 13.63873213
## 32943  The former Yugoslav Republic of Macedonia  1991 13.63873213
## 32944  The former Yugoslav Republic of Macedonia  1991 13.63873213
## 32945  The former Yugoslav Republic of Macedonia  1991 13.63873213
## 32946  The former Yugoslav Republic of Macedonia  1991 13.63873213
## 32947  The former Yugoslav Republic of Macedonia  1991 13.63873213
## 32948  The former Yugoslav Republic of Macedonia  1991 13.63873213
## 32949  The former Yugoslav Republic of Macedonia  1991 13.63873213
## 32950  The former Yugoslav Republic of Macedonia  1991 13.63873213
## 32963  The former Yugoslav Republic of Macedonia  1991 13.63873213
## 32964  The former Yugoslav Republic of Macedonia  1991 13.63873213
## 32996  The former Yugoslav Republic of Macedonia  1991 13.63873213
## 33007  The former Yugoslav Republic of Macedonia  1991 13.63873213
## 33013  The former Yugoslav Republic of Macedonia  1991 13.63873213
## 33014  The former Yugoslav Republic of Macedonia  1991 13.63873213
## 33015  The former Yugoslav Republic of Macedonia  1991 13.63873213
## 33020  The former Yugoslav Republic of Macedonia  1991 13.63873213
## 33021  The former Yugoslav Republic of Macedonia  1991 13.63873213
## 33022  The former Yugoslav Republic of Macedonia  1991 13.63873213
## 33025                                       Togo  1991 32.82417093
## 33027                                       Togo  1991 32.82417093
## 33028                                       Togo  1991 32.82417093
## 33029                                       Togo  1991 32.82417093
## 33030                                       Togo  1991 32.82417093
## 33032                                       Togo  1991 32.82417093
## 33033                                       Togo  1991 32.82417093
## 33034                                       Togo  1991 32.82417093
## 33035                                       Togo  1991 32.82417093
## 33036                                       Togo  1991 32.82417093
## 33037                                       Togo  1991 32.82417093
## 33038                                       Togo  1991 32.82417093
## 33045                                       Togo  1991 32.82417093
## 33046                                       Togo  1991 32.82417093
## 33047                                       Togo  1991 32.82417093
## 33049                                       Togo  1991 32.82417093
## 33050                                       Togo  1991 32.82417093
## 33077                                       Togo  1991 32.82417093
## 33079                                       Togo  1991 32.82417093
## 33083                                       Togo  1991 32.82417093
## 33086                                       Togo  1991 32.82417093
## 33087                                       Togo  1991 32.82417093
## 33088                                       Togo  1991 32.82417093
## 33089                                       Togo  1991 32.82417093
## 33090                                       Togo  1991 32.82417093
## 33091                                       Togo  1991 32.82417093
## 33092                                       Togo  1991 32.82417093
## 33094                                       Togo  1991 32.82417093
## 33095                                       Togo  1991 32.82417093
## 33096                                       Togo  1991 32.82417093
## 33097                                       Togo  1991 32.82417093
## 33110                                       Togo  1991 32.82417093
## 33111                                       Togo  1991 32.82417093
## 33142                                       Togo  1991 32.82417093
## 33154                                       Togo  1991 32.82417093
## 33155                                       Togo  1991 32.82417093
## 33156                                       Togo  1991 32.82417093
## 33157                                       Togo  1991 32.82417093
## 33158                                       Togo  1991 32.82417093
## 33160                                       Togo  1991 32.82417093
## 33161                                       Togo  1991 32.82417093
## 33162                                       Togo  1991 32.82417093
## 33167                                       Togo  1991 32.82417093
## 33168                                       Togo  1991 32.82417093
## 33169                                       Togo  1991 32.82417093
## 33172                                      Tonga  1991 36.84697699
## 33174                                      Tonga  1991 36.84697699
## 33175                                      Tonga  1991 36.84697699
## 33176                                      Tonga  1991 36.84697699
## 33177                                      Tonga  1991 36.84697699
## 33179                                      Tonga  1991 36.84697699
## 33180                                      Tonga  1991 36.84697699
## 33181                                      Tonga  1991 36.84697699
## 33182                                      Tonga  1991 36.84697699
## 33183                                      Tonga  1991 36.84697699
## 33192                                      Tonga  1991 36.84697699
## 33193                                      Tonga  1991 36.84697699
## 33194                                      Tonga  1991 36.84697699
## 33196                                      Tonga  1991 36.84697699
## 33197                                      Tonga  1991 36.84697699
## 33222                                      Tonga  1991 36.84697699
## 33224                                      Tonga  1991 36.84697699
## 33228                                      Tonga  1991 36.84697699
## 33231                                      Tonga  1991 36.84697699
## 33232                                      Tonga  1991 36.84697699
## 33233                                      Tonga  1991 36.84697699
## 33234                                      Tonga  1991 36.84697699
## 33235                                      Tonga  1991 36.84697699
## 33236                                      Tonga  1991 36.84697699
## 33237                                      Tonga  1991 36.84697699
## 33238                                      Tonga  1991 36.84697699
## 33239                                      Tonga  1991 36.84697699
## 33240                                      Tonga  1991 36.84697699
## 33253                                      Tonga  1991 36.84697699
## 33254                                      Tonga  1991 36.84697699
## 33274                                      Tonga  1991 36.84697699
## 33275                                      Tonga  1991 36.84697699
## 33276                                      Tonga  1991 36.84697699
## 33277                                      Tonga  1991 36.84697699
## 33278                                      Tonga  1991 36.84697699
## 33279                                      Tonga  1991 36.84697699
## 33280                                      Tonga  1991 36.84697699
## 33281                                      Tonga  1991 36.84697699
## 33286                                      Tonga  1991 36.84697699
## 33287                                      Tonga  1991 36.84697699
## 33288                                      Tonga  1991 36.84697699
## 33290                        Trinidad and Tobago  1991  2.65347212
## 33292                        Trinidad and Tobago  1991  2.65347212
## 33293                        Trinidad and Tobago  1991  2.65347212
## 33294                        Trinidad and Tobago  1991  2.65347212
## 33295                        Trinidad and Tobago  1991  2.65347212
## 33297                        Trinidad and Tobago  1991  2.65347212
## 33298                        Trinidad and Tobago  1991  2.65347212
## 33299                        Trinidad and Tobago  1991  2.65347212
## 33300                        Trinidad and Tobago  1991  2.65347212
## 33301                        Trinidad and Tobago  1991  2.65347212
## 33302                        Trinidad and Tobago  1991  2.65347212
## 33303                        Trinidad and Tobago  1991  2.65347212
## 33310                        Trinidad and Tobago  1991  2.65347212
## 33311                        Trinidad and Tobago  1991  2.65347212
## 33312                        Trinidad and Tobago  1991  2.65347212
## 33314                        Trinidad and Tobago  1991  2.65347212
## 33315                        Trinidad and Tobago  1991  2.65347212
## 33347                        Trinidad and Tobago  1991  2.65347212
## 33349                        Trinidad and Tobago  1991  2.65347212
## 33354                        Trinidad and Tobago  1991  2.65347212
## 33357                        Trinidad and Tobago  1991  2.65347212
## 33358                        Trinidad and Tobago  1991  2.65347212
## 33359                        Trinidad and Tobago  1991  2.65347212
## 33360                        Trinidad and Tobago  1991  2.65347212
## 33361                        Trinidad and Tobago  1991  2.65347212
## 33362                        Trinidad and Tobago  1991  2.65347212
## 33363                        Trinidad and Tobago  1991  2.65347212
## 33364                        Trinidad and Tobago  1991  2.65347212
## 33365                        Trinidad and Tobago  1991  2.65347212
## 33366                        Trinidad and Tobago  1991  2.65347212
## 33367                        Trinidad and Tobago  1991  2.65347212
## 33379                        Trinidad and Tobago  1991  2.65347212
## 33380                        Trinidad and Tobago  1991  2.65347212
## 33406                        Trinidad and Tobago  1991  2.65347212
## 33414                        Trinidad and Tobago  1991  2.65347212
## 33415                        Trinidad and Tobago  1991  2.65347212
## 33416                        Trinidad and Tobago  1991  2.65347212
## 33417                        Trinidad and Tobago  1991  2.65347212
## 33418                        Trinidad and Tobago  1991  2.65347212
## 33419                        Trinidad and Tobago  1991  2.65347212
## 33420                        Trinidad and Tobago  1991  2.65347212
## 33425                        Trinidad and Tobago  1991  2.65347212
## 33426                        Trinidad and Tobago  1991  2.65347212
## 33427                        Trinidad and Tobago  1991  2.65347212
## 33430                                    Tunisia  1991 19.10520066
## 33432                                    Tunisia  1991 19.10520066
## 33433                                    Tunisia  1991 19.10520066
## 33434                                    Tunisia  1991 19.10520066
## 33435                                    Tunisia  1991 19.10520066
## 33437                                    Tunisia  1991 19.10520066
## 33438                                    Tunisia  1991 19.10520066
## 33439                                    Tunisia  1991 19.10520066
## 33440                                    Tunisia  1991 19.10520066
## 33441                                    Tunisia  1991 19.10520066
## 33442                                    Tunisia  1991 19.10520066
## 33443                                    Tunisia  1991 19.10520066
## 33450                                    Tunisia  1991 19.10520066
## 33451                                    Tunisia  1991 19.10520066
## 33452                                    Tunisia  1991 19.10520066
## 33454                                    Tunisia  1991 19.10520066
## 33455                                    Tunisia  1991 19.10520066
## 33488                                    Tunisia  1991 19.10520066
## 33490                                    Tunisia  1991 19.10520066
## 33493                                    Tunisia  1991 19.10520066
## 33496                                    Tunisia  1991 19.10520066
## 33497                                    Tunisia  1991 19.10520066
## 33498                                    Tunisia  1991 19.10520066
## 33499                                    Tunisia  1991 19.10520066
## 33500                                    Tunisia  1991 19.10520066
## 33501                                    Tunisia  1991 19.10520066
## 33502                                    Tunisia  1991 19.10520066
## 33503                                    Tunisia  1991 19.10520066
## 33504                                    Tunisia  1991 19.10520066
## 33505                                    Tunisia  1991 19.10520066
## 33506                                    Tunisia  1991 19.10520066
## 33519                                    Tunisia  1991 19.10520066
## 33520                                    Tunisia  1991 19.10520066
## 33551                                    Tunisia  1991 19.10520066
## 33564                                    Tunisia  1991 19.10520066
## 33565                                    Tunisia  1991 19.10520066
## 33566                                    Tunisia  1991 19.10520066
## 33567                                    Tunisia  1991 19.10520066
## 33568                                    Tunisia  1991 19.10520066
## 33570                                    Tunisia  1991 19.10520066
## 33571                                    Tunisia  1991 19.10520066
## 33572                                    Tunisia  1991 19.10520066
## 33577                                    Tunisia  1991 19.10520066
## 33578                                    Tunisia  1991 19.10520066
## 33579                                    Tunisia  1991 19.10520066
## 33581                                     Turkey  1991 15.80402654
## 33583                                     Turkey  1991 15.80402654
## 33584                                     Turkey  1991 15.80402654
## 33585                                     Turkey  1991 15.80402654
## 33586                                     Turkey  1991 15.80402654
## 33588                                     Turkey  1991 15.80402654
## 33589                                     Turkey  1991 15.80402654
## 33590                                     Turkey  1991 15.80402654
## 33591                                     Turkey  1991 15.80402654
## 33592                                     Turkey  1991 15.80402654
## 33593                                     Turkey  1991 15.80402654
## 33594                                     Turkey  1991 15.80402654
## 33601                                     Turkey  1991 15.80402654
## 33602                                     Turkey  1991 15.80402654
## 33603                                     Turkey  1991 15.80402654
## 33605                                     Turkey  1991 15.80402654
## 33606                                     Turkey  1991 15.80402654
## 33639                                     Turkey  1991 15.80402654
## 33641                                     Turkey  1991 15.80402654
## 33645                                     Turkey  1991 15.80402654
## 33648                                     Turkey  1991 15.80402654
## 33649                                     Turkey  1991 15.80402654
## 33650                                     Turkey  1991 15.80402654
## 33651                                     Turkey  1991 15.80402654
## 33652                                     Turkey  1991 15.80402654
## 33653                                     Turkey  1991 15.80402654
## 33655                                     Turkey  1991 15.80402654
## 33656                                     Turkey  1991 15.80402654
## 33657                                     Turkey  1991 15.80402654
## 33658                                     Turkey  1991 15.80402654
## 33671                                     Turkey  1991 15.80402654
## 33672                                     Turkey  1991 15.80402654
## 33691                                     Turkey  1991 15.80402654
## 33704                                     Turkey  1991 15.80402654
## 33705                                     Turkey  1991 15.80402654
## 33706                                     Turkey  1991 15.80402654
## 33707                                     Turkey  1991 15.80402654
## 33708                                     Turkey  1991 15.80402654
## 33709                                     Turkey  1991 15.80402654
## 33710                                     Turkey  1991 15.80402654
## 33711                                     Turkey  1991 15.80402654
## 33716                                     Turkey  1991 15.80402654
## 33717                                     Turkey  1991 15.80402654
## 33718                                     Turkey  1991 15.80402654
## 33723                               Turkmenistan  1991 32.20338983
## 33724                               Turkmenistan  1991 32.20338983
## 33725                               Turkmenistan  1991 32.20338983
## 33726                               Turkmenistan  1991 32.20338983
## 33728                               Turkmenistan  1991 32.20338983
## 33729                               Turkmenistan  1991 32.20338983
## 33730                               Turkmenistan  1991 32.20338983
## 33761                               Turkmenistan  1991 32.20338983
## 33763                               Turkmenistan  1991 32.20338983
## 33766                               Turkmenistan  1991 32.20338983
## 33771                               Turkmenistan  1991 32.20338983
## 33772                               Turkmenistan  1991 32.20338983
## 33773                               Turkmenistan  1991 32.20338983
## 33774                               Turkmenistan  1991 32.20338983
## 33775                               Turkmenistan  1991 32.20338983
## 33776                               Turkmenistan  1991 32.20338983
## 33777                               Turkmenistan  1991 32.20338983
## 33778                               Turkmenistan  1991 32.20338983
## 33790                               Turkmenistan  1991 32.20338983
## 33791                               Turkmenistan  1991 32.20338983
## 33817                               Turkmenistan  1991 32.20338983
## 33824                               Turkmenistan  1991 32.20338983
## 33829                               Turkmenistan  1991 32.20338983
## 33830                               Turkmenistan  1991 32.20338983
## 33831                               Turkmenistan  1991 32.20338983
## 33835                               Turkmenistan  1991 32.20338983
## 33836                               Turkmenistan  1991 32.20338983
## 33837                               Turkmenistan  1991 32.20338983
## 33839                                     Uganda  1991 52.82168297
## 33841                                     Uganda  1991 52.82168297
## 33842                                     Uganda  1991 52.82168297
## 33843                                     Uganda  1991 52.82168297
## 33844                                     Uganda  1991 52.82168297
## 33846                                     Uganda  1991 52.82168297
## 33847                                     Uganda  1991 52.82168297
## 33848                                     Uganda  1991 52.82168297
## 33849                                     Uganda  1991 52.82168297
## 33850                                     Uganda  1991 52.82168297
## 33851                                     Uganda  1991 52.82168297
## 33852                                     Uganda  1991 52.82168297
## 33859                                     Uganda  1991 52.82168297
## 33860                                     Uganda  1991 52.82168297
## 33861                                     Uganda  1991 52.82168297
## 33863                                     Uganda  1991 52.82168297
## 33864                                     Uganda  1991 52.82168297
## 33891                                     Uganda  1991 52.82168297
## 33893                                     Uganda  1991 52.82168297
## 33897                                     Uganda  1991 52.82168297
## 33900                                     Uganda  1991 52.82168297
## 33901                                     Uganda  1991 52.82168297
## 33902                                     Uganda  1991 52.82168297
## 33903                                     Uganda  1991 52.82168297
## 33904                                     Uganda  1991 52.82168297
## 33905                                     Uganda  1991 52.82168297
## 33906                                     Uganda  1991 52.82168297
## 33908                                     Uganda  1991 52.82168297
## 33909                                     Uganda  1991 52.82168297
## 33910                                     Uganda  1991 52.82168297
## 33911                                     Uganda  1991 52.82168297
## 33924                                     Uganda  1991 52.82168297
## 33925                                     Uganda  1991 52.82168297
## 33956                                     Uganda  1991 52.82168297
## 33968                                     Uganda  1991 52.82168297
## 33969                                     Uganda  1991 52.82168297
## 33970                                     Uganda  1991 52.82168297
## 33971                                     Uganda  1991 52.82168297
## 33974                                     Uganda  1991 52.82168297
## 33975                                     Uganda  1991 52.82168297
## 33976                                     Uganda  1991 52.82168297
## 33981                                     Uganda  1991 52.82168297
## 33982                                     Uganda  1991 52.82168297
## 33983                                     Uganda  1991 52.82168297
## 33986                                    Ukraine  1991 22.78207110
## 33988                                    Ukraine  1991 22.78207110
## 33989                                    Ukraine  1991 22.78207110
## 33990                                    Ukraine  1991 22.78207110
## 33991                                    Ukraine  1991 22.78207110
## 33993                                    Ukraine  1991 22.78207110
## 33994                                    Ukraine  1991 22.78207110
## 33995                                    Ukraine  1991 22.78207110
## 33996                                    Ukraine  1991 22.78207110
## 33997                                    Ukraine  1991 22.78207110
## 33998                                    Ukraine  1991 22.78207110
## 33999                                    Ukraine  1991 22.78207110
## 34006                                    Ukraine  1991 22.78207110
## 34007                                    Ukraine  1991 22.78207110
## 34008                                    Ukraine  1991 22.78207110
## 34010                                    Ukraine  1991 22.78207110
## 34011                                    Ukraine  1991 22.78207110
## 34041                                    Ukraine  1991 22.78207110
## 34043                                    Ukraine  1991 22.78207110
## 34048                                    Ukraine  1991 22.78207110
## 34050                                    Ukraine  1991 22.78207110
## 34053                                    Ukraine  1991 22.78207110
## 34054                                    Ukraine  1991 22.78207110
## 34055                                    Ukraine  1991 22.78207110
## 34056                                    Ukraine  1991 22.78207110
## 34057                                    Ukraine  1991 22.78207110
## 34058                                    Ukraine  1991 22.78207110
## 34059                                    Ukraine  1991 22.78207110
## 34060                                    Ukraine  1991 22.78207110
## 34073                                    Ukraine  1991 22.78207110
## 34074                                    Ukraine  1991 22.78207110
## 34106                                    Ukraine  1991 22.78207110
## 34119                                    Ukraine  1991 22.78207110
## 34125                                    Ukraine  1991 22.78207110
## 34126                                    Ukraine  1991 22.78207110
## 34127                                    Ukraine  1991 22.78207110
## 34132                                    Ukraine  1991 22.78207110
## 34133                                    Ukraine  1991 22.78207110
## 34134                                    Ukraine  1991 22.78207110
## 34137                             United Kingdom  1991  1.36020340
## 34139                             United Kingdom  1991  1.36020340
## 34140                             United Kingdom  1991  1.36020340
## 34141                             United Kingdom  1991  1.36020340
## 34142                             United Kingdom  1991  1.36020340
## 34144                             United Kingdom  1991  1.36020340
## 34145                             United Kingdom  1991  1.36020340
## 34146                             United Kingdom  1991  1.36020340
## 34147                             United Kingdom  1991  1.36020340
## 34148                             United Kingdom  1991  1.36020340
## 34149                             United Kingdom  1991  1.36020340
## 34150                             United Kingdom  1991  1.36020340
## 34156                             United Kingdom  1991  1.36020340
## 34157                             United Kingdom  1991  1.36020340
## 34158                             United Kingdom  1991  1.36020340
## 34160                             United Kingdom  1991  1.36020340
## 34161                             United Kingdom  1991  1.36020340
## 34189                             United Kingdom  1991  1.36020340
## 34191                             United Kingdom  1991  1.36020340
## 34195                             United Kingdom  1991  1.36020340
## 34197                             United Kingdom  1991  1.36020340
## 34198                             United Kingdom  1991  1.36020340
## 34199                             United Kingdom  1991  1.36020340
## 34200                             United Kingdom  1991  1.36020340
## 34201                             United Kingdom  1991  1.36020340
## 34202                             United Kingdom  1991  1.36020340
## 34203                             United Kingdom  1991  1.36020340
## 34204                             United Kingdom  1991  1.36020340
## 34205                             United Kingdom  1991  1.36020340
## 34206                             United Kingdom  1991  1.36020340
## 34219                             United Kingdom  1991  1.36020340
## 34220                             United Kingdom  1991  1.36020340
## 34250                             United Kingdom  1991  1.36020340
## 34251                             United Kingdom  1991  1.36020340
## 34252                             United Kingdom  1991  1.36020340
## 34253                             United Kingdom  1991  1.36020340
## 34254                             United Kingdom  1991  1.36020340
## 34255                             United Kingdom  1991  1.36020340
## 34256                             United Kingdom  1991  1.36020340
## 34261                             United Kingdom  1991  1.36020340
## 34262                             United Kingdom  1991  1.36020340
## 34263                             United Kingdom  1991  1.36020340
## 34267                                    Uruguay  1991  8.49783072
## 34269                                    Uruguay  1991  8.49783072
## 34270                                    Uruguay  1991  8.49783072
## 34271                                    Uruguay  1991  8.49783072
## 34272                                    Uruguay  1991  8.49783072
## 34274                                    Uruguay  1991  8.49783072
## 34275                                    Uruguay  1991  8.49783072
## 34276                                    Uruguay  1991  8.49783072
## 34277                                    Uruguay  1991  8.49783072
## 34278                                    Uruguay  1991  8.49783072
## 34287                                    Uruguay  1991  8.49783072
## 34288                                    Uruguay  1991  8.49783072
## 34289                                    Uruguay  1991  8.49783072
## 34291                                    Uruguay  1991  8.49783072
## 34292                                    Uruguay  1991  8.49783072
## 34326                                    Uruguay  1991  8.49783072
## 34328                                    Uruguay  1991  8.49783072
## 34330                                    Uruguay  1991  8.49783072
## 34333                                    Uruguay  1991  8.49783072
## 34334                                    Uruguay  1991  8.49783072
## 34335                                    Uruguay  1991  8.49783072
## 34336                                    Uruguay  1991  8.49783072
## 34337                                    Uruguay  1991  8.49783072
## 34338                                    Uruguay  1991  8.49783072
## 34339                                    Uruguay  1991  8.49783072
## 34340                                    Uruguay  1991  8.49783072
## 34341                                    Uruguay  1991  8.49783072
## 34342                                    Uruguay  1991  8.49783072
## 34343                                    Uruguay  1991  8.49783072
## 34356                                    Uruguay  1991  8.49783072
## 34357                                    Uruguay  1991  8.49783072
## 34375                                    Uruguay  1991  8.49783072
## 34386                                    Uruguay  1991  8.49783072
## 34387                                    Uruguay  1991  8.49783072
## 34388                                    Uruguay  1991  8.49783072
## 34389                                    Uruguay  1991  8.49783072
## 34391                                    Uruguay  1991  8.49783072
## 34392                                    Uruguay  1991  8.49783072
## 34393                                    Uruguay  1991  8.49783072
## 34398                                    Uruguay  1991  8.49783072
## 34399                                    Uruguay  1991  8.49783072
## 34400                                    Uruguay  1991  8.49783072
## 34405                                 Uzbekistan  1991 36.97700295
## 34406                                 Uzbekistan  1991 36.97700295
## 34407                                 Uzbekistan  1991 36.97700295
## 34408                                 Uzbekistan  1991 36.97700295
## 34410                                 Uzbekistan  1991 36.97700295
## 34411                                 Uzbekistan  1991 36.97700295
## 34412                                 Uzbekistan  1991 36.97700295
## 34414                                 Uzbekistan  1991 36.97700295
## 34455                                 Uzbekistan  1991 36.97700295
## 34457                                 Uzbekistan  1991 36.97700295
## 34459                                 Uzbekistan  1991 36.97700295
## 34464                                 Uzbekistan  1991 36.97700295
## 34465                                 Uzbekistan  1991 36.97700295
## 34466                                 Uzbekistan  1991 36.97700295
## 34467                                 Uzbekistan  1991 36.97700295
## 34469                                 Uzbekistan  1991 36.97700295
## 34470                                 Uzbekistan  1991 36.97700295
## 34471                                 Uzbekistan  1991 36.97700295
## 34472                                 Uzbekistan  1991 36.97700295
## 34484                                 Uzbekistan  1991 36.97700295
## 34485                                 Uzbekistan  1991 36.97700295
## 34512                                 Uzbekistan  1991 36.97700295
## 34519                                 Uzbekistan  1991 36.97700295
## 34523                                 Uzbekistan  1991 36.97700295
## 34524                                 Uzbekistan  1991 36.97700295
## 34525                                 Uzbekistan  1991 36.97700295
## 34530                                 Uzbekistan  1991 36.97700295
## 34531                                 Uzbekistan  1991 36.97700295
## 34532                                 Uzbekistan  1991 36.97700295
## 34536                                    Vanuatu  1991 16.55999621
## 34537                                    Vanuatu  1991 16.55999621
## 34538                                    Vanuatu  1991 16.55999621
## 34539                                    Vanuatu  1991 16.55999621
## 34541                                    Vanuatu  1991 16.55999621
## 34542                                    Vanuatu  1991 16.55999621
## 34543                                    Vanuatu  1991 16.55999621
## 34576                                    Vanuatu  1991 16.55999621
## 34578                                    Vanuatu  1991 16.55999621
## 34582                                    Vanuatu  1991 16.55999621
## 34585                                    Vanuatu  1991 16.55999621
## 34586                                    Vanuatu  1991 16.55999621
## 34587                                    Vanuatu  1991 16.55999621
## 34588                                    Vanuatu  1991 16.55999621
## 34589                                    Vanuatu  1991 16.55999621
## 34590                                    Vanuatu  1991 16.55999621
## 34592                                    Vanuatu  1991 16.55999621
## 34593                                    Vanuatu  1991 16.55999621
## 34594                                    Vanuatu  1991 16.55999621
## 34595                                    Vanuatu  1991 16.55999621
## 34608                                    Vanuatu  1991 16.55999621
## 34609                                    Vanuatu  1991 16.55999621
## 34646                                    Vanuatu  1991 16.55999621
## 34647                                    Vanuatu  1991 16.55999621
## 34648                                    Vanuatu  1991 16.55999621
## 34649                                    Vanuatu  1991 16.55999621
## 34650                                    Vanuatu  1991 16.55999621
## 34651                                    Vanuatu  1991 16.55999621
## 34652                                    Vanuatu  1991 16.55999621
## 34653                                    Vanuatu  1991 16.55999621
## 34658                                    Vanuatu  1991 16.55999621
## 34659                                    Vanuatu  1991 16.55999621
## 34660                                    Vanuatu  1991 16.55999621
## 34662         Venezuela (Bolivarian Republic of)  1991  5.57920471
## 34664         Venezuela (Bolivarian Republic of)  1991  5.57920471
## 34665         Venezuela (Bolivarian Republic of)  1991  5.57920471
## 34666         Venezuela (Bolivarian Republic of)  1991  5.57920471
## 34667         Venezuela (Bolivarian Republic of)  1991  5.57920471
## 34669         Venezuela (Bolivarian Republic of)  1991  5.57920471
## 34670         Venezuela (Bolivarian Republic of)  1991  5.57920471
## 34671         Venezuela (Bolivarian Republic of)  1991  5.57920471
## 34672         Venezuela (Bolivarian Republic of)  1991  5.57920471
## 34673         Venezuela (Bolivarian Republic of)  1991  5.57920471
## 34682         Venezuela (Bolivarian Republic of)  1991  5.57920471
## 34683         Venezuela (Bolivarian Republic of)  1991  5.57920471
## 34684         Venezuela (Bolivarian Republic of)  1991  5.57920471
## 34686         Venezuela (Bolivarian Republic of)  1991  5.57920471
## 34687         Venezuela (Bolivarian Republic of)  1991  5.57920471
## 34713         Venezuela (Bolivarian Republic of)  1991  5.57920471
## 34715         Venezuela (Bolivarian Republic of)  1991  5.57920471
## 34717         Venezuela (Bolivarian Republic of)  1991  5.57920471
## 34720         Venezuela (Bolivarian Republic of)  1991  5.57920471
## 34721         Venezuela (Bolivarian Republic of)  1991  5.57920471
## 34722         Venezuela (Bolivarian Republic of)  1991  5.57920471
## 34723         Venezuela (Bolivarian Republic of)  1991  5.57920471
## 34724         Venezuela (Bolivarian Republic of)  1991  5.57920471
## 34725         Venezuela (Bolivarian Republic of)  1991  5.57920471
## 34726         Venezuela (Bolivarian Republic of)  1991  5.57920471
## 34728         Venezuela (Bolivarian Republic of)  1991  5.57920471
## 34729         Venezuela (Bolivarian Republic of)  1991  5.57920471
## 34730         Venezuela (Bolivarian Republic of)  1991  5.57920471
## 34731         Venezuela (Bolivarian Republic of)  1991  5.57920471
## 34744         Venezuela (Bolivarian Republic of)  1991  5.57920471
## 34745         Venezuela (Bolivarian Republic of)  1991  5.57920471
## 34763         Venezuela (Bolivarian Republic of)  1991  5.57920471
## 34774         Venezuela (Bolivarian Republic of)  1991  5.57920471
## 34775         Venezuela (Bolivarian Republic of)  1991  5.57920471
## 34776         Venezuela (Bolivarian Republic of)  1991  5.57920471
## 34777         Venezuela (Bolivarian Republic of)  1991  5.57920471
## 34778         Venezuela (Bolivarian Republic of)  1991  5.57920471
## 34779         Venezuela (Bolivarian Republic of)  1991  5.57920471
## 34780         Venezuela (Bolivarian Republic of)  1991  5.57920471
## 34781         Venezuela (Bolivarian Republic of)  1991  5.57920471
## 34786         Venezuela (Bolivarian Republic of)  1991  5.57920471
## 34787         Venezuela (Bolivarian Republic of)  1991  5.57920471
## 34788         Venezuela (Bolivarian Republic of)  1991  5.57920471
## 34791                                      Yemen  1991 27.25149877
## 34793                                      Yemen  1991 27.25149877
## 34794                                      Yemen  1991 27.25149877
## 34795                                      Yemen  1991 27.25149877
## 34796                                      Yemen  1991 27.25149877
## 34798                                      Yemen  1991 27.25149877
## 34799                                      Yemen  1991 27.25149877
## 34800                                      Yemen  1991 27.25149877
## 34801                                      Yemen  1991 27.25149877
## 34802                                      Yemen  1991 27.25149877
## 34810                                      Yemen  1991 27.25149877
## 34811                                      Yemen  1991 27.25149877
## 34812                                      Yemen  1991 27.25149877
## 34814                                      Yemen  1991 27.25149877
## 34815                                      Yemen  1991 27.25149877
## 34842                                      Yemen  1991 27.25149877
## 34844                                      Yemen  1991 27.25149877
## 34847                                      Yemen  1991 27.25149877
## 34850                                      Yemen  1991 27.25149877
## 34851                                      Yemen  1991 27.25149877
## 34852                                      Yemen  1991 27.25149877
## 34853                                      Yemen  1991 27.25149877
## 34854                                      Yemen  1991 27.25149877
## 34855                                      Yemen  1991 27.25149877
## 34856                                      Yemen  1991 27.25149877
## 34858                                      Yemen  1991 27.25149877
## 34859                                      Yemen  1991 27.25149877
## 34860                                      Yemen  1991 27.25149877
## 34861                                      Yemen  1991 27.25149877
## 34874                                      Yemen  1991 27.25149877
## 34875                                      Yemen  1991 27.25149877
## 34906                                      Yemen  1991 27.25149877
## 34918                                      Yemen  1991 27.25149877
## 34919                                      Yemen  1991 27.25149877
## 34920                                      Yemen  1991 27.25149877
## 34922                                      Yemen  1991 27.25149877
## 34923                                      Yemen  1991 27.25149877
## 34924                                      Yemen  1991 27.25149877
## 34925                                      Yemen  1991 27.25149877
## 34930                                      Yemen  1991 27.25149877
## 34931                                      Yemen  1991 27.25149877
## 34932                                      Yemen  1991 27.25149877
## 34935                                     Zambia  1991 17.42768673
## 34937                                     Zambia  1991 17.42768673
## 34938                                     Zambia  1991 17.42768673
## 34939                                     Zambia  1991 17.42768673
## 34940                                     Zambia  1991 17.42768673
## 34942                                     Zambia  1991 17.42768673
## 34943                                     Zambia  1991 17.42768673
## 34944                                     Zambia  1991 17.42768673
## 34945                                     Zambia  1991 17.42768673
## 34946                                     Zambia  1991 17.42768673
## 34954                                     Zambia  1991 17.42768673
## 34955                                     Zambia  1991 17.42768673
## 34956                                     Zambia  1991 17.42768673
## 34958                                     Zambia  1991 17.42768673
## 34959                                     Zambia  1991 17.42768673
## 34987                                     Zambia  1991 17.42768673
## 34989                                     Zambia  1991 17.42768673
## 34993                                     Zambia  1991 17.42768673
## 34996                                     Zambia  1991 17.42768673
## 34997                                     Zambia  1991 17.42768673
## 34998                                     Zambia  1991 17.42768673
## 34999                                     Zambia  1991 17.42768673
## 35000                                     Zambia  1991 17.42768673
## 35001                                     Zambia  1991 17.42768673
## 35002                                     Zambia  1991 17.42768673
## 35004                                     Zambia  1991 17.42768673
## 35005                                     Zambia  1991 17.42768673
## 35006                                     Zambia  1991 17.42768673
## 35007                                     Zambia  1991 17.42768673
## 35020                                     Zambia  1991 17.42768673
## 35021                                     Zambia  1991 17.42768673
## 35051                                     Zambia  1991 17.42768673
## 35064                                     Zambia  1991 17.42768673
## 35065                                     Zambia  1991 17.42768673
## 35066                                     Zambia  1991 17.42768673
## 35068                                     Zambia  1991 17.42768673
## 35069                                     Zambia  1991 17.42768673
## 35070                                     Zambia  1991 17.42768673
## 35075                                     Zambia  1991 17.42768673
## 35076                                     Zambia  1991 17.42768673
## 35077                                     Zambia  1991 17.42768673
## 35080                                   Zimbabwe  1991 15.26726153
## 35082                                   Zimbabwe  1991 15.26726153
## 35083                                   Zimbabwe  1991 15.26726153
## 35084                                   Zimbabwe  1991 15.26726153
## 35085                                   Zimbabwe  1991 15.26726153
## 35087                                   Zimbabwe  1991 15.26726153
## 35088                                   Zimbabwe  1991 15.26726153
## 35089                                   Zimbabwe  1991 15.26726153
## 35090                                   Zimbabwe  1991 15.26726153
## 35091                                   Zimbabwe  1991 15.26726153
## 35092                                   Zimbabwe  1991 15.26726153
## 35093                                   Zimbabwe  1991 15.26726153
## 35100                                   Zimbabwe  1991 15.26726153
## 35101                                   Zimbabwe  1991 15.26726153
## 35102                                   Zimbabwe  1991 15.26726153
## 35104                                   Zimbabwe  1991 15.26726153
## 35105                                   Zimbabwe  1991 15.26726153
## 35134                                   Zimbabwe  1991 15.26726153
## 35136                                   Zimbabwe  1991 15.26726153
## 35140                                   Zimbabwe  1991 15.26726153
## 35143                                   Zimbabwe  1991 15.26726153
## 35144                                   Zimbabwe  1991 15.26726153
## 35145                                   Zimbabwe  1991 15.26726153
## 35146                                   Zimbabwe  1991 15.26726153
## 35147                                   Zimbabwe  1991 15.26726153
## 35148                                   Zimbabwe  1991 15.26726153
## 35149                                   Zimbabwe  1991 15.26726153
## 35151                                   Zimbabwe  1991 15.26726153
## 35152                                   Zimbabwe  1991 15.26726153
## 35153                                   Zimbabwe  1991 15.26726153
## 35154                                   Zimbabwe  1991 15.26726153
## 35167                                   Zimbabwe  1991 15.26726153
## 35168                                   Zimbabwe  1991 15.26726153
## 35200                                   Zimbabwe  1991 15.26726153
## 35210                                   Zimbabwe  1991 15.26726153
## 35211                                   Zimbabwe  1991 15.26726153
## 35212                                   Zimbabwe  1991 15.26726153
## 35213                                   Zimbabwe  1991 15.26726153
## 35214                                   Zimbabwe  1991 15.26726153
## 35215                                   Zimbabwe  1991 15.26726153
## 35216                                   Zimbabwe  1991 15.26726153
## 35217                                   Zimbabwe  1991 15.26726153
## 35222                                   Zimbabwe  1991 15.26726153
## 35223                                   Zimbabwe  1991 15.26726153
## 35224                                   Zimbabwe  1991 15.26726153
## 35227                                    Albania  1992 51.64187027
## 35229                                    Albania  1992 51.64187027
## 35230                                    Albania  1992 51.64187027
## 35231                                    Albania  1992 51.64187027
## 35232                                    Albania  1992 51.64187027
## 35234                                    Albania  1992 51.64187027
## 35235                                    Albania  1992 51.64187027
## 35236                                    Albania  1992 51.64187027
## 35237                                    Albania  1992 51.64187027
## 35238                                    Albania  1992 51.64187027
## 35239                                    Albania  1992 51.64187027
## 35240                                    Albania  1992 51.64187027
## 35247                                    Albania  1992 51.64187027
## 35248                                    Albania  1992 51.64187027
## 35249                                    Albania  1992 51.64187027
## 35251                                    Albania  1992 51.64187027
## 35252                                    Albania  1992 51.64187027
## 35294                                    Albania  1992 51.64187027
## 35295                                    Albania  1992 51.64187027
## 35296                                    Albania  1992 51.64187027
## 35297                                    Albania  1992 51.64187027
## 35298                                    Albania  1992 51.64187027
## 35299                                    Albania  1992 51.64187027
## 35300                                    Albania  1992 51.64187027
## 35301                                    Albania  1992 51.64187027
## 35302                                    Albania  1992 51.64187027
## 35303                                    Albania  1992 51.64187027
## 35304                                    Albania  1992 51.64187027
## 35317                                    Albania  1992 51.64187027
## 35318                                    Albania  1992 51.64187027
## 35362                                    Albania  1992 51.64187027
## 35363                                    Albania  1992 51.64187027
## 35364                                    Albania  1992 51.64187027
## 35365                                    Albania  1992 51.64187027
## 35366                                    Albania  1992 51.64187027
## 35380                                    Algeria  1992 12.12684642
## 35382                                    Algeria  1992 12.12684642
## 35383                                    Algeria  1992 12.12684642
## 35384                                    Algeria  1992 12.12684642
## 35385                                    Algeria  1992 12.12684642
## 35387                                    Algeria  1992 12.12684642
## 35388                                    Algeria  1992 12.12684642
## 35389                                    Algeria  1992 12.12684642
## 35390                                    Algeria  1992 12.12684642
## 35391                                    Algeria  1992 12.12684642
## 35400                                    Algeria  1992 12.12684642
## 35401                                    Algeria  1992 12.12684642
## 35402                                    Algeria  1992 12.12684642
## 35404                                    Algeria  1992 12.12684642
## 35405                                    Algeria  1992 12.12684642
## 35447                                    Algeria  1992 12.12684642
## 35448                                    Algeria  1992 12.12684642
## 35449                                    Algeria  1992 12.12684642
## 35450                                    Algeria  1992 12.12684642
## 35451                                    Algeria  1992 12.12684642
## 35452                                    Algeria  1992 12.12684642
## 35453                                    Algeria  1992 12.12684642
## 35455                                    Algeria  1992 12.12684642
## 35456                                    Algeria  1992 12.12684642
## 35457                                    Algeria  1992 12.12684642
## 35458                                    Algeria  1992 12.12684642
## 35471                                    Algeria  1992 12.12684642
## 35472                                    Algeria  1992 12.12684642
## 35514                                    Algeria  1992 12.12684642
## 35515                                    Algeria  1992 12.12684642
## 35516                                    Algeria  1992 12.12684642
## 35518                                    Algeria  1992 12.12684642
## 35534                                     Angola  1992 11.53846154
## 35535                                     Angola  1992 11.53846154
## 35536                                     Angola  1992 11.53846154
## 35537                                     Angola  1992 11.53846154
## 35539                                     Angola  1992 11.53846154
## 35540                                     Angola  1992 11.53846154
## 35541                                     Angola  1992 11.53846154
## 35543                                     Angola  1992 11.53846154
## 35585                                     Angola  1992 11.53846154
## 35586                                     Angola  1992 11.53846154
## 35587                                     Angola  1992 11.53846154
## 35588                                     Angola  1992 11.53846154
## 35589                                     Angola  1992 11.53846154
## 35590                                     Angola  1992 11.53846154
## 35591                                     Angola  1992 11.53846154
## 35593                                     Angola  1992 11.53846154
## 35594                                     Angola  1992 11.53846154
## 35595                                     Angola  1992 11.53846154
## 35596                                     Angola  1992 11.53846154
## 35609                                     Angola  1992 11.53846154
## 35610                                     Angola  1992 11.53846154
## 35652                                     Angola  1992 11.53846154
## 35672                        Antigua and Barbuda  1992  2.07021499
## 35673                        Antigua and Barbuda  1992  2.07021499
## 35674                        Antigua and Barbuda  1992  2.07021499
## 35675                        Antigua and Barbuda  1992  2.07021499
## 35677                        Antigua and Barbuda  1992  2.07021499
## 35678                        Antigua and Barbuda  1992  2.07021499
## 35679                        Antigua and Barbuda  1992  2.07021499
## 35710                        Antigua and Barbuda  1992  2.07021499
## 35711                        Antigua and Barbuda  1992  2.07021499
## 35712                        Antigua and Barbuda  1992  2.07021499
## 35713                        Antigua and Barbuda  1992  2.07021499
## 35714                        Antigua and Barbuda  1992  2.07021499
## 35715                        Antigua and Barbuda  1992  2.07021499
## 35716                        Antigua and Barbuda  1992  2.07021499
## 35717                        Antigua and Barbuda  1992  2.07021499
## 35718                        Antigua and Barbuda  1992  2.07021499
## 35719                        Antigua and Barbuda  1992  2.07021499
## 35730                        Antigua and Barbuda  1992  2.07021499
## 35731                        Antigua and Barbuda  1992  2.07021499
## 35743                        Antigua and Barbuda  1992  2.07021499
## 35744                        Antigua and Barbuda  1992  2.07021499
## 35745                        Antigua and Barbuda  1992  2.07021499
## 35746                        Antigua and Barbuda  1992  2.07021499
## 35747                        Antigua and Barbuda  1992  2.07021499
## 35750                                  Argentina  1992  5.99078709
## 35752                                  Argentina  1992  5.99078709
## 35753                                  Argentina  1992  5.99078709
## 35754                                  Argentina  1992  5.99078709
## 35755                                  Argentina  1992  5.99078709
## 35757                                  Argentina  1992  5.99078709
## 35758                                  Argentina  1992  5.99078709
## 35759                                  Argentina  1992  5.99078709
## 35760                                  Argentina  1992  5.99078709
## 35761                                  Argentina  1992  5.99078709
## 35770                                  Argentina  1992  5.99078709
## 35771                                  Argentina  1992  5.99078709
## 35772                                  Argentina  1992  5.99078709
## 35774                                  Argentina  1992  5.99078709
## 35775                                  Argentina  1992  5.99078709
## 35813                                  Argentina  1992  5.99078709
## 35814                                  Argentina  1992  5.99078709
## 35815                                  Argentina  1992  5.99078709
## 35816                                  Argentina  1992  5.99078709
## 35817                                  Argentina  1992  5.99078709
## 35818                                  Argentina  1992  5.99078709
## 35819                                  Argentina  1992  5.99078709
## 35821                                  Argentina  1992  5.99078709
## 35822                                  Argentina  1992  5.99078709
## 35823                                  Argentina  1992  5.99078709
## 35824                                  Argentina  1992  5.99078709
## 35837                                  Argentina  1992  5.99078709
## 35838                                  Argentina  1992  5.99078709
## 35870                                  Argentina  1992  5.99078709
## 35871                                  Argentina  1992  5.99078709
## 35872                                  Argentina  1992  5.99078709
## 35873                                  Argentina  1992  5.99078709
## 35874                                  Argentina  1992  5.99078709
## 35887                                    Armenia  1992 31.04272063
## 35889                                    Armenia  1992 31.04272063
## 35890                                    Armenia  1992 31.04272063
## 35891                                    Armenia  1992 31.04272063
## 35892                                    Armenia  1992 31.04272063
## 35894                                    Armenia  1992 31.04272063
## 35895                                    Armenia  1992 31.04272063
## 35896                                    Armenia  1992 31.04272063
## 35897                                    Armenia  1992 31.04272063
## 35898                                    Armenia  1992 31.04272063
## 35907                                    Armenia  1992 31.04272063
## 35908                                    Armenia  1992 31.04272063
## 35909                                    Armenia  1992 31.04272063
## 35911                                    Armenia  1992 31.04272063
## 35912                                    Armenia  1992 31.04272063
## 35951                                    Armenia  1992 31.04272063
## 35952                                    Armenia  1992 31.04272063
## 35953                                    Armenia  1992 31.04272063
## 35954                                    Armenia  1992 31.04272063
## 35955                                    Armenia  1992 31.04272063
## 35956                                    Armenia  1992 31.04272063
## 35957                                    Armenia  1992 31.04272063
## 35958                                    Armenia  1992 31.04272063
## 35959                                    Armenia  1992 31.04272063
## 35960                                    Armenia  1992 31.04272063
## 35961                                    Armenia  1992 31.04272063
## 35974                                    Armenia  1992 31.04272063
## 35975                                    Armenia  1992 31.04272063
## 36020                                    Armenia  1992 31.04272063
## 36021                                    Armenia  1992 31.04272063
## 36022                                    Armenia  1992 31.04272063
## 36038                                  Australia  1992  3.34708354
## 36040                                  Australia  1992  3.34708354
## 36041                                  Australia  1992  3.34708354
## 36042                                  Australia  1992  3.34708354
## 36043                                  Australia  1992  3.34708354
## 36045                                  Australia  1992  3.34708354
## 36046                                  Australia  1992  3.34708354
## 36047                                  Australia  1992  3.34708354
## 36048                                  Australia  1992  3.34708354
## 36049                                  Australia  1992  3.34708354
## 36050                                  Australia  1992  3.34708354
## 36051                                  Australia  1992  3.34708354
## 36057                                  Australia  1992  3.34708354
## 36058                                  Australia  1992  3.34708354
## 36059                                  Australia  1992  3.34708354
## 36061                                  Australia  1992  3.34708354
## 36062                                  Australia  1992  3.34708354
## 36099                                  Australia  1992  3.34708354
## 36100                                  Australia  1992  3.34708354
## 36101                                  Australia  1992  3.34708354
## 36102                                  Australia  1992  3.34708354
## 36103                                  Australia  1992  3.34708354
## 36104                                  Australia  1992  3.34708354
## 36105                                  Australia  1992  3.34708354
## 36106                                  Australia  1992  3.34708354
## 36107                                  Australia  1992  3.34708354
## 36108                                  Australia  1992  3.34708354
## 36109                                  Australia  1992  3.34708354
## 36122                                  Australia  1992  3.34708354
## 36123                                  Australia  1992  3.34708354
## 36153                                  Australia  1992  3.34708354
## 36154                                  Australia  1992  3.34708354
## 36155                                  Australia  1992  3.34708354
## 36156                                  Australia  1992  3.34708354
## 36169                                    Austria  1992  2.76220461
## 36171                                    Austria  1992  2.76220461
## 36172                                    Austria  1992  2.76220461
## 36173                                    Austria  1992  2.76220461
## 36174                                    Austria  1992  2.76220461
## 36176                                    Austria  1992  2.76220461
## 36177                                    Austria  1992  2.76220461
## 36178                                    Austria  1992  2.76220461
## 36179                                    Austria  1992  2.76220461
## 36180                                    Austria  1992  2.76220461
## 36181                                    Austria  1992  2.76220461
## 36182                                    Austria  1992  2.76220461
## 36188                                    Austria  1992  2.76220461
## 36189                                    Austria  1992  2.76220461
## 36190                                    Austria  1992  2.76220461
## 36192                                    Austria  1992  2.76220461
## 36193                                    Austria  1992  2.76220461
## 36232                                    Austria  1992  2.76220461
## 36233                                    Austria  1992  2.76220461
## 36234                                    Austria  1992  2.76220461
## 36235                                    Austria  1992  2.76220461
## 36236                                    Austria  1992  2.76220461
## 36237                                    Austria  1992  2.76220461
## 36238                                    Austria  1992  2.76220461
## 36239                                    Austria  1992  2.76220461
## 36240                                    Austria  1992  2.76220461
## 36241                                    Austria  1992  2.76220461
## 36254                                    Austria  1992  2.76220461
## 36255                                    Austria  1992  2.76220461
## 36285                                    Austria  1992  2.76220461
## 36286                                    Austria  1992  2.76220461
## 36288                                    Austria  1992  2.76220461
## 36303                                 Azerbaijan  1992 28.50561670
## 36304                                 Azerbaijan  1992 28.50561670
## 36305                                 Azerbaijan  1992 28.50561670
## 36306                                 Azerbaijan  1992 28.50561670
## 36308                                 Azerbaijan  1992 28.50561670
## 36309                                 Azerbaijan  1992 28.50561670
## 36310                                 Azerbaijan  1992 28.50561670
## 36312                                 Azerbaijan  1992 28.50561670
## 36313                                 Azerbaijan  1992 28.50561670
## 36314                                 Azerbaijan  1992 28.50561670
## 36365                                 Azerbaijan  1992 28.50561670
## 36366                                 Azerbaijan  1992 28.50561670
## 36367                                 Azerbaijan  1992 28.50561670
## 36368                                 Azerbaijan  1992 28.50561670
## 36369                                 Azerbaijan  1992 28.50561670
## 36370                                 Azerbaijan  1992 28.50561670
## 36371                                 Azerbaijan  1992 28.50561670
## 36373                                 Azerbaijan  1992 28.50561670
## 36374                                 Azerbaijan  1992 28.50561670
## 36375                                 Azerbaijan  1992 28.50561670
## 36376                                 Azerbaijan  1992 28.50561670
## 36434                                 Azerbaijan  1992 28.50561670
## 36452                                    Bahamas  1992  3.14447422
## 36453                                    Bahamas  1992  3.14447422
## 36454                                    Bahamas  1992  3.14447422
## 36455                                    Bahamas  1992  3.14447422
## 36457                                    Bahamas  1992  3.14447422
## 36458                                    Bahamas  1992  3.14447422
## 36459                                    Bahamas  1992  3.14447422
## 36461                                    Bahamas  1992  3.14447422
## 36462                                    Bahamas  1992  3.14447422
## 36463                                    Bahamas  1992  3.14447422
## 36504                                    Bahamas  1992  3.14447422
## 36505                                    Bahamas  1992  3.14447422
## 36506                                    Bahamas  1992  3.14447422
## 36507                                    Bahamas  1992  3.14447422
## 36508                                    Bahamas  1992  3.14447422
## 36509                                    Bahamas  1992  3.14447422
## 36510                                    Bahamas  1992  3.14447422
## 36511                                    Bahamas  1992  3.14447422
## 36512                                    Bahamas  1992  3.14447422
## 36513                                    Bahamas  1992  3.14447422
## 36514                                    Bahamas  1992  3.14447422
## 36526                                    Bahamas  1992  3.14447422
## 36527                                    Bahamas  1992  3.14447422
## 36549                                    Bahamas  1992  3.14447422
## 36550                                    Bahamas  1992  3.14447422
## 36551                                    Bahamas  1992  3.14447422
## 36564                                 Bangladesh  1992 29.38477209
## 36566                                 Bangladesh  1992 29.38477209
## 36567                                 Bangladesh  1992 29.38477209
## 36568                                 Bangladesh  1992 29.38477209
## 36569                                 Bangladesh  1992 29.38477209
## 36571                                 Bangladesh  1992 29.38477209
## 36572                                 Bangladesh  1992 29.38477209
## 36573                                 Bangladesh  1992 29.38477209
## 36574                                 Bangladesh  1992 29.38477209
## 36575                                 Bangladesh  1992 29.38477209
## 36576                                 Bangladesh  1992 29.38477209
## 36577                                 Bangladesh  1992 29.38477209
## 36584                                 Bangladesh  1992 29.38477209
## 36585                                 Bangladesh  1992 29.38477209
## 36586                                 Bangladesh  1992 29.38477209
## 36588                                 Bangladesh  1992 29.38477209
## 36589                                 Bangladesh  1992 29.38477209
## 36628                                 Bangladesh  1992 29.38477209
## 36629                                 Bangladesh  1992 29.38477209
## 36630                                 Bangladesh  1992 29.38477209
## 36631                                 Bangladesh  1992 29.38477209
## 36632                                 Bangladesh  1992 29.38477209
## 36633                                 Bangladesh  1992 29.38477209
## 36634                                 Bangladesh  1992 29.38477209
## 36636                                 Bangladesh  1992 29.38477209
## 36637                                 Bangladesh  1992 29.38477209
## 36638                                 Bangladesh  1992 29.38477209
## 36639                                 Bangladesh  1992 29.38477209
## 36652                                 Bangladesh  1992 29.38477209
## 36653                                 Bangladesh  1992 29.38477209
## 36697                                 Bangladesh  1992 29.38477209
## 36698                                 Bangladesh  1992 29.38477209
## 36699                                 Bangladesh  1992 29.38477209
## 36700                                 Bangladesh  1992 29.38477209
## 36701                                 Bangladesh  1992 29.38477209
## 36714                                   Barbados  1992  3.88975649
## 36716                                   Barbados  1992  3.88975649
## 36717                                   Barbados  1992  3.88975649
## 36718                                   Barbados  1992  3.88975649
## 36719                                   Barbados  1992  3.88975649
## 36721                                   Barbados  1992  3.88975649
## 36722                                   Barbados  1992  3.88975649
## 36723                                   Barbados  1992  3.88975649
## 36724                                   Barbados  1992  3.88975649
## 36725                                   Barbados  1992  3.88975649
## 36726                                   Barbados  1992  3.88975649
## 36727                                   Barbados  1992  3.88975649
## 36733                                   Barbados  1992  3.88975649
## 36734                                   Barbados  1992  3.88975649
## 36735                                   Barbados  1992  3.88975649
## 36737                                   Barbados  1992  3.88975649
## 36738                                   Barbados  1992  3.88975649
## 36774                                   Barbados  1992  3.88975649
## 36775                                   Barbados  1992  3.88975649
## 36776                                   Barbados  1992  3.88975649
## 36777                                   Barbados  1992  3.88975649
## 36778                                   Barbados  1992  3.88975649
## 36779                                   Barbados  1992  3.88975649
## 36780                                   Barbados  1992  3.88975649
## 36781                                   Barbados  1992  3.88975649
## 36782                                   Barbados  1992  3.88975649
## 36783                                   Barbados  1992  3.88975649
## 36784                                   Barbados  1992  3.88975649
## 36797                                   Barbados  1992  3.88975649
## 36798                                   Barbados  1992  3.88975649
## 36831                                   Barbados  1992  3.88975649
## 36832                                   Barbados  1992  3.88975649
## 36833                                   Barbados  1992  3.88975649
## 36834                                   Barbados  1992  3.88975649
## 36835                                   Barbados  1992  3.88975649
## 36850                                    Belarus  1992 23.57232133
## 36851                                    Belarus  1992 23.57232133
## 36852                                    Belarus  1992 23.57232133
## 36853                                    Belarus  1992 23.57232133
## 36855                                    Belarus  1992 23.57232133
## 36856                                    Belarus  1992 23.57232133
## 36857                                    Belarus  1992 23.57232133
## 36859                                    Belarus  1992 23.57232133
## 36911                                    Belarus  1992 23.57232133
## 36912                                    Belarus  1992 23.57232133
## 36913                                    Belarus  1992 23.57232133
## 36914                                    Belarus  1992 23.57232133
## 36915                                    Belarus  1992 23.57232133
## 36916                                    Belarus  1992 23.57232133
## 36917                                    Belarus  1992 23.57232133
## 36918                                    Belarus  1992 23.57232133
## 36919                                    Belarus  1992 23.57232133
## 36920                                    Belarus  1992 23.57232133
## 36921                                    Belarus  1992 23.57232133
## 36934                                    Belarus  1992 23.57232133
## 36935                                    Belarus  1992 23.57232133
## 36967                                    Belarus  1992 23.57232133
## 36985                                     Belize  1992 18.27473717
## 36987                                     Belize  1992 18.27473717
## 36988                                     Belize  1992 18.27473717
## 36989                                     Belize  1992 18.27473717
## 36990                                     Belize  1992 18.27473717
## 36992                                     Belize  1992 18.27473717
## 36993                                     Belize  1992 18.27473717
## 36994                                     Belize  1992 18.27473717
## 36995                                     Belize  1992 18.27473717
## 36996                                     Belize  1992 18.27473717
## 37004                                     Belize  1992 18.27473717
## 37005                                     Belize  1992 18.27473717
## 37006                                     Belize  1992 18.27473717
## 37008                                     Belize  1992 18.27473717
## 37009                                     Belize  1992 18.27473717
## 37047                                     Belize  1992 18.27473717
## 37048                                     Belize  1992 18.27473717
## 37049                                     Belize  1992 18.27473717
## 37050                                     Belize  1992 18.27473717
## 37051                                     Belize  1992 18.27473717
## 37052                                     Belize  1992 18.27473717
## 37053                                     Belize  1992 18.27473717
## 37055                                     Belize  1992 18.27473717
## 37056                                     Belize  1992 18.27473717
## 37057                                     Belize  1992 18.27473717
## 37058                                     Belize  1992 18.27473717
## 37071                                     Belize  1992 18.27473717
## 37072                                     Belize  1992 18.27473717
## 37108                                     Belize  1992 18.27473717
## 37109                                     Belize  1992 18.27473717
## 37110                                     Belize  1992 18.27473717
## 37111                                     Belize  1992 18.27473717
## 37112                                     Belize  1992 18.27473717
## 37126                                      Benin  1992 33.94190414
## 37128                                      Benin  1992 33.94190414
## 37129                                      Benin  1992 33.94190414
## 37130                                      Benin  1992 33.94190414
## 37131                                      Benin  1992 33.94190414
## 37133                                      Benin  1992 33.94190414
## 37134                                      Benin  1992 33.94190414
## 37135                                      Benin  1992 33.94190414
## 37136                                      Benin  1992 33.94190414
## 37137                                      Benin  1992 33.94190414
## 37146                                      Benin  1992 33.94190414
## 37147                                      Benin  1992 33.94190414
## 37148                                      Benin  1992 33.94190414
## 37150                                      Benin  1992 33.94190414
## 37151                                      Benin  1992 33.94190414
## 37188                                      Benin  1992 33.94190414
## 37189                                      Benin  1992 33.94190414
## 37190                                      Benin  1992 33.94190414
## 37191                                      Benin  1992 33.94190414
## 37192                                      Benin  1992 33.94190414
## 37193                                      Benin  1992 33.94190414
## 37194                                      Benin  1992 33.94190414
## 37196                                      Benin  1992 33.94190414
## 37197                                      Benin  1992 33.94190414
## 37198                                      Benin  1992 33.94190414
## 37199                                      Benin  1992 33.94190414
## 37212                                      Benin  1992 33.94190414
## 37213                                      Benin  1992 33.94190414
## 37256                                      Benin  1992 33.94190414
## 37257                                      Benin  1992 33.94190414
## 37258                                      Benin  1992 33.94190414
## 37259                                      Benin  1992 33.94190414
## 37260                                      Benin  1992 33.94190414
## 37276                                     Bhutan  1992 34.35496639
## 37277                                     Bhutan  1992 34.35496639
## 37278                                     Bhutan  1992 34.35496639
## 37279                                     Bhutan  1992 34.35496639
## 37281                                     Bhutan  1992 34.35496639
## 37282                                     Bhutan  1992 34.35496639
## 37283                                     Bhutan  1992 34.35496639
## 37285                                     Bhutan  1992 34.35496639
## 37338                                     Bhutan  1992 34.35496639
## 37339                                     Bhutan  1992 34.35496639
## 37340                                     Bhutan  1992 34.35496639
## 37341                                     Bhutan  1992 34.35496639
## 37342                                     Bhutan  1992 34.35496639
## 37343                                     Bhutan  1992 34.35496639
## 37345                                     Bhutan  1992 34.35496639
## 37346                                     Bhutan  1992 34.35496639
## 37347                                     Bhutan  1992 34.35496639
## 37348                                     Bhutan  1992 34.35496639
## 37361                                     Bhutan  1992 34.35496639
## 37362                                     Bhutan  1992 34.35496639
## 37403                                     Bhutan  1992 34.35496639
## 37404                                     Bhutan  1992 34.35496639
## 37405                                     Bhutan  1992 34.35496639
## 37420           Bolivia (Plurinational State of)  1992 16.02685120
## 37422           Bolivia (Plurinational State of)  1992 16.02685120
## 37423           Bolivia (Plurinational State of)  1992 16.02685120
## 37424           Bolivia (Plurinational State of)  1992 16.02685120
## 37425           Bolivia (Plurinational State of)  1992 16.02685120
## 37427           Bolivia (Plurinational State of)  1992 16.02685120
## 37428           Bolivia (Plurinational State of)  1992 16.02685120
## 37429           Bolivia (Plurinational State of)  1992 16.02685120
## 37430           Bolivia (Plurinational State of)  1992 16.02685120
## 37431           Bolivia (Plurinational State of)  1992 16.02685120
## 37439           Bolivia (Plurinational State of)  1992 16.02685120
## 37440           Bolivia (Plurinational State of)  1992 16.02685120
## 37441           Bolivia (Plurinational State of)  1992 16.02685120
## 37443           Bolivia (Plurinational State of)  1992 16.02685120
## 37444           Bolivia (Plurinational State of)  1992 16.02685120
## 37481           Bolivia (Plurinational State of)  1992 16.02685120
## 37482           Bolivia (Plurinational State of)  1992 16.02685120
## 37483           Bolivia (Plurinational State of)  1992 16.02685120
## 37484           Bolivia (Plurinational State of)  1992 16.02685120
## 37485           Bolivia (Plurinational State of)  1992 16.02685120
## 37486           Bolivia (Plurinational State of)  1992 16.02685120
## 37487           Bolivia (Plurinational State of)  1992 16.02685120
## 37489           Bolivia (Plurinational State of)  1992 16.02685120
## 37490           Bolivia (Plurinational State of)  1992 16.02685120
## 37491           Bolivia (Plurinational State of)  1992 16.02685120
## 37492           Bolivia (Plurinational State of)  1992 16.02685120
## 37505           Bolivia (Plurinational State of)  1992 16.02685120
## 37506           Bolivia (Plurinational State of)  1992 16.02685120
## 37549           Bolivia (Plurinational State of)  1992 16.02685120
## 37550           Bolivia (Plurinational State of)  1992 16.02685120
## 37551           Bolivia (Plurinational State of)  1992 16.02685120
## 37552           Bolivia (Plurinational State of)  1992 16.02685120
## 37553           Bolivia (Plurinational State of)  1992 16.02685120
## 37566                                   Botswana  1992  5.20492917
## 37568                                   Botswana  1992  5.20492917
## 37569                                   Botswana  1992  5.20492917
## 37570                                   Botswana  1992  5.20492917
## 37571                                   Botswana  1992  5.20492917
## 37573                                   Botswana  1992  5.20492917
## 37574                                   Botswana  1992  5.20492917
## 37575                                   Botswana  1992  5.20492917
## 37576                                   Botswana  1992  5.20492917
## 37577                                   Botswana  1992  5.20492917
## 37578                                   Botswana  1992  5.20492917
## 37579                                   Botswana  1992  5.20492917
## 37585                                   Botswana  1992  5.20492917
## 37586                                   Botswana  1992  5.20492917
## 37587                                   Botswana  1992  5.20492917
## 37589                                   Botswana  1992  5.20492917
## 37590                                   Botswana  1992  5.20492917
## 37626                                   Botswana  1992  5.20492917
## 37627                                   Botswana  1992  5.20492917
## 37628                                   Botswana  1992  5.20492917
## 37629                                   Botswana  1992  5.20492917
## 37630                                   Botswana  1992  5.20492917
## 37631                                   Botswana  1992  5.20492917
## 37632                                   Botswana  1992  5.20492917
## 37634                                   Botswana  1992  5.20492917
## 37635                                   Botswana  1992  5.20492917
## 37636                                   Botswana  1992  5.20492917
## 37637                                   Botswana  1992  5.20492917
## 37650                                   Botswana  1992  5.20492917
## 37651                                   Botswana  1992  5.20492917
## 37681                                   Botswana  1992  5.20492917
## 37682                                   Botswana  1992  5.20492917
## 37683                                   Botswana  1992  5.20492917
## 37684                                   Botswana  1992  5.20492917
## 37685                                   Botswana  1992  5.20492917
## 37698                                     Brazil  1992  7.71999756
## 37700                                     Brazil  1992  7.71999756
## 37701                                     Brazil  1992  7.71999756
## 37702                                     Brazil  1992  7.71999756
## 37703                                     Brazil  1992  7.71999756
## 37705                                     Brazil  1992  7.71999756
## 37706                                     Brazil  1992  7.71999756
## 37707                                     Brazil  1992  7.71999756
## 37708                                     Brazil  1992  7.71999756
## 37709                                     Brazil  1992  7.71999756
## 37718                                     Brazil  1992  7.71999756
## 37719                                     Brazil  1992  7.71999756
## 37720                                     Brazil  1992  7.71999756
## 37722                                     Brazil  1992  7.71999756
## 37723                                     Brazil  1992  7.71999756
## 37764                                     Brazil  1992  7.71999756
## 37765                                     Brazil  1992  7.71999756
## 37766                                     Brazil  1992  7.71999756
## 37767                                     Brazil  1992  7.71999756
## 37768                                     Brazil  1992  7.71999756
## 37769                                     Brazil  1992  7.71999756
## 37770                                     Brazil  1992  7.71999756
## 37772                                     Brazil  1992  7.71999756
## 37773                                     Brazil  1992  7.71999756
## 37774                                     Brazil  1992  7.71999756
## 37775                                     Brazil  1992  7.71999756
## 37788                                     Brazil  1992  7.71999756
## 37789                                     Brazil  1992  7.71999756
## 37834                                     Brazil  1992  7.71999756
## 37835                                     Brazil  1992  7.71999756
## 37836                                     Brazil  1992  7.71999756
## 37837                                     Brazil  1992  7.71999756
## 37838                                     Brazil  1992  7.71999756
## 37852                          Brunei Darussalam  1992  0.96520910
## 37854                          Brunei Darussalam  1992  0.96520910
## 37855                          Brunei Darussalam  1992  0.96520910
## 37856                          Brunei Darussalam  1992  0.96520910
## 37857                          Brunei Darussalam  1992  0.96520910
## 37859                          Brunei Darussalam  1992  0.96520910
## 37860                          Brunei Darussalam  1992  0.96520910
## 37861                          Brunei Darussalam  1992  0.96520910
## 37862                          Brunei Darussalam  1992  0.96520910
## 37863                          Brunei Darussalam  1992  0.96520910
## 37864                          Brunei Darussalam  1992  0.96520910
## 37865                          Brunei Darussalam  1992  0.96520910
## 37872                          Brunei Darussalam  1992  0.96520910
## 37873                          Brunei Darussalam  1992  0.96520910
## 37874                          Brunei Darussalam  1992  0.96520910
## 37876                          Brunei Darussalam  1992  0.96520910
## 37877                          Brunei Darussalam  1992  0.96520910
## 37911                          Brunei Darussalam  1992  0.96520910
## 37912                          Brunei Darussalam  1992  0.96520910
## 37913                          Brunei Darussalam  1992  0.96520910
## 37914                          Brunei Darussalam  1992  0.96520910
## 37915                          Brunei Darussalam  1992  0.96520910
## 37916                          Brunei Darussalam  1992  0.96520910
## 37917                          Brunei Darussalam  1992  0.96520910
## 37918                          Brunei Darussalam  1992  0.96520910
## 37919                          Brunei Darussalam  1992  0.96520910
## 37920                          Brunei Darussalam  1992  0.96520910
## 37932                          Brunei Darussalam  1992  0.96520910
## 37933                          Brunei Darussalam  1992  0.96520910
## 37951                          Brunei Darussalam  1992  0.96520910
## 37953                          Brunei Darussalam  1992  0.96520910
## 37967                                   Bulgaria  1992 12.93913410
## 37969                                   Bulgaria  1992 12.93913410
## 37970                                   Bulgaria  1992 12.93913410
## 37971                                   Bulgaria  1992 12.93913410
## 37972                                   Bulgaria  1992 12.93913410
## 37974                                   Bulgaria  1992 12.93913410
## 37975                                   Bulgaria  1992 12.93913410
## 37976                                   Bulgaria  1992 12.93913410
## 37977                                   Bulgaria  1992 12.93913410
## 37978                                   Bulgaria  1992 12.93913410
## 37979                                   Bulgaria  1992 12.93913410
## 37980                                   Bulgaria  1992 12.93913410
## 37987                                   Bulgaria  1992 12.93913410
## 37988                                   Bulgaria  1992 12.93913410
## 37989                                   Bulgaria  1992 12.93913410
## 37991                                   Bulgaria  1992 12.93913410
## 37992                                   Bulgaria  1992 12.93913410
## 38030                                   Bulgaria  1992 12.93913410
## 38031                                   Bulgaria  1992 12.93913410
## 38032                                   Bulgaria  1992 12.93913410
## 38033                                   Bulgaria  1992 12.93913410
## 38034                                   Bulgaria  1992 12.93913410
## 38035                                   Bulgaria  1992 12.93913410
## 38036                                   Bulgaria  1992 12.93913410
## 38037                                   Bulgaria  1992 12.93913410
## 38038                                   Bulgaria  1992 12.93913410
## 38039                                   Bulgaria  1992 12.93913410
## 38040                                   Bulgaria  1992 12.93913410
## 38053                                   Bulgaria  1992 12.93913410
## 38054                                   Bulgaria  1992 12.93913410
## 38084                                   Bulgaria  1992 12.93913410
## 38085                                   Bulgaria  1992 12.93913410
## 38086                                   Bulgaria  1992 12.93913410
## 38102                               Burkina Faso  1992 30.17491622
## 38103                               Burkina Faso  1992 30.17491622
## 38104                               Burkina Faso  1992 30.17491622
## 38105                               Burkina Faso  1992 30.17491622
## 38107                               Burkina Faso  1992 30.17491622
## 38108                               Burkina Faso  1992 30.17491622
## 38109                               Burkina Faso  1992 30.17491622
## 38111                               Burkina Faso  1992 30.17491622
## 38112                               Burkina Faso  1992 30.17491622
## 38113                               Burkina Faso  1992 30.17491622
## 38162                               Burkina Faso  1992 30.17491622
## 38163                               Burkina Faso  1992 30.17491622
## 38164                               Burkina Faso  1992 30.17491622
## 38165                               Burkina Faso  1992 30.17491622
## 38166                               Burkina Faso  1992 30.17491622
## 38167                               Burkina Faso  1992 30.17491622
## 38168                               Burkina Faso  1992 30.17491622
## 38170                               Burkina Faso  1992 30.17491622
## 38171                               Burkina Faso  1992 30.17491622
## 38172                               Burkina Faso  1992 30.17491622
## 38173                               Burkina Faso  1992 30.17491622
## 38186                               Burkina Faso  1992 30.17491622
## 38187                               Burkina Faso  1992 30.17491622
## 38231                               Burkina Faso  1992 30.17491622
## 38232                               Burkina Faso  1992 30.17491622
## 38233                               Burkina Faso  1992 30.17491622
## 38235                               Burkina Faso  1992 30.17491622
## 38248                                    Burundi  1992 53.53346466
## 38250                                    Burundi  1992 53.53346466
## 38251                                    Burundi  1992 53.53346466
## 38252                                    Burundi  1992 53.53346466
## 38253                                    Burundi  1992 53.53346466
## 38255                                    Burundi  1992 53.53346466
## 38256                                    Burundi  1992 53.53346466
## 38257                                    Burundi  1992 53.53346466
## 38258                                    Burundi  1992 53.53346466
## 38259                                    Burundi  1992 53.53346466
## 38260                                    Burundi  1992 53.53346466
## 38261                                    Burundi  1992 53.53346466
## 38268                                    Burundi  1992 53.53346466
## 38269                                    Burundi  1992 53.53346466
## 38270                                    Burundi  1992 53.53346466
## 38272                                    Burundi  1992 53.53346466
## 38273                                    Burundi  1992 53.53346466
## 38309                                    Burundi  1992 53.53346466
## 38310                                    Burundi  1992 53.53346466
## 38311                                    Burundi  1992 53.53346466
## 38312                                    Burundi  1992 53.53346466
## 38313                                    Burundi  1992 53.53346466
## 38314                                    Burundi  1992 53.53346466
## 38315                                    Burundi  1992 53.53346466
## 38317                                    Burundi  1992 53.53346466
## 38318                                    Burundi  1992 53.53346466
## 38319                                    Burundi  1992 53.53346466
## 38320                                    Burundi  1992 53.53346466
## 38333                                    Burundi  1992 53.53346466
## 38334                                    Burundi  1992 53.53346466
## 38377                                    Burundi  1992 53.53346466
## 38378                                    Burundi  1992 53.53346466
## 38379                                    Burundi  1992 53.53346466
## 38380                                    Burundi  1992 53.53346466
## 38395                                   Cameroon  1992 27.27185284
## 38397                                   Cameroon  1992 27.27185284
## 38398                                   Cameroon  1992 27.27185284
## 38399                                   Cameroon  1992 27.27185284
## 38400                                   Cameroon  1992 27.27185284
## 38402                                   Cameroon  1992 27.27185284
## 38403                                   Cameroon  1992 27.27185284
## 38404                                   Cameroon  1992 27.27185284
## 38405                                   Cameroon  1992 27.27185284
## 38406                                   Cameroon  1992 27.27185284
## 38407                                   Cameroon  1992 27.27185284
## 38415                                   Cameroon  1992 27.27185284
## 38416                                   Cameroon  1992 27.27185284
## 38417                                   Cameroon  1992 27.27185284
## 38419                                   Cameroon  1992 27.27185284
## 38420                                   Cameroon  1992 27.27185284
## 38458                                   Cameroon  1992 27.27185284
## 38459                                   Cameroon  1992 27.27185284
## 38460                                   Cameroon  1992 27.27185284
## 38461                                   Cameroon  1992 27.27185284
## 38462                                   Cameroon  1992 27.27185284
## 38463                                   Cameroon  1992 27.27185284
## 38464                                   Cameroon  1992 27.27185284
## 38466                                   Cameroon  1992 27.27185284
## 38467                                   Cameroon  1992 27.27185284
## 38468                                   Cameroon  1992 27.27185284
## 38469                                   Cameroon  1992 27.27185284
## 38482                                   Cameroon  1992 27.27185284
## 38483                                   Cameroon  1992 27.27185284
## 38526                                   Cameroon  1992 27.27185284
## 38527                                   Cameroon  1992 27.27185284
## 38528                                   Cameroon  1992 27.27185284
## 38529                                   Cameroon  1992 27.27185284
## 38530                                   Cameroon  1992 27.27185284
## 38544                   Central African Republic  1992 46.86938872
## 38546                   Central African Republic  1992 46.86938872
## 38547                   Central African Republic  1992 46.86938872
## 38548                   Central African Republic  1992 46.86938872
## 38549                   Central African Republic  1992 46.86938872
## 38551                   Central African Republic  1992 46.86938872
## 38552                   Central African Republic  1992 46.86938872
## 38553                   Central African Republic  1992 46.86938872
## 38554                   Central African Republic  1992 46.86938872
## 38555                   Central African Republic  1992 46.86938872
## 38556                   Central African Republic  1992 46.86938872
## 38557                   Central African Republic  1992 46.86938872
## 38564                   Central African Republic  1992 46.86938872
## 38565                   Central African Republic  1992 46.86938872
## 38566                   Central African Republic  1992 46.86938872
## 38568                   Central African Republic  1992 46.86938872
## 38569                   Central African Republic  1992 46.86938872
## 38605                   Central African Republic  1992 46.86938872
## 38606                   Central African Republic  1992 46.86938872
## 38607                   Central African Republic  1992 46.86938872
## 38608                   Central African Republic  1992 46.86938872
## 38609                   Central African Republic  1992 46.86938872
## 38610                   Central African Republic  1992 46.86938872
## 38611                   Central African Republic  1992 46.86938872
## 38613                   Central African Republic  1992 46.86938872
## 38614                   Central African Republic  1992 46.86938872
## 38615                   Central African Republic  1992 46.86938872
## 38616                   Central African Republic  1992 46.86938872
## 38629                   Central African Republic  1992 46.86938872
## 38630                   Central African Republic  1992 46.86938872
## 38672                   Central African Republic  1992 46.86938872
## 38673                   Central African Republic  1992 46.86938872
## 38674                   Central African Republic  1992 46.86938872
## 38675                   Central African Republic  1992 46.86938872
## 38676                   Central African Republic  1992 46.86938872
## 38690                                       Chad  1992 35.34349528
## 38691                                       Chad  1992 35.34349528
## 38692                                       Chad  1992 35.34349528
## 38693                                       Chad  1992 35.34349528
## 38695                                       Chad  1992 35.34349528
## 38696                                       Chad  1992 35.34349528
## 38697                                       Chad  1992 35.34349528
## 38699                                       Chad  1992 35.34349528
## 38749                                       Chad  1992 35.34349528
## 38750                                       Chad  1992 35.34349528
## 38751                                       Chad  1992 35.34349528
## 38752                                       Chad  1992 35.34349528
## 38753                                       Chad  1992 35.34349528
## 38754                                       Chad  1992 35.34349528
## 38755                                       Chad  1992 35.34349528
## 38757                                       Chad  1992 35.34349528
## 38758                                       Chad  1992 35.34349528
## 38759                                       Chad  1992 35.34349528
## 38760                                       Chad  1992 35.34349528
## 38773                                       Chad  1992 35.34349528
## 38774                                       Chad  1992 35.34349528
## 38816                                       Chad  1992 35.34349528
## 38817                                       Chad  1992 35.34349528
## 38818                                       Chad  1992 35.34349528
## 38819                                       Chad  1992 35.34349528
## 38820                                       Chad  1992 35.34349528
## 38833                                      Chile  1992 10.27204904
## 38835                                      Chile  1992 10.27204904
## 38836                                      Chile  1992 10.27204904
## 38837                                      Chile  1992 10.27204904
## 38838                                      Chile  1992 10.27204904
## 38840                                      Chile  1992 10.27204904
## 38841                                      Chile  1992 10.27204904
## 38842                                      Chile  1992 10.27204904
## 38843                                      Chile  1992 10.27204904
## 38844                                      Chile  1992 10.27204904
## 38845                                      Chile  1992 10.27204904
## 38846                                      Chile  1992 10.27204904
## 38853                                      Chile  1992 10.27204904
## 38854                                      Chile  1992 10.27204904
## 38855                                      Chile  1992 10.27204904
## 38857                                      Chile  1992 10.27204904
## 38858                                      Chile  1992 10.27204904
## 38878                                      Chile  1992 10.27204904
## 38879                                      Chile  1992 10.27204904
## 38881                                      Chile  1992 10.27204904
## 38883                                      Chile  1992 10.27204904
## 38884                                      Chile  1992 10.27204904
## 38895                                      Chile  1992 10.27204904
## 38896                                      Chile  1992 10.27204904
## 38897                                      Chile  1992 10.27204904
## 38898                                      Chile  1992 10.27204904
## 38899                                      Chile  1992 10.27204904
## 38900                                      Chile  1992 10.27204904
## 38901                                      Chile  1992 10.27204904
## 38902                                      Chile  1992 10.27204904
## 38903                                      Chile  1992 10.27204904
## 38904                                      Chile  1992 10.27204904
## 38905                                      Chile  1992 10.27204904
## 38918                                      Chile  1992 10.27204904
## 38919                                      Chile  1992 10.27204904
## 38949                                      Chile  1992 10.27204904
## 38950                                      Chile  1992 10.27204904
## 38951                                      Chile  1992 10.27204904
## 38952                                      Chile  1992 10.27204904
## 38967                                      China  1992 21.32886138
## 38969                                      China  1992 21.32886138
## 38970                                      China  1992 21.32886138
## 38971                                      China  1992 21.32886138
## 38972                                      China  1992 21.32886138
## 38974                                      China  1992 21.32886138
## 38975                                      China  1992 21.32886138
## 38976                                      China  1992 21.32886138
## 38977                                      China  1992 21.32886138
## 38978                                      China  1992 21.32886138
## 38979                                      China  1992 21.32886138
## 38980                                      China  1992 21.32886138
## 38987                                      China  1992 21.32886138
## 38988                                      China  1992 21.32886138
## 38989                                      China  1992 21.32886138
## 38991                                      China  1992 21.32886138
## 38992                                      China  1992 21.32886138
## 39028                                      China  1992 21.32886138
## 39029                                      China  1992 21.32886138
## 39030                                      China  1992 21.32886138
## 39031                                      China  1992 21.32886138
## 39032                                      China  1992 21.32886138
## 39033                                      China  1992 21.32886138
## 39035                                      China  1992 21.32886138
## 39036                                      China  1992 21.32886138
## 39037                                      China  1992 21.32886138
## 39038                                      China  1992 21.32886138
## 39050                                      China  1992 21.32886138
## 39051                                      China  1992 21.32886138
## 39093                                      China  1992 21.32886138
## 39094                                      China  1992 21.32886138
## 39095                                      China  1992 21.32886138
## 39096                                      China  1992 21.32886138
## 39097                                      China  1992 21.32886138
## 39109                                   Colombia  1992 15.79826406
## 39111                                   Colombia  1992 15.79826406
## 39112                                   Colombia  1992 15.79826406
## 39113                                   Colombia  1992 15.79826406
## 39114                                   Colombia  1992 15.79826406
## 39116                                   Colombia  1992 15.79826406
## 39117                                   Colombia  1992 15.79826406
## 39118                                   Colombia  1992 15.79826406
## 39119                                   Colombia  1992 15.79826406
## 39120                                   Colombia  1992 15.79826406
## 39121                                   Colombia  1992 15.79826406
## 39122                                   Colombia  1992 15.79826406
## 39129                                   Colombia  1992 15.79826406
## 39130                                   Colombia  1992 15.79826406
## 39131                                   Colombia  1992 15.79826406
## 39133                                   Colombia  1992 15.79826406
## 39134                                   Colombia  1992 15.79826406
## 39175                                   Colombia  1992 15.79826406
## 39176                                   Colombia  1992 15.79826406
## 39177                                   Colombia  1992 15.79826406
## 39178                                   Colombia  1992 15.79826406
## 39179                                   Colombia  1992 15.79826406
## 39180                                   Colombia  1992 15.79826406
## 39181                                   Colombia  1992 15.79826406
## 39183                                   Colombia  1992 15.79826406
## 39184                                   Colombia  1992 15.79826406
## 39185                                   Colombia  1992 15.79826406
## 39186                                   Colombia  1992 15.79826406
## 39199                                   Colombia  1992 15.79826406
## 39200                                   Colombia  1992 15.79826406
## 39245                                   Colombia  1992 15.79826406
## 39246                                   Colombia  1992 15.79826406
## 39247                                   Colombia  1992 15.79826406
## 39248                                   Colombia  1992 15.79826406
## 39249                                   Colombia  1992 15.79826406
## 39263                                      Congo  1992 11.52756311
## 39265                                      Congo  1992 11.52756311
## 39266                                      Congo  1992 11.52756311
## 39267                                      Congo  1992 11.52756311
## 39268                                      Congo  1992 11.52756311
## 39270                                      Congo  1992 11.52756311
## 39271                                      Congo  1992 11.52756311
## 39272                                      Congo  1992 11.52756311
## 39273                                      Congo  1992 11.52756311
## 39274                                      Congo  1992 11.52756311
## 39275                                      Congo  1992 11.52756311
## 39276                                      Congo  1992 11.52756311
## 39283                                      Congo  1992 11.52756311
## 39284                                      Congo  1992 11.52756311
## 39285                                      Congo  1992 11.52756311
## 39287                                      Congo  1992 11.52756311
## 39288                                      Congo  1992 11.52756311
## 39323                                      Congo  1992 11.52756311
## 39324                                      Congo  1992 11.52756311
## 39325                                      Congo  1992 11.52756311
## 39326                                      Congo  1992 11.52756311
## 39327                                      Congo  1992 11.52756311
## 39328                                      Congo  1992 11.52756311
##                                 dimension indicator_id
## 2229                    Composite indices       137506
## 2230                           Demography        47906
## 2231                           Demography       122006
## 2232                           Demography        63106
## 2233                           Demography       132706
## 2234                           Demography       132806
## 2235                           Demography        49006
## 2236                           Demography        44206
## 2237                           Demography        45106
## 2238                           Demography       121206
## 2239                            Education       103706
## 2240                            Education        69706
## 2241                            Education       123306
## 2242                            Education       123406
## 2244                            Education       133006
## 2245                            Education        63206
## 2246                            Education        63306
## 2247                            Education        63406
## 2249                            Education       103006
## 2250                            Education        24106
## 2251                            Education        24206
## 2252                            Education        23806
## 2253                            Education        23906
## 2254                            Education        24006
## 2262         Environmental sustainability       174406
## 2263         Environmental sustainability        27706
## 2264         Environmental sustainability       100806
## 2266         Environmental sustainability       174306
## 2267         Environmental sustainability        97106
## 2271         Environmental sustainability       163906
## 2272                               Gender        36806
## 2285                               Gender        89006
## 2286                               Gender       181206
## 2296                               Health        58006
## 2297                               Health        64406
## 2298                               Health        64306
## 2299                               Health        69206
## 2300                               Health       120606
## 2301                               Health       121106
## 2302                               Health       103206
## 2303                               Health        57806
## 2304                               Health        57206
## 2305                               Health        57906
## 2306                               Health        57506
## 2316      Income/composition of resources       136706
## 2317      Income/composition of resources       143306
## 2318      Income/composition of resources        65606
## 2319      Income/composition of resources       141706
## 2320      Income/composition of resources       103606
## 2337           Mobility and communication       110806
## 2352        Socio-economic sustainability       164406
## 2354        Socio-economic sustainability       178306
## 2361        Socio-economic sustainability       181706
## 2364            Trade and financial flows       133206
## 2366            Trade and financial flows        99106
## 2367            Trade and financial flows       111306
## 2373   Work, employment and vulnerability       148206
## 2374   Work, employment and vulnerability        48706
## 2375   Work, employment and vulnerability        48806
## 2382                    Composite indices       137506
## 2383                           Demography        47906
## 2384                           Demography       122006
## 2385                           Demography        63106
## 2386                           Demography       132706
## 2387                           Demography       132806
## 2388                           Demography        49006
## 2389                           Demography        44206
## 2390                           Demography        45106
## 2391                           Demography       121206
## 2392                            Education       103706
## 2393                            Education        69706
## 2398                            Education        63206
## 2399                            Education        63306
## 2400                            Education        63406
## 2402                            Education       103006
## 2403                            Education        24106
## 2404                            Education        24206
## 2405                            Education        23806
## 2406                            Education        23906
## 2407                            Education        24006
## 2408                            Education        46106
## 2414                            Education        46206
## 2415                            Education       177706
## 2416         Environmental sustainability       174406
## 2417         Environmental sustainability        27706
## 2418         Environmental sustainability       100806
## 2420         Environmental sustainability       174306
## 2421         Environmental sustainability        97106
## 2425         Environmental sustainability       163906
## 2426                               Gender        36806
## 2439                               Gender        89006
## 2449                               Health        58006
## 2450                               Health        64406
## 2451                               Health        64306
## 2452                               Health        69206
## 2453                               Health       120606
## 2454                               Health       121106
## 2455                               Health       103206
## 2457                               Health        57806
## 2458                               Health        57206
## 2459                               Health        57906
## 2460                               Health        57506
## 2469      Income/composition of resources       127606
## 2470      Income/composition of resources       136706
## 2471      Income/composition of resources       143306
## 2472      Income/composition of resources        65606
## 2473      Income/composition of resources       141706
## 2474      Income/composition of resources       103606
## 2491           Mobility and communication       110806
## 2506        Socio-economic sustainability       164406
## 2508        Socio-economic sustainability       178306
## 2513        Socio-economic sustainability       181706
## 2515        Socio-economic sustainability       174206
## 2516            Trade and financial flows       133206
## 2517            Trade and financial flows        53506
## 2518            Trade and financial flows        99106
## 2519            Trade and financial flows       111306
## 2520            Trade and financial flows        52606
## 2525   Work, employment and vulnerability       148206
## 2526   Work, employment and vulnerability        48706
## 2527   Work, employment and vulnerability        48806
## 2535                           Demography        47906
## 2536                           Demography       122006
## 2537                           Demography        63106
## 2538                           Demography       132706
## 2539                           Demography       132806
## 2540                           Demography        49006
## 2541                           Demography        44206
## 2542                           Demography        45106
## 2543                           Demography       121206
## 2545                            Education        69706
## 2549                            Education       133006
## 2550                            Education        63206
## 2551                            Education        63306
## 2552                            Education        63406
## 2555                            Education        46106
## 2558         Environmental sustainability       174406
## 2559         Environmental sustainability        27706
## 2560         Environmental sustainability       100806
## 2562         Environmental sustainability       174306
## 2567         Environmental sustainability       163906
## 2568                               Gender        36806
## 2576                               Gender        89006
## 2587                               Health        58006
## 2588                               Health        64406
## 2589                               Health        64306
## 2590                               Health        69206
## 2591                               Health       120606
## 2592                               Health       121106
## 2593                               Health       103206
## 2595                               Health        57806
## 2596                               Health        57206
## 2597                               Health        57906
## 2598                               Health        57506
## 2608      Income/composition of resources       136706
## 2609      Income/composition of resources       143306
## 2610      Income/composition of resources        65606
## 2611      Income/composition of resources       141706
## 2612      Income/composition of resources       103606
## 2629           Mobility and communication       110806
## 2644        Socio-economic sustainability       164406
## 2646        Socio-economic sustainability       178306
## 2651        Socio-economic sustainability       181706
## 2653        Socio-economic sustainability       174206
## 2654            Trade and financial flows       133206
## 2655            Trade and financial flows        53506
## 2656            Trade and financial flows        99106
## 2657            Trade and financial flows       111306
## 2663   Work, employment and vulnerability       148206
## 2664   Work, employment and vulnerability        48706
## 2665   Work, employment and vulnerability        48806
## 2673                           Demography        47906
## 2674                           Demography       122006
## 2675                           Demography        63106
## 2676                           Demography       132706
## 2677                           Demography       132806
## 2678                           Demography        49006
## 2679                           Demography        44206
## 2680                           Demography        45106
## 2681                           Demography       121206
## 2696         Environmental sustainability       174406
## 2697         Environmental sustainability        27706
## 2698         Environmental sustainability       100806
## 2700         Environmental sustainability       174306
## 2701         Environmental sustainability        97106
## 2705         Environmental sustainability       163906
## 2706                               Gender        36806
## 2712                               Health        64406
## 2713                               Health        64306
## 2714                               Health        69206
## 2715                               Health       120606
## 2716                               Health       121106
## 2717                               Health       103206
## 2718                               Health        57806
## 2719                               Health        57206
## 2720                               Health        57906
## 2721                               Health        57506
## 2729      Income/composition of resources       127606
## 2730      Income/composition of resources       136706
## 2731      Income/composition of resources       143306
## 2732      Income/composition of resources       141706
## 2733      Income/composition of resources       103606
## 2740           Mobility and communication       110806
## 2744        Socio-economic sustainability       181706
## 2745            Trade and financial flows       133206
## 2746            Trade and financial flows        53506
## 2747            Trade and financial flows        99106
## 2748            Trade and financial flows       111306
## 2749            Trade and financial flows        52606
## 2752                    Composite indices       137506
## 2753                           Demography        47906
## 2754                           Demography       122006
## 2755                           Demography        63106
## 2756                           Demography       132706
## 2757                           Demography       132806
## 2758                           Demography        49006
## 2759                           Demography        44206
## 2760                           Demography        45106
## 2761                           Demography       121206
## 2762                            Education       103706
## 2763                            Education        69706
## 2766                            Education       149206
## 2768                            Education        63206
## 2769                            Education        63306
## 2772                            Education       103006
## 2773                            Education        24106
## 2774                            Education        24206
## 2775                            Education        23806
## 2776                            Education        23906
## 2777                            Education        24006
## 2785         Environmental sustainability       174406
## 2786         Environmental sustainability        27706
## 2787         Environmental sustainability       100806
## 2789         Environmental sustainability       174306
## 2794         Environmental sustainability       163906
## 2795                               Gender        36806
## 2807                               Gender        89006
## 2808                               Gender       181206
## 2815                               Health        58006
## 2816                               Health        64406
## 2817                               Health        64306
## 2818                               Health        69206
## 2819                               Health       120606
## 2820                               Health       121106
## 2821                               Health       103206
## 2823                               Health        57806
## 2824                               Health        57206
## 2825                               Health        57906
## 2826                               Health        57506
## 2835      Income/composition of resources       127606
## 2836      Income/composition of resources       136706
## 2837      Income/composition of resources       143306
## 2838      Income/composition of resources        65606
## 2839      Income/composition of resources       141706
## 2840      Income/composition of resources       103606
## 2858           Mobility and communication       110806
## 2860        Socio-economic sustainability       164406
## 2862        Socio-economic sustainability       178306
## 2869        Socio-economic sustainability       181706
## 2871        Socio-economic sustainability       174206
## 2872            Trade and financial flows       133206
## 2873            Trade and financial flows        53506
## 2874            Trade and financial flows        99106
## 2875            Trade and financial flows       111306
## 2876            Trade and financial flows        52606
## 2880   Work, employment and vulnerability       148206
## 2881   Work, employment and vulnerability        48706
## 2882   Work, employment and vulnerability        48806
## 2889                    Composite indices       137506
## 2890                           Demography        47906
## 2891                           Demography       122006
## 2892                           Demography        63106
## 2893                           Demography       132706
## 2894                           Demography       132806
## 2895                           Demography        49006
## 2896                           Demography        44206
## 2897                           Demography        45106
## 2898                           Demography       121206
## 2899                            Education       103706
## 2900                            Education        69706
## 2904                            Education       133006
## 2907                            Education        63406
## 2909                            Education       103006
## 2910                            Education        24106
## 2911                            Education        24206
## 2912                            Education        23806
## 2913                            Education        23906
## 2914                            Education        24006
## 2922         Environmental sustainability       100806
## 2924         Environmental sustainability       174306
## 2929         Environmental sustainability       163906
## 2930                               Gender        36806
## 2942                               Gender        89006
## 2943                               Gender       181206
## 2953                               Health        58006
## 2956                               Health        69206
## 2957                               Health       120606
## 2958                               Health       121106
## 2959                               Health       103206
## 2960                               Health        57806
## 2961                               Health        57206
## 2962                               Health        57906
## 2963                               Health        57506
## 2973      Income/composition of resources       136706
## 2974      Income/composition of resources       143306
## 2975      Income/composition of resources        65606
## 2976      Income/composition of resources       141706
## 2977      Income/composition of resources       103606
## 2995           Mobility and communication       110806
## 3012        Socio-economic sustainability       178306
## 3019        Socio-economic sustainability       181706
## 3022            Trade and financial flows       133206
## 3031   Work, employment and vulnerability       148206
## 3032   Work, employment and vulnerability        48706
## 3033   Work, employment and vulnerability        48806
## 3040                    Composite indices       137506
## 3041                           Demography        47906
## 3042                           Demography       122006
## 3043                           Demography        63106
## 3044                           Demography       132706
## 3045                           Demography       132806
## 3046                           Demography        49006
## 3047                           Demography        44206
## 3048                           Demography        45106
## 3049                           Demography       121206
## 3050                            Education       103706
## 3051                            Education        69706
## 3052                            Education       123306
## 3053                            Education       123406
## 3054                            Education       149206
## 3055                            Education       133006
## 3056                            Education        63206
## 3058                            Education        63406
## 3059                            Education       103006
## 3060                            Education        24106
## 3061                            Education        24206
## 3062                            Education        23806
## 3063                            Education        23906
## 3064                            Education        24006
## 3069         Environmental sustainability       174406
## 3070         Environmental sustainability        27706
## 3071         Environmental sustainability       100806
## 3073         Environmental sustainability       174306
## 3078         Environmental sustainability       163906
## 3079                               Gender        36806
## 3091                               Gender        89006
## 3101                               Health        58006
## 3102                               Health        64406
## 3103                               Health        64306
## 3104                               Health        69206
## 3105                               Health       120606
## 3106                               Health       121106
## 3107                               Health       103206
## 3108                               Health        57806
## 3109                               Health        57206
## 3110                               Health        57906
## 3111                               Health        57506
## 3120      Income/composition of resources       127606
## 3121      Income/composition of resources       136706
## 3122      Income/composition of resources       143306
## 3123      Income/composition of resources        65606
## 3124      Income/composition of resources       141706
## 3125      Income/composition of resources       103606
## 3143           Mobility and communication       110806
## 3144        Socio-economic sustainability       164406
## 3146        Socio-economic sustainability       178306
## 3153        Socio-economic sustainability       181706
## 3155            Trade and financial flows       133206
## 3156            Trade and financial flows        53506
## 3157            Trade and financial flows       111306
## 3158            Trade and financial flows        52606
## 3162   Work, employment and vulnerability       148206
## 3163   Work, employment and vulnerability        48706
## 3164   Work, employment and vulnerability        48806
## 3171                    Composite indices       137506
## 3172                           Demography        47906
## 3173                           Demography       122006
## 3174                           Demography        63106
## 3175                           Demography       132706
## 3176                           Demography       132806
## 3177                           Demography        49006
## 3178                           Demography        44206
## 3179                           Demography        45106
## 3180                           Demography       121206
## 3181                            Education       103706
## 3182                            Education        69706
## 3183                            Education       123306
## 3184                            Education       123406
## 3185                            Education       149206
## 3186                            Education       133006
## 3187                            Education        63206
## 3188                            Education        63306
## 3189                            Education        63406
## 3190                            Education       103006
## 3191                            Education        24106
## 3192                            Education        24206
## 3193                            Education        23806
## 3194                            Education        23906
## 3195                            Education        24006
## 3201                            Education        46206
## 3203         Environmental sustainability       174406
## 3204         Environmental sustainability        27706
## 3205         Environmental sustainability       100806
## 3207         Environmental sustainability       174306
## 3208         Environmental sustainability        97106
## 3212         Environmental sustainability       163906
## 3213                               Gender        36806
## 3224                               Gender        89006
## 3234                               Health        64406
## 3235                               Health        64306
## 3236                               Health        69206
## 3237                               Health       120606
## 3238                               Health       121106
## 3239                               Health       103206
## 3240                               Health        57806
## 3241                               Health        57206
## 3242                               Health        57906
## 3243                               Health        57506
## 3253      Income/composition of resources       136706
## 3254      Income/composition of resources       143306
## 3255      Income/composition of resources        65606
## 3256      Income/composition of resources       141706
## 3257      Income/composition of resources       103606
## 3275           Mobility and communication       110806
## 3278        Socio-economic sustainability       178306
## 3285        Socio-economic sustainability       181706
## 3287            Trade and financial flows       133206
## 3288            Trade and financial flows        53506
## 3290            Trade and financial flows        52606
## 3294   Work, employment and vulnerability       148206
## 3295   Work, employment and vulnerability        48706
## 3296   Work, employment and vulnerability        48806
## 3304                           Demography        47906
## 3305                           Demography       122006
## 3306                           Demography        63106
## 3307                           Demography       132706
## 3308                           Demography       132806
## 3309                           Demography        49006
## 3310                           Demography        44206
## 3311                           Demography        45106
## 3312                           Demography       121206
## 3314                            Education        69706
## 3315                            Education       123306
## 3316                            Education       123406
## 3318                            Education       133006
## 3319                            Education        63206
## 3320                            Education        63306
## 3321                            Education        63406
## 3336         Environmental sustainability       100806
## 3338         Environmental sustainability       174306
## 3343         Environmental sustainability       163906
## 3344                               Gender        36806
## 3356                               Gender        89006
## 3357                               Gender       181206
## 3367                               Health        58006
## 3370                               Health        69206
## 3371                               Health       120606
## 3372                               Health       121106
## 3373                               Health       103206
## 3375                               Health        57806
## 3376                               Health        57206
## 3377                               Health        57906
## 3378                               Health        57506
## 3388      Income/composition of resources       136706
## 3389      Income/composition of resources       143306
## 3390      Income/composition of resources        65606
## 3391      Income/composition of resources       141706
## 3392      Income/composition of resources       103606
## 3410           Mobility and communication       110806
## 3426        Socio-economic sustainability       178306
## 3433        Socio-economic sustainability       181706
## 3436            Trade and financial flows       133206
## 3444   Work, employment and vulnerability       148206
## 3445   Work, employment and vulnerability        48706
## 3446   Work, employment and vulnerability        48806
## 3453                           Demography        47906
## 3454                           Demography       122006
## 3455                           Demography        63106
## 3456                           Demography       132706
## 3457                           Demography       132806
## 3458                           Demography        49006
## 3459                           Demography        44206
## 3460                           Demography        45106
## 3461                           Demography       121206
## 3463                            Education        69706
## 3464                            Education       123306
## 3465                            Education       123406
## 3468                            Education        63206
## 3469                            Education        63306
## 3481         Environmental sustainability       174406
## 3482         Environmental sustainability        27706
## 3483         Environmental sustainability       100806
## 3485         Environmental sustainability       174306
## 3489         Environmental sustainability       163906
## 3490                               Gender        36806
## 3499                               Gender        89006
## 3500                               Gender       181206
## 3506                               Health        58006
## 3507                               Health        64406
## 3508                               Health        64306
## 3509                               Health        69206
## 3510                               Health       120606
## 3511                               Health       121106
## 3512                               Health       103206
## 3513                               Health        57806
## 3514                               Health        57206
## 3515                               Health        57906
## 3516                               Health        57506
## 3524      Income/composition of resources       127606
## 3525      Income/composition of resources       136706
## 3526      Income/composition of resources       143306
## 3527      Income/composition of resources        65606
## 3528      Income/composition of resources       141706
## 3529      Income/composition of resources       103606
## 3542           Mobility and communication       110806
## 3546        Socio-economic sustainability       178306
## 3549        Socio-economic sustainability       181706
## 3551            Trade and financial flows       133206
## 3552            Trade and financial flows        53506
## 3553            Trade and financial flows        99106
## 3558   Work, employment and vulnerability       148206
## 3559   Work, employment and vulnerability        48706
## 3560   Work, employment and vulnerability        48806
## 3566                    Composite indices       137506
## 3567                           Demography        47906
## 3568                           Demography       122006
## 3569                           Demography        63106
## 3570                           Demography       132706
## 3571                           Demography       132806
## 3572                           Demography        49006
## 3573                           Demography        44206
## 3574                           Demography        45106
## 3575                           Demography       121206
## 3576                            Education       103706
## 3577                            Education        69706
## 3578                            Education       123306
## 3579                            Education       123406
## 3580                            Education       149206
## 3582                            Education        63206
## 3583                            Education        63306
## 3584                            Education        63406
## 3586                            Education       103006
## 3587                            Education        24106
## 3588                            Education        24206
## 3589                            Education        23806
## 3590                            Education        23906
## 3591                            Education        24006
## 3595                            Education        46206
## 3597         Environmental sustainability       174406
## 3598         Environmental sustainability        27706
## 3599         Environmental sustainability       100806
## 3601         Environmental sustainability       174306
## 3606         Environmental sustainability       163906
## 3607                               Gender        36806
## 3619                               Gender        89006
## 3630                               Health        58006
## 3631                               Health        64406
## 3632                               Health        64306
## 3633                               Health        69206
## 3634                               Health       120606
## 3635                               Health       121106
## 3636                               Health       103206
## 3638                               Health        57806
## 3639                               Health        57206
## 3640                               Health        57906
## 3641                               Health        57506
## 3650      Income/composition of resources       127606
## 3651      Income/composition of resources       136706
## 3652      Income/composition of resources       143306
## 3653      Income/composition of resources        65606
## 3654      Income/composition of resources       141706
## 3655      Income/composition of resources       103606
## 3673           Mobility and communication       110806
## 3688        Socio-economic sustainability       164406
## 3690        Socio-economic sustainability       178306
## 3698        Socio-economic sustainability       174206
## 3699            Trade and financial flows       133206
## 3700            Trade and financial flows        53506
## 3701            Trade and financial flows        99106
## 3702            Trade and financial flows       111306
## 3703            Trade and financial flows        52606
## 3707   Work, employment and vulnerability       148206
## 3708   Work, employment and vulnerability        48706
## 3709   Work, employment and vulnerability        48806
## 3716                    Composite indices       137506
## 3717                           Demography        47906
## 3718                           Demography       122006
## 3719                           Demography        63106
## 3720                           Demography       132706
## 3721                           Demography       132806
## 3722                           Demography        49006
## 3723                           Demography        44206
## 3724                           Demography        45106
## 3725                           Demography       121206
## 3726                            Education       103706
## 3727                            Education        69706
## 3728                            Education       123306
## 3729                            Education       123406
## 3732                            Education        63206
## 3733                            Education        63306
## 3734                            Education        63406
## 3735                            Education       103006
## 3736                            Education        24106
## 3737                            Education        24206
## 3738                            Education        23806
## 3739                            Education        23906
## 3740                            Education        24006
## 3744                            Education        46206
## 3746         Environmental sustainability       174406
## 3747         Environmental sustainability        27706
## 3748         Environmental sustainability       100806
## 3750         Environmental sustainability       174306
## 3755         Environmental sustainability       163906
## 3756                               Gender        36806
## 3757                               Gender       175206
## 3767                               Gender        89006
## 3776                               Health        58006
## 3777                               Health        64406
## 3778                               Health        64306
## 3779                               Health        69206
## 3780                               Health       120606
## 3781                               Health       121106
## 3782                               Health       103206
## 3783                               Health        57806
## 3784                               Health        57206
## 3785                               Health        57906
## 3786                               Health        57506
## 3795      Income/composition of resources       127606
## 3796      Income/composition of resources       136706
## 3797      Income/composition of resources       143306
## 3798      Income/composition of resources        65606
## 3799      Income/composition of resources       141706
## 3800      Income/composition of resources       103606
## 3814           Mobility and communication       110806
## 3827        Socio-economic sustainability       164406
## 3829        Socio-economic sustainability       178306
## 3833            Trade and financial flows       133206
## 3834            Trade and financial flows        53506
## 3835            Trade and financial flows        99106
## 3836            Trade and financial flows       111306
## 3837            Trade and financial flows        52606
## 3842   Work, employment and vulnerability       148206
## 3843   Work, employment and vulnerability        48706
## 3844   Work, employment and vulnerability        48806
## 3851                           Demography        47906
## 3852                           Demography       122006
## 3853                           Demography        63106
## 3854                           Demography       132706
## 3855                           Demography       132806
## 3856                           Demography        49006
## 3857                           Demography        44206
## 3858                           Demography        45106
## 3859                           Demography       121206
## 3861                            Education        69706
## 3865                            Education       133006
## 3866                            Education        63206
## 3867                            Education        63306
## 3868                            Education        63406
## 3880                            Education       177706
## 3883         Environmental sustainability       100806
## 3885         Environmental sustainability       174306
## 3890         Environmental sustainability       163906
## 3891                               Gender        36806
## 3904                               Gender        89006
## 3905                               Gender       181206
## 3913                               Health        58006
## 3916                               Health        69206
## 3917                               Health       120606
## 3918                               Health       121106
## 3919                               Health       103206
## 3920                               Health        57806
## 3921                               Health        57206
## 3922                               Health        57906
## 3923                               Health        57506
## 3933      Income/composition of resources       136706
## 3934      Income/composition of resources       143306
## 3935      Income/composition of resources        65606
## 3936      Income/composition of resources       141706
## 3937      Income/composition of resources       103606
## 3955           Mobility and communication       110806
## 3959        Socio-economic sustainability       178306
## 3966        Socio-economic sustainability       181706
## 3969            Trade and financial flows       133206
## 3978   Work, employment and vulnerability       148206
## 3979   Work, employment and vulnerability        48706
## 3980   Work, employment and vulnerability        48806
## 3987                    Composite indices       137506
## 3988                           Demography        47906
## 3989                           Demography       122006
## 3990                           Demography        63106
## 3991                           Demography       132706
## 3992                           Demography       132806
## 3993                           Demography        49006
## 3994                           Demography        44206
## 3995                           Demography        45106
## 3996                           Demography       121206
## 3997                            Education       103706
## 3998                            Education        69706
## 4002                            Education       133006
## 4003                            Education        63206
## 4006                            Education       103006
## 4007                            Education        24106
## 4008                            Education        24206
## 4009                            Education        23806
## 4010                            Education        23906
## 4011                            Education        24006
## 4016         Environmental sustainability       174406
## 4017         Environmental sustainability        27706
## 4018         Environmental sustainability       100806
## 4020         Environmental sustainability       174306
## 4025         Environmental sustainability       163906
## 4026                               Gender        36806
## 4039                               Gender        89006
## 4049                               Health        58006
## 4050                               Health        64406
## 4051                               Health        64306
## 4052                               Health        69206
## 4053                               Health       120606
## 4054                               Health       121106
## 4055                               Health       103206
## 4057                               Health        57806
## 4058                               Health        57206
## 4059                               Health        57906
## 4060                               Health        57506
## 4069      Income/composition of resources       127606
## 4070      Income/composition of resources       136706
## 4071      Income/composition of resources       143306
## 4072      Income/composition of resources        65606
## 4073      Income/composition of resources       141706
## 4074      Income/composition of resources       103606
## 4087           Mobility and communication       110806
## 4100        Socio-economic sustainability       164406
## 4102        Socio-economic sustainability       178306
## 4107        Socio-economic sustainability       181706
## 4109        Socio-economic sustainability       174206
## 4110            Trade and financial flows       133206
## 4111            Trade and financial flows        53506
## 4112            Trade and financial flows        99106
## 4113            Trade and financial flows       111306
## 4114            Trade and financial flows        52606
## 4119   Work, employment and vulnerability       148206
## 4120   Work, employment and vulnerability        48706
## 4121   Work, employment and vulnerability        48806
## 4128                    Composite indices       137506
## 4129                           Demography        47906
## 4130                           Demography       122006
## 4131                           Demography        63106
## 4132                           Demography       132706
## 4133                           Demography       132806
## 4134                           Demography        49006
## 4135                           Demography        44206
## 4136                           Demography        45106
## 4137                           Demography       121206
## 4138                            Education       103706
## 4139                            Education        69706
## 4143                            Education       133006
## 4144                            Education        63206
## 4146                            Education        63406
## 4148                            Education       103006
## 4149                            Education        24106
## 4150                            Education        24206
## 4151                            Education        23806
## 4152                            Education        23906
## 4153                            Education        24006
## 4154                            Education        46106
## 4156                            Education        46206
## 4158         Environmental sustainability       174406
## 4159         Environmental sustainability        27706
## 4160         Environmental sustainability       100806
## 4162         Environmental sustainability       174306
## 4167         Environmental sustainability       163906
## 4168                               Gender        36806
## 4180                               Gender        89006
## 4190                               Health        58006
## 4191                               Health        64406
## 4192                               Health        64306
## 4193                               Health        69206
## 4194                               Health       120606
## 4195                               Health       121106
## 4196                               Health       103206
## 4198                               Health        57806
## 4199                               Health        57206
## 4200                               Health        57906
## 4201                               Health        57506
## 4210      Income/composition of resources       127606
## 4211      Income/composition of resources       136706
## 4212      Income/composition of resources       143306
## 4213      Income/composition of resources        65606
## 4214      Income/composition of resources       141706
## 4215      Income/composition of resources       103606
## 4232           Mobility and communication       110806
## 4247        Socio-economic sustainability       164406
## 4249        Socio-economic sustainability       178306
## 4257        Socio-economic sustainability       174206
## 4258            Trade and financial flows       133206
## 4259            Trade and financial flows        53506
## 4260            Trade and financial flows        99106
## 4261            Trade and financial flows       111306
## 4262            Trade and financial flows        52606
## 4267   Work, employment and vulnerability       148206
## 4268   Work, employment and vulnerability        48706
## 4269   Work, employment and vulnerability        48806
## 4277                           Demography        47906
## 4278                           Demography       122006
## 4279                           Demography        63106
## 4280                           Demography       132706
## 4281                           Demography       132806
## 4282                           Demography        49006
## 4283                           Demography        44206
## 4284                           Demography        45106
## 4285                           Demography       121206
## 4287                            Education        69706
## 4307         Environmental sustainability       174406
## 4308         Environmental sustainability        27706
## 4309         Environmental sustainability       100806
## 4311         Environmental sustainability       174306
## 4316         Environmental sustainability       163906
## 4317                               Gender        36806
## 4328                               Gender        89006
## 4340                               Health        64406
## 4341                               Health        64306
## 4342                               Health        69206
## 4343                               Health       120606
## 4344                               Health       121106
## 4345                               Health       103206
## 4347                               Health        57806
## 4348                               Health        57206
## 4349                               Health        57906
## 4350                               Health        57506
## 4359      Income/composition of resources       127606
## 4360      Income/composition of resources       136706
## 4361      Income/composition of resources       143306
## 4362      Income/composition of resources        65606
## 4363      Income/composition of resources       141706
## 4364      Income/composition of resources       103606
## 4381           Mobility and communication       110806
## 4398        Socio-economic sustainability       178306
## 4405            Trade and financial flows       133206
## 4406            Trade and financial flows        53506
## 4407            Trade and financial flows        99106
## 4414   Work, employment and vulnerability       148206
## 4415   Work, employment and vulnerability        48706
## 4416   Work, employment and vulnerability        48806
## 4422                    Composite indices       137506
## 4423                           Demography        47906
## 4424                           Demography       122006
## 4425                           Demography        63106
## 4426                           Demography       132706
## 4427                           Demography       132806
## 4428                           Demography        49006
## 4429                           Demography        44206
## 4430                           Demography        45106
## 4431                           Demography       121206
## 4432                            Education       103706
## 4433                            Education        69706
## 4437                            Education       133006
## 4438                            Education        63206
## 4441                            Education       103006
## 4442                            Education        24106
## 4443                            Education        24206
## 4444                            Education        23806
## 4445                            Education        23906
## 4446                            Education        24006
## 4450                            Education       177706
## 4451         Environmental sustainability       174406
## 4452         Environmental sustainability        27706
## 4453         Environmental sustainability       100806
## 4455         Environmental sustainability       174306
## 4460         Environmental sustainability       163906
## 4461                               Gender        36806
## 4472                               Gender        89006
## 4483                               Health        58006
## 4484                               Health        64406
## 4485                               Health        64306
## 4486                               Health        69206
## 4487                               Health       120606
## 4488                               Health       121106
## 4489                               Health       103206
## 4491                               Health        57806
## 4492                               Health        57206
## 4493                               Health        57906
## 4494                               Health        57506
## 4503      Income/composition of resources       127606
## 4504      Income/composition of resources       136706
## 4505      Income/composition of resources       143306
## 4506      Income/composition of resources        65606
## 4507      Income/composition of resources       141706
## 4508      Income/composition of resources       103606
## 4525           Mobility and communication       110806
## 4541        Socio-economic sustainability       178306
## 4548        Socio-economic sustainability       181706
## 4550        Socio-economic sustainability       174206
## 4551            Trade and financial flows       133206
## 4552            Trade and financial flows        53506
## 4553            Trade and financial flows        99106
## 4554            Trade and financial flows       111306
## 4555            Trade and financial flows        52606
## 4559   Work, employment and vulnerability       148206
## 4560   Work, employment and vulnerability        48706
## 4561   Work, employment and vulnerability        48806
## 4568                    Composite indices       137506
## 4569                           Demography        47906
## 4570                           Demography       122006
## 4571                           Demography        63106
## 4572                           Demography       132706
## 4573                           Demography       132806
## 4574                           Demography        49006
## 4575                           Demography        44206
## 4576                           Demography        45106
## 4577                           Demography       121206
## 4578                            Education       103706
## 4579                            Education        69706
## 4580                            Education       123306
## 4581                            Education       123406
## 4582                            Education       149206
## 4584                            Education        63206
## 4585                            Education        63306
## 4587                            Education       103006
## 4588                            Education        24106
## 4589                            Education        24206
## 4590                            Education        23806
## 4591                            Education        23906
## 4592                            Education        24006
## 4596                            Education        46206
## 4598         Environmental sustainability       174406
## 4599         Environmental sustainability        27706
## 4600         Environmental sustainability       100806
## 4602         Environmental sustainability       174306
## 4607         Environmental sustainability       163906
## 4608                               Gender        36806
## 4618                               Gender        89006
## 4628                               Health        58006
## 4629                               Health        64406
## 4630                               Health        64306
## 4631                               Health        69206
## 4632                               Health       120606
## 4633                               Health       121106
## 4634                               Health       103206
## 4636                               Health        57806
## 4637                               Health        57206
## 4638                               Health        57906
## 4639                               Health        57506
## 4648      Income/composition of resources       127606
## 4649      Income/composition of resources       136706
## 4650      Income/composition of resources       143306
## 4651      Income/composition of resources        65606
## 4652      Income/composition of resources       141706
## 4653      Income/composition of resources       103606
## 4671           Mobility and communication       110806
## 4673        Socio-economic sustainability       164406
## 4675        Socio-economic sustainability       178306
## 4681        Socio-economic sustainability       181706
## 4682        Socio-economic sustainability       174206
## 4683            Trade and financial flows       133206
## 4684            Trade and financial flows        53506
## 4685            Trade and financial flows        99106
## 4686            Trade and financial flows       111306
## 4687            Trade and financial flows        52606
## 4691   Work, employment and vulnerability       148206
## 4692   Work, employment and vulnerability        48706
## 4693   Work, employment and vulnerability        48806
## 4700                    Composite indices       137506
## 4701                           Demography        47906
## 4702                           Demography       122006
## 4703                           Demography        63106
## 4704                           Demography       132706
## 4705                           Demography       132806
## 4706                           Demography        49006
## 4707                           Demography        44206
## 4708                           Demography        45106
## 4709                           Demography       121206
## 4710                            Education       103706
## 4711                            Education        69706
## 4720                            Education       103006
## 4721                            Education        24106
## 4722                            Education        24206
## 4723                            Education        23806
## 4724                            Education        23906
## 4725                            Education        24006
## 4733         Environmental sustainability       174406
## 4734         Environmental sustainability        27706
## 4735         Environmental sustainability       100806
## 4737         Environmental sustainability       174306
## 4742         Environmental sustainability       163906
## 4743                               Gender        36806
## 4756                               Gender        89006
## 4766                               Health        58006
## 4767                               Health        64406
## 4768                               Health        64306
## 4769                               Health        69206
## 4770                               Health       120606
## 4771                               Health       121106
## 4772                               Health       103206
## 4774                               Health        57806
## 4775                               Health        57206
## 4776                               Health        57906
## 4777                               Health        57506
## 4786      Income/composition of resources       127606
## 4787      Income/composition of resources       136706
## 4788      Income/composition of resources       143306
## 4789      Income/composition of resources        65606
## 4790      Income/composition of resources       141706
## 4791      Income/composition of resources       103606
## 4809           Mobility and communication       110806
## 4824        Socio-economic sustainability       164406
## 4826        Socio-economic sustainability       178306
## 4833        Socio-economic sustainability       181706
## 4835        Socio-economic sustainability       174206
## 4836            Trade and financial flows       133206
## 4837            Trade and financial flows        53506
## 4838            Trade and financial flows        99106
## 4839            Trade and financial flows       111306
## 4840            Trade and financial flows        52606
## 4845   Work, employment and vulnerability       148206
## 4846   Work, employment and vulnerability        48706
## 4847   Work, employment and vulnerability        48806
## 4854                    Composite indices       137506
## 4855                           Demography        47906
## 4856                           Demography       122006
## 4857                           Demography        63106
## 4858                           Demography       132706
## 4859                           Demography       132806
## 4860                           Demography        49006
## 4861                           Demography        44206
## 4862                           Demography        45106
## 4863                           Demography       121206
## 4864                            Education       103706
## 4865                            Education        69706
## 4866                            Education       123306
## 4867                            Education       123406
## 4868                            Education       149206
## 4874                            Education       103006
## 4875                            Education        24106
## 4876                            Education        24206
## 4877                            Education        23806
## 4878                            Education        23906
## 4879                            Education        24006
## 4885         Environmental sustainability       174406
## 4886         Environmental sustainability        27706
## 4887         Environmental sustainability       100806
## 4889         Environmental sustainability       174306
## 4893         Environmental sustainability       163906
## 4894                               Gender        36806
## 4905                               Gender        89006
## 4913                               Health        64406
## 4914                               Health        64306
## 4915                               Health        69206
## 4916                               Health       120606
## 4917                               Health       121106
## 4918                               Health       103206
## 4919                               Health        57806
## 4920                               Health        57206
## 4921                               Health        57906
## 4922                               Health        57506
## 4931      Income/composition of resources       136706
## 4932      Income/composition of resources       143306
## 4933      Income/composition of resources        65606
## 4934      Income/composition of resources       141706
## 4935      Income/composition of resources       103606
## 4943           Mobility and communication       110806
## 4947        Socio-economic sustainability       178306
## 4951        Socio-economic sustainability       181706
## 4953            Trade and financial flows       133206
## 4955            Trade and financial flows        99106
## 4960   Work, employment and vulnerability       148206
## 4961   Work, employment and vulnerability        48706
## 4962   Work, employment and vulnerability        48806
## 4969                    Composite indices       137506
## 4970                           Demography        47906
## 4971                           Demography       122006
## 4972                           Demography        63106
## 4973                           Demography       132706
## 4974                           Demography       132806
## 4975                           Demography        49006
## 4976                           Demography        44206
## 4977                           Demography        45106
## 4978                           Demography       121206
## 4979                            Education       103706
## 4980                            Education        69706
## 4981                            Education       123306
## 4982                            Education       123406
## 4983                            Education       149206
## 4984                            Education       133006
## 4985                            Education        63206
## 4986                            Education        63306
## 4987                            Education        63406
## 4989                            Education       103006
## 4990                            Education        24106
## 4991                            Education        24206
## 4992                            Education        23806
## 4993                            Education        23906
## 4994                            Education        24006
## 4995                            Education        46106
## 5000                            Education       177706
## 5001         Environmental sustainability       174406
## 5002         Environmental sustainability        27706
## 5003         Environmental sustainability       100806
## 5005         Environmental sustainability       174306
## 5006         Environmental sustainability        97106
## 5010         Environmental sustainability       163906
## 5011                               Gender        36806
## 5022                               Gender        89006
## 5023                               Gender       181206
## 5032                               Health        58006
## 5033                               Health        64406
## 5034                               Health        64306
## 5035                               Health        69206
## 5036                               Health       120606
## 5037                               Health       121106
## 5038                               Health       103206
## 5039                               Health        57806
## 5040                               Health        57206
## 5041                               Health        57906
## 5042                               Health        57506
## 5052      Income/composition of resources       136706
## 5053      Income/composition of resources       143306
## 5054      Income/composition of resources        65606
## 5055      Income/composition of resources       141706
## 5056      Income/composition of resources       103606
## 5074           Mobility and communication       110806
## 5075        Socio-economic sustainability       164406
## 5077        Socio-economic sustainability       178306
## 5083        Socio-economic sustainability       181706
## 5085        Socio-economic sustainability       174206
## 5086            Trade and financial flows       133206
## 5087            Trade and financial flows        53506
## 5088            Trade and financial flows       111306
## 5093   Work, employment and vulnerability       148206
## 5094   Work, employment and vulnerability        48706
## 5095   Work, employment and vulnerability        48806
## 5103                           Demography        47906
## 5104                           Demography       122006
## 5105                           Demography        63106
## 5106                           Demography       132706
## 5107                           Demography       132806
## 5108                           Demography        49006
## 5109                           Demography        44206
## 5110                           Demography        45106
## 5111                           Demography       121206
## 5113                            Education        69706
## 5114                            Education       123306
## 5115                            Education       123406
## 5117                            Education       133006
## 5118                            Education        63206
## 5119                            Education        63306
## 5120                            Education        63406
## 5128                            Education        46106
## 5130                            Education        46206
## 5131                            Education       177706
## 5132         Environmental sustainability       174406
## 5133         Environmental sustainability        27706
## 5134         Environmental sustainability       100806
## 5140         Environmental sustainability       163906
## 5141                               Gender        36806
## 5153                               Gender        89006
## 5164                               Health        58006
## 5165                               Health        64406
## 5166                               Health        64306
## 5167                               Health        69206
## 5168                               Health       120606
## 5169                               Health       121106
## 5170                               Health       103206
## 5172                               Health        57806
## 5173                               Health        57206
## 5174                               Health        57906
## 5175                               Health        57506
## 5184      Income/composition of resources       127606
## 5185      Income/composition of resources       136706
## 5186      Income/composition of resources       143306
## 5187      Income/composition of resources        65606
## 5188      Income/composition of resources       141706
## 5189      Income/composition of resources       103606
## 5206           Mobility and communication       110806
## 5223        Socio-economic sustainability       178306
## 5232        Socio-economic sustainability       174206
## 5233            Trade and financial flows       133206
## 5234            Trade and financial flows        53506
## 5235            Trade and financial flows        99106
## 5237            Trade and financial flows        52606
## 5242   Work, employment and vulnerability       148206
## 5243   Work, employment and vulnerability        48706
## 5244   Work, employment and vulnerability        48806
## 5250                    Composite indices       137506
## 5251                           Demography        47906
## 5252                           Demography       122006
## 5253                           Demography        63106
## 5254                           Demography       132706
## 5255                           Demography       132806
## 5256                           Demography        49006
## 5257                           Demography        44206
## 5258                           Demography        45106
## 5259                           Demography       121206
## 5260                            Education       103706
## 5261                            Education        69706
## 5262                            Education       123306
## 5263                            Education       123406
## 5264                            Education       149206
## 5266                            Education        63206
## 5267                            Education        63306
## 5268                            Education        63406
## 5269                            Education       101406
## 5270                            Education       103006
## 5271                            Education        24106
## 5272                            Education        24206
## 5273                            Education        23806
## 5274                            Education        23906
## 5275                            Education        24006
## 5278                            Education        46206
## 5280         Environmental sustainability       174406
## 5281         Environmental sustainability        27706
## 5282         Environmental sustainability       100806
## 5288         Environmental sustainability       163906
## 5289                               Gender        36806
## 5301                               Gender        89006
## 5311                               Health        58006
## 5312                               Health        64406
## 5313                               Health        64306
## 5314                               Health        69206
## 5315                               Health       120606
## 5316                               Health       121106
## 5317                               Health       103206
## 5319                               Health        57806
## 5320                               Health        57206
## 5321                               Health        57906
## 5322                               Health        57506
## 5331      Income/composition of resources       127606
## 5332      Income/composition of resources       136706
## 5333      Income/composition of resources       143306
## 5334      Income/composition of resources        65606
## 5335      Income/composition of resources       141706
## 5336      Income/composition of resources       103606
## 5354           Mobility and communication       110806
## 5369        Socio-economic sustainability       164406
## 5371        Socio-economic sustainability       178306
## 5378        Socio-economic sustainability       174206
## 5379            Trade and financial flows       133206
## 5380            Trade and financial flows        53506
## 5381            Trade and financial flows        99106
## 5382            Trade and financial flows       111306
## 5388   Work, employment and vulnerability       148206
## 5389   Work, employment and vulnerability        48706
## 5390   Work, employment and vulnerability        48806
## 5397                    Composite indices       137506
## 5398                           Demography        47906
## 5399                           Demography       122006
## 5400                           Demography        63106
## 5401                           Demography       132706
## 5402                           Demography       132806
## 5403                           Demography        49006
## 5404                           Demography        44206
## 5405                           Demography        45106
## 5406                           Demography       121206
## 5407                            Education       103706
## 5408                            Education        69706
## 5409                            Education       123306
## 5411                            Education       149206
## 5412                            Education       133006
## 5413                            Education        63206
## 5414                            Education        63306
## 5415                            Education        63406
## 5417                            Education       103006
## 5418                            Education        24106
## 5419                            Education        24206
## 5420                            Education        23806
## 5421                            Education        23906
## 5422                            Education        24006
## 5423                            Education        46106
## 5425                            Education        46206
## 5426                            Education       177706
## 5427         Environmental sustainability       174406
## 5428         Environmental sustainability        27706
## 5429         Environmental sustainability       100806
## 5431         Environmental sustainability       174306
## 5436         Environmental sustainability       163906
## 5437                               Gender        36806
## 5448                               Gender        89006
## 5460                               Health        58006
## 5461                               Health        64406
## 5462                               Health        64306
## 5463                               Health        69206
## 5464                               Health       120606
## 5465                               Health       121106
## 5466                               Health       103206
## 5468                               Health        57806
## 5469                               Health        57206
## 5470                               Health        57906
## 5471                               Health        57506
## 5480      Income/composition of resources       127606
## 5481      Income/composition of resources       136706
## 5482      Income/composition of resources       143306
## 5483      Income/composition of resources        65606
## 5484      Income/composition of resources       141706
## 5485      Income/composition of resources       103606
## 5502           Mobility and communication       110806
## 5517        Socio-economic sustainability       164406
## 5519        Socio-economic sustainability       178306
## 5525        Socio-economic sustainability       181706
## 5527        Socio-economic sustainability       174206
## 5528            Trade and financial flows       133206
## 5529            Trade and financial flows        53506
## 5530            Trade and financial flows        99106
## 5531            Trade and financial flows       111306
## 5532            Trade and financial flows        52606
## 5537   Work, employment and vulnerability       148206
## 5538   Work, employment and vulnerability        48706
## 5539   Work, employment and vulnerability        48806
## 5546                    Composite indices       137506
## 5547                           Demography        47906
## 5548                           Demography       122006
## 5549                           Demography        63106
## 5550                           Demography       132706
## 5551                           Demography       132806
## 5552                           Demography        49006
## 5553                           Demography        44206
## 5554                           Demography        45106
## 5555                           Demography       121206
## 5556                            Education       103706
## 5557                            Education        69706
## 5558                            Education       123306
## 5559                            Education       123406
## 5560                            Education       149206
## 5562                            Education        63206
## 5563                            Education        63306
## 5564                            Education        63406
## 5566                            Education       103006
## 5567                            Education        24106
## 5568                            Education        24206
## 5569                            Education        23806
## 5570                            Education        23906
## 5571                            Education        24006
## 5572                            Education        46106
## 5574                            Education        46206
## 5575                            Education       177706
## 5576         Environmental sustainability       174406
## 5577         Environmental sustainability        27706
## 5578         Environmental sustainability       100806
## 5584         Environmental sustainability       163906
## 5585                               Gender        36806
## 5596                               Gender        89006
## 5607                               Health        58006
## 5608                               Health        64406
## 5609                               Health        64306
## 5610                               Health        69206
## 5611                               Health       120606
## 5612                               Health       121106
## 5613                               Health       103206
## 5615                               Health        57806
## 5616                               Health        57206
## 5617                               Health        57906
## 5618                               Health        57506
## 5627      Income/composition of resources       127606
## 5628      Income/composition of resources       136706
## 5629      Income/composition of resources       143306
## 5630      Income/composition of resources        65606
## 5631      Income/composition of resources       141706
## 5632      Income/composition of resources       103606
## 5649           Mobility and communication       110806
## 5664        Socio-economic sustainability       164406
## 5666        Socio-economic sustainability       178306
## 5673        Socio-economic sustainability       174206
## 5674            Trade and financial flows       133206
## 5675            Trade and financial flows        53506
## 5676            Trade and financial flows        99106
## 5677            Trade and financial flows       111306
## 5678            Trade and financial flows        52606
## 5683   Work, employment and vulnerability       148206
## 5684   Work, employment and vulnerability        48706
## 5685   Work, employment and vulnerability        48806
## 5691                           Demography        47906
## 5692                           Demography       122006
## 5693                           Demography        63106
## 5694                           Demography       132706
## 5695                           Demography       132806
## 5696                           Demography        49006
## 5697                           Demography        44206
## 5698                           Demography        45106
## 5699                           Demography       121206
## 5701                            Education        69706
## 5706                            Education        63206
## 5707                            Education        63306
## 5716                            Education        46106
## 5718                            Education        46206
## 5719                            Education       177706
## 5720         Environmental sustainability       174406
## 5721         Environmental sustainability        27706
## 5722         Environmental sustainability       100806
## 5728         Environmental sustainability       163906
## 5729                               Gender        36806
## 5740                               Gender        89006
## 5751                               Health        58006
## 5752                               Health        64406
## 5753                               Health        64306
## 5754                               Health        69206
## 5755                               Health       120606
## 5756                               Health       121106
## 5757                               Health       103206
## 5759                               Health        57806
## 5760                               Health        57206
## 5761                               Health        57906
## 5762                               Health        57506
## 5771      Income/composition of resources       127606
## 5772      Income/composition of resources       136706
## 5773      Income/composition of resources       143306
## 5774      Income/composition of resources        65606
## 5775      Income/composition of resources       141706
## 5776      Income/composition of resources       103606
## 5793           Mobility and communication       110806
## 5808        Socio-economic sustainability       164406
## 5810        Socio-economic sustainability       178306
## 5816        Socio-economic sustainability       181706
## 5817        Socio-economic sustainability       174206
## 5818            Trade and financial flows       133206
## 5819            Trade and financial flows        53506
## 5820            Trade and financial flows        99106
## 5821            Trade and financial flows       111306
## 5827   Work, employment and vulnerability       148206
## 5828   Work, employment and vulnerability        48706
## 5829   Work, employment and vulnerability        48806
## 5835                    Composite indices       137506
## 5836                           Demography        47906
## 5837                           Demography       122006
## 5838                           Demography        63106
## 5839                           Demography       132706
## 5840                           Demography       132806
## 5841                           Demography        49006
## 5842                           Demography        44206
## 5843                           Demography        45106
## 5844                           Demography       121206
## 5845                            Education       103706
## 5846                            Education        69706
## 5847                            Education       123306
## 5848                            Education       123406
## 5849                            Education       149206
## 5850                            Education       133006
## 5851                            Education        63206
## 5852                            Education        63306
## 5855                            Education       103006
## 5856                            Education        24106
## 5857                            Education        24206
## 5858                            Education        23806
## 5859                            Education        23906
## 5860                            Education        24006
## 5868         Environmental sustainability       174406
## 5869         Environmental sustainability        27706
## 5870         Environmental sustainability       100806
## 5872         Environmental sustainability       174306
## 5877         Environmental sustainability       163906
## 5878                               Gender        36806
## 5880                               Gender       123506
## 5881                               Gender       123606
## 5883                               Gender       137906
## 5885                               Gender       136906
## 5886                               Gender       137006
## 5888                               Gender        89006
## 5897                               Health        58006
## 5898                               Health        64406
## 5899                               Health        64306
## 5900                               Health        69206
## 5901                               Health       120606
## 5902                               Health       121106
## 5903                               Health       103206
## 5904                               Health        57806
## 5905                               Health        57206
## 5906                               Health        57906
## 5907                               Health        57506
## 5916      Income/composition of resources       127606
## 5917      Income/composition of resources       136706
## 5918      Income/composition of resources       143306
## 5919      Income/composition of resources        65606
## 5920      Income/composition of resources       141706
## 5921      Income/composition of resources       103606
## 5938           Mobility and communication       110806
## 5940        Socio-economic sustainability       164406
## 5942        Socio-economic sustainability       178306
## 5949        Socio-economic sustainability       181706
## 5951            Trade and financial flows       133206
## 5952            Trade and financial flows        53506
## 5953            Trade and financial flows        99106
## 5954            Trade and financial flows       111306
## 5955            Trade and financial flows        52606
## 5960   Work, employment and vulnerability       148206
## 5961   Work, employment and vulnerability        48706
## 5962   Work, employment and vulnerability        48806
## 5969                    Composite indices       137506
## 5970                           Demography        47906
## 5971                           Demography       122006
## 5972                           Demography        63106
## 5973                           Demography       132706
## 5974                           Demography       132806
## 5975                           Demography        49006
## 5976                           Demography        44206
## 5977                           Demography        45106
## 5978                           Demography       121206
## 5979                            Education       103706
## 5980                            Education        69706
## 5981                            Education       123306
## 5982                            Education       123406
## 5984                            Education       133006
## 5985                            Education        63206
## 5986                            Education        63306
## 5987                            Education        63406
## 5988                            Education       101406
## 5989                            Education       103006
## 5990                            Education        24106
## 5991                            Education        24206
## 5992                            Education        23806
## 5993                            Education        23906
## 5994                            Education        24006
## 5995                            Education        46106
## 5999                            Education        46206
## 6000                            Education       177706
## 6001         Environmental sustainability       174406
## 6002         Environmental sustainability        27706
## 6003         Environmental sustainability       100806
## 6005         Environmental sustainability       174306
## 6006         Environmental sustainability        97106
## 6010         Environmental sustainability       163906
## 6011                               Gender        36806
## 6021                               Gender        89006
## 6022                               Gender       181206
## 6030                               Health        64406
## 6031                               Health        64306
## 6032                               Health        69206
## 6033                               Health       120606
## 6034                               Health       121106
## 6035                               Health       103206
## 6037                               Health        57806
## 6038                               Health        57206
## 6039                               Health        57906
## 6040                               Health        57506
## 6048      Income/composition of resources       127606
## 6049      Income/composition of resources       136706
## 6050      Income/composition of resources       143306
## 6051      Income/composition of resources        65606
## 6052      Income/composition of resources       141706
## 6053      Income/composition of resources       103606
## 6070           Mobility and communication       110806
## 6085        Socio-economic sustainability       164406
## 6087        Socio-economic sustainability       178306
## 6093        Socio-economic sustainability       181706
## 6094        Socio-economic sustainability       174206
## 6095            Trade and financial flows       133206
## 6096            Trade and financial flows        53506
## 6097            Trade and financial flows        99106
## 6098            Trade and financial flows       111306
## 6099            Trade and financial flows        52606
## 6103   Work, employment and vulnerability       148206
## 6104   Work, employment and vulnerability        48706
## 6105   Work, employment and vulnerability        48806
## 6111                    Composite indices       137506
## 6112                           Demography        47906
## 6113                           Demography       122006
## 6114                           Demography        63106
## 6115                           Demography       132706
## 6116                           Demography       132806
## 6117                           Demography        49006
## 6118                           Demography        44206
## 6119                           Demography        45106
## 6120                           Demography       121206
## 6121                            Education       103706
## 6122                            Education        69706
## 6123                            Education       123306
## 6124                            Education       123406
## 6127                            Education        63206
## 6129                            Education        63406
## 6131                            Education       103006
## 6132                            Education        24106
## 6133                            Education        24206
## 6134                            Education        23806
## 6135                            Education        23906
## 6136                            Education        24006
## 6143                            Education        46206
## 6145         Environmental sustainability       174406
## 6146         Environmental sustainability        27706
## 6147         Environmental sustainability       100806
## 6149         Environmental sustainability       174306
## 6154         Environmental sustainability       163906
## 6155                               Gender        36806
## 6156                               Gender       175206
## 6158                               Gender       175506
## 6167                               Gender        89006
## 6168                               Gender       181206
## 6172                               Gender       175606
## 6177                               Health        58006
## 6178                               Health        64406
## 6179                               Health        64306
## 6180                               Health        69206
## 6181                               Health       120606
## 6182                               Health       121106
## 6183                               Health       103206
## 6185                               Health        57806
## 6186                               Health        57206
## 6187                               Health        57906
## 6188                               Health        57506
## 6197      Income/composition of resources       127606
## 6198      Income/composition of resources       136706
## 6199      Income/composition of resources       143306
## 6200      Income/composition of resources        65606
## 6201      Income/composition of resources       141706
## 6202      Income/composition of resources       103606
## 6220           Mobility and communication       110806
## 6235        Socio-economic sustainability       164406
## 6237        Socio-economic sustainability       178306
## 6244        Socio-economic sustainability       181706
## 6246        Socio-economic sustainability       174206
## 6247            Trade and financial flows       133206
## 6248            Trade and financial flows        53506
## 6249            Trade and financial flows        99106
## 6250            Trade and financial flows       111306
## 6251            Trade and financial flows        52606
## 6256   Work, employment and vulnerability       148206
## 6257   Work, employment and vulnerability        48706
## 6258   Work, employment and vulnerability        48806
## 6265                    Composite indices       137506
## 6266                           Demography        47906
## 6267                           Demography       122006
## 6268                           Demography        63106
## 6269                           Demography       132706
## 6270                           Demography       132806
## 6271                           Demography        49006
## 6272                           Demography        44206
## 6273                           Demography        45106
## 6274                           Demography       121206
## 6275                            Education       103706
## 6276                            Education        69706
## 6277                            Education       123306
## 6278                            Education       123406
## 6280                            Education       133006
## 6281                            Education        63206
## 6282                            Education        63306
## 6283                            Education        63406
## 6285                            Education       103006
## 6286                            Education        24106
## 6287                            Education        24206
## 6288                            Education        23806
## 6289                            Education        23906
## 6290                            Education        24006
## 6293                            Education        46206
## 6295         Environmental sustainability       174406
## 6296         Environmental sustainability        27706
## 6297         Environmental sustainability       100806
## 6299         Environmental sustainability       174306
## 6303         Environmental sustainability       163906
## 6304                               Gender        36806
## 6315                               Gender        89006
## 6325                               Health        58006
## 6326                               Health        64406
## 6327                               Health        64306
## 6328                               Health        69206
## 6329                               Health       120606
## 6330                               Health       121106
## 6331                               Health       103206
## 6333                               Health        57806
## 6334                               Health        57206
## 6335                               Health        57906
## 6336                               Health        57506
## 6345      Income/composition of resources       127606
## 6346      Income/composition of resources       136706
## 6347      Income/composition of resources       143306
## 6348      Income/composition of resources        65606
## 6349      Income/composition of resources       141706
## 6350      Income/composition of resources       103606
## 6367           Mobility and communication       110806
## 6382        Socio-economic sustainability       164406
## 6384        Socio-economic sustainability       178306
## 6392        Socio-economic sustainability       174206
## 6393            Trade and financial flows       133206
## 6394            Trade and financial flows        53506
## 6395            Trade and financial flows        99106
## 6396            Trade and financial flows       111306
## 6397            Trade and financial flows        52606
## 6402   Work, employment and vulnerability       148206
## 6403   Work, employment and vulnerability        48706
## 6404   Work, employment and vulnerability        48806
## 6411                    Composite indices       137506
## 6412                           Demography        47906
## 6413                           Demography       122006
## 6414                           Demography        63106
## 6415                           Demography       132706
## 6416                           Demography       132806
## 6417                           Demography        49006
## 6418                           Demography        44206
## 6419                           Demography        45106
## 6420                           Demography       121206
## 6421                            Education       103706
## 6422                            Education        69706
## 6426                            Education       133006
## 6427                            Education        63206
## 6428                            Education        63306
## 6429                            Education        63406
## 6431                            Education       103006
## 6432                            Education        24106
## 6433                            Education        24206
## 6434                            Education        23806
## 6435                            Education        23906
## 6436                            Education        24006
## 6437                            Education        46106
## 6443                            Education        46206
## 6444                            Education       177706
## 6445         Environmental sustainability       174406
## 6446         Environmental sustainability        27706
## 6447         Environmental sustainability       100806
## 6449         Environmental sustainability       174306
## 6454         Environmental sustainability       163906
## 6455                               Gender        36806
## 6459                               Gender       123506
## 6460                               Gender       123606
## 6468                               Gender        89006
## 6478                               Health        58006
## 6479                               Health        64406
## 6480                               Health        64306
## 6481                               Health        69206
## 6482                               Health       120606
## 6483                               Health       121106
## 6484                               Health       103206
## 6486                               Health        57806
## 6487                               Health        57206
## 6488                               Health        57906
## 6489                               Health        57506
## 6498      Income/composition of resources       127606
## 6499      Income/composition of resources       136706
## 6500      Income/composition of resources       143306
## 6501      Income/composition of resources        65606
## 6502      Income/composition of resources       141706
## 6503      Income/composition of resources       103606
## 6521           Mobility and communication       110806
## 6523        Socio-economic sustainability       164406
## 6525        Socio-economic sustainability       178306
## 6531        Socio-economic sustainability       181706
## 6533        Socio-economic sustainability       174206
## 6534            Trade and financial flows       133206
## 6535            Trade and financial flows        53506
## 6536            Trade and financial flows        99106
## 6537            Trade and financial flows       111306
## 6538            Trade and financial flows        52606
## 6543   Work, employment and vulnerability       148206
## 6544   Work, employment and vulnerability        48706
## 6545   Work, employment and vulnerability        48806
## 6552                    Composite indices       137506
## 6553                           Demography        47906
## 6554                           Demography       122006
## 6555                           Demography        63106
## 6556                           Demography       132706
## 6557                           Demography       132806
## 6558                           Demography        49006
## 6559                           Demography        44206
## 6560                           Demography        45106
## 6561                           Demography       121206
## 6562                            Education       103706
## 6563                            Education        69706
## 6564                            Education       123306
## 6565                            Education       123406
## 6567                            Education       133006
## 6568                            Education        63206
## 6569                            Education        63306
## 6570                            Education        63406
## 6572                            Education       103006
## 6573                            Education        24106
## 6574                            Education        24206
## 6575                            Education        23806
## 6576                            Education        23906
## 6577                            Education        24006
## 6578                            Education        46106
## 6580                            Education        46206
## 6581                            Education       177706
## 6582         Environmental sustainability        27706
## 6583         Environmental sustainability       100806
## 6585         Environmental sustainability       174306
## 6590         Environmental sustainability       163906
## 6591                               Gender        36806
## 6602                               Gender        89006
## 6603                               Gender       181206
## 6609                               Health        58006
## 6610                               Health        64406
## 6611                               Health        64306
## 6612                               Health        69206
## 6613                               Health       120606
## 6614                               Health       121106
## 6615                               Health       103206
## 6616                               Health        57806
## 6617                               Health        57206
## 6618                               Health        57906
## 6619                               Health        57506
## 6628      Income/composition of resources        65606
## 6629      Income/composition of resources       141706
## 6630      Income/composition of resources       103606
## 6640           Mobility and communication       110806
## 6643        Socio-economic sustainability       178306
## 6648        Socio-economic sustainability       181706
## 6650            Trade and financial flows       133206
## 6651            Trade and financial flows        99106
## 6655   Work, employment and vulnerability       148206
## 6656   Work, employment and vulnerability        48706
## 6657   Work, employment and vulnerability        48806
## 6662                    Composite indices       137506
## 6663                           Demography        47906
## 6664                           Demography       122006
## 6665                           Demography        63106
## 6666                           Demography       132706
## 6667                           Demography       132806
## 6668                           Demography        49006
## 6669                           Demography        44206
## 6670                           Demography        45106
## 6671                           Demography       121206
## 6672                            Education       103706
## 6673                            Education        69706
## 6674                            Education       123306
## 6675                            Education       123406
## 6676                            Education       149206
## 6677                            Education       133006
## 6678                            Education        63206
## 6679                            Education        63306
## 6680                            Education        63406
## 6682                            Education       103006
## 6683                            Education        24106
## 6684                            Education        24206
## 6685                            Education        23806
## 6686                            Education        23906
## 6687                            Education        24006
## 6693                            Education        46206
## 6695         Environmental sustainability       174406
## 6696         Environmental sustainability        27706
## 6697         Environmental sustainability       100806
## 6699         Environmental sustainability       174306
## 6700         Environmental sustainability        97106
## 6704         Environmental sustainability       163906
## 6705                               Gender        36806
## 6716                               Gender        89006
## 6717                               Gender       181206
## 6726                               Health        64406
## 6727                               Health        64306
## 6728                               Health        69206
## 6729                               Health       120606
## 6730                               Health       121106
## 6731                               Health       103206
## 6732                               Health        57806
## 6733                               Health        57206
## 6734                               Health        57906
## 6735                               Health        57506
## 6745      Income/composition of resources       136706
## 6746      Income/composition of resources       143306
## 6747      Income/composition of resources        65606
## 6748      Income/composition of resources       141706
## 6749      Income/composition of resources       103606
## 6767           Mobility and communication       110806
## 6768        Socio-economic sustainability       164406
## 6770        Socio-economic sustainability       178306
## 6777        Socio-economic sustainability       181706
## 6779            Trade and financial flows       133206
## 6780            Trade and financial flows        53506
## 6781            Trade and financial flows        99106
## 6782            Trade and financial flows       111306
## 6783            Trade and financial flows        52606
## 6787   Work, employment and vulnerability       148206
## 6788   Work, employment and vulnerability        48706
## 6789   Work, employment and vulnerability        48806
## 6797                    Composite indices       137506
## 6798                           Demography        47906
## 6799                           Demography       122006
## 6800                           Demography        63106
## 6801                           Demography       132706
## 6802                           Demography       132806
## 6803                           Demography        49006
## 6804                           Demography        44206
## 6805                           Demography        45106
## 6806                           Demography       121206
## 6807                            Education       103706
## 6808                            Education        69706
## 6809                            Education       123306
## 6810                            Education       123406
## 6812                            Education       133006
## 6813                            Education        63206
## 6814                            Education        63306
## 6815                            Education        63406
## 6816                            Education       103006
## 6817                            Education        24106
## 6818                            Education        24206
## 6819                            Education        23806
## 6820                            Education        23906
## 6821                            Education        24006
## 6822                            Education        46106
## 6827                            Education        46206
## 6829         Environmental sustainability       174406
## 6830         Environmental sustainability        27706
## 6831         Environmental sustainability       100806
## 6833         Environmental sustainability       174306
## 6834         Environmental sustainability        97106
## 6838         Environmental sustainability       163906
## 6839                               Gender        36806
## 6849                               Gender        89006
## 6859                               Health        64406
## 6860                               Health        64306
## 6861                               Health        69206
## 6862                               Health       120606
## 6863                               Health       121106
## 6864                               Health       103206
## 6865                               Health        57806
## 6866                               Health        57206
## 6867                               Health        57906
## 6868                               Health        57506
## 6878      Income/composition of resources       136706
## 6879      Income/composition of resources       143306
## 6880      Income/composition of resources        65606
## 6881      Income/composition of resources       141706
## 6882      Income/composition of resources       103606
## 6900           Mobility and communication       110806
## 6901        Socio-economic sustainability       164406
## 6903        Socio-economic sustainability       178306
## 6910        Socio-economic sustainability       181706
## 6912            Trade and financial flows       133206
## 6913            Trade and financial flows        53506
## 6914            Trade and financial flows       111306
## 6919   Work, employment and vulnerability       148206
## 6920   Work, employment and vulnerability        48706
## 6921   Work, employment and vulnerability        48806
## 6929                           Demography        47906
## 6930                           Demography       122006
## 6931                           Demography        63106
## 6932                           Demography       132706
## 6933                           Demography       132806
## 6934                           Demography        49006
## 6935                           Demography        44206
## 6936                           Demography        45106
## 6937                           Demography       121206
## 6939                            Education        69706
## 6940                            Education       123306
## 6941                            Education       123406
## 6943                            Education       133006
## 6944                            Education        63206
## 6945                            Education        63306
## 6948                            Education        46106
## 6950                            Education        46206
## 6953         Environmental sustainability        27706
## 6954         Environmental sustainability       100806
## 6956         Environmental sustainability       174306
## 6961         Environmental sustainability       163906
## 6962                               Gender        36806
## 6969                               Gender        89006
## 6978                               Health        58006
## 6979                               Health        64406
## 6980                               Health        64306
## 6981                               Health        69206
## 6982                               Health       120606
## 6983                               Health       121106
## 6984                               Health       103206
## 6986                               Health        57806
## 6987                               Health        57206
## 6988                               Health        57906
## 6989                               Health        57506
## 6998      Income/composition of resources       127606
## 7002      Income/composition of resources       141706
## 7003      Income/composition of resources       103606
## 7020           Mobility and communication       110806
## 7042        Socio-economic sustainability       181706
## 7051   Work, employment and vulnerability       148206
## 7052   Work, employment and vulnerability        48706
## 7053   Work, employment and vulnerability        48806
## 7060                           Demography        44206
## 7061                           Demography        45106
## 7063                            Education        69706
## 7065                            Education       133006
## 7066                            Education        63206
## 7067                            Education        63306
## 7077         Environmental sustainability       174406
## 7078         Environmental sustainability        27706
## 7079         Environmental sustainability       100806
## 7081         Environmental sustainability       174306
## 7084         Environmental sustainability       163906
## 7085                               Gender       175206
## 7090                               Health        64406
## 7091                               Health        64306
## 7092                               Health        69206
## 7093                               Health       103206
## 7094                               Health        57806
## 7095                               Health        57206
## 7096                               Health        57906
## 7097                               Health        57506
## 7103      Income/composition of resources       127606
## 7104      Income/composition of resources       136706
## 7105      Income/composition of resources       143306
## 7106      Income/composition of resources       141706
## 7107      Income/composition of resources       103606
## 7114        Socio-economic sustainability       181706
## 7115        Socio-economic sustainability       174206
## 7116            Trade and financial flows       133206
## 7117            Trade and financial flows        53506
## 7118            Trade and financial flows        99106
## 7119            Trade and financial flows       111306
## 7120            Trade and financial flows        52606
## 7123                    Composite indices       137506
## 7124                           Demography        47906
## 7125                           Demography       122006
## 7126                           Demography        63106
## 7127                           Demography       132706
## 7128                           Demography       132806
## 7129                           Demography        49006
## 7130                           Demography        44206
## 7131                           Demography        45106
## 7132                           Demography       121206
## 7133                            Education       103706
## 7134                            Education        69706
## 7143                            Education       103006
## 7144                            Education        24106
## 7145                            Education        24206
## 7146                            Education        23806
## 7147                            Education        23906
## 7148                            Education        24006
## 7157         Environmental sustainability       174406
## 7158         Environmental sustainability        27706
## 7159         Environmental sustainability       100806
## 7161         Environmental sustainability       174306
## 7166         Environmental sustainability       163906
## 7167                               Gender        36806
## 7180                               Gender        89006
## 7191                               Health        58006
## 7192                               Health        64406
## 7193                               Health        64306
## 7194                               Health        69206
## 7195                               Health       120606
## 7196                               Health       121106
## 7197                               Health       103206
## 7199                               Health        57806
## 7200                               Health        57206
## 7201                               Health        57906
## 7202                               Health        57506
## 7211      Income/composition of resources       127606
## 7212      Income/composition of resources       136706
## 7213      Income/composition of resources       143306
## 7214      Income/composition of resources        65606
## 7215      Income/composition of resources       141706
## 7216      Income/composition of resources       103606
## 7233           Mobility and communication       110806
## 7248        Socio-economic sustainability       164406
## 7250        Socio-economic sustainability       178306
## 7256        Socio-economic sustainability       181706
## 7258        Socio-economic sustainability       174206
## 7259            Trade and financial flows       133206
## 7260            Trade and financial flows        53506
## 7261            Trade and financial flows        99106
## 7262            Trade and financial flows       111306
## 7263            Trade and financial flows        52606
## 7268   Work, employment and vulnerability       148206
## 7269   Work, employment and vulnerability        48706
## 7270   Work, employment and vulnerability        48806
## 7277                    Composite indices       137506
## 7278                           Demography        47906
## 7279                           Demography       122006
## 7280                           Demography        63106
## 7281                           Demography       132706
## 7282                           Demography       132806
## 7283                           Demography        49006
## 7284                           Demography        44206
## 7285                           Demography        45106
## 7286                           Demography       121206
## 7287                            Education       103706
## 7288                            Education        69706
## 7292                            Education       133006
## 7293                            Education        63206
## 7294                            Education        63306
## 7295                            Education        63406
## 7296                            Education       101406
## 7297                            Education       103006
## 7298                            Education        24106
## 7299                            Education        24206
## 7300                            Education        23806
## 7301                            Education        23906
## 7302                            Education        24006
## 7306                            Education        46206
## 7308         Environmental sustainability       174406
## 7309         Environmental sustainability        27706
## 7310         Environmental sustainability       100806
## 7312         Environmental sustainability       174306
## 7317         Environmental sustainability       163906
## 7318                               Gender        36806
## 7331                               Gender        89006
## 7342                               Health        58006
## 7343                               Health        64406
## 7344                               Health        64306
## 7345                               Health        69206
## 7346                               Health       120606
## 7347                               Health       121106
## 7348                               Health       103206
## 7350                               Health        57806
## 7351                               Health        57206
## 7352                               Health        57906
## 7353                               Health        57506
## 7362      Income/composition of resources       127606
## 7363      Income/composition of resources       136706
## 7364      Income/composition of resources       143306
## 7365      Income/composition of resources        65606
## 7366      Income/composition of resources       141706
## 7367      Income/composition of resources       103606
## 7385           Mobility and communication       110806
## 7400        Socio-economic sustainability       164406
## 7402        Socio-economic sustainability       178306
## 7409        Socio-economic sustainability       181706
## 7411        Socio-economic sustainability       174206
## 7412            Trade and financial flows       133206
## 7413            Trade and financial flows        53506
## 7414            Trade and financial flows        99106
## 7416            Trade and financial flows        52606
## 7420   Work, employment and vulnerability       148206
## 7421   Work, employment and vulnerability        48706
## 7422   Work, employment and vulnerability        48806
## 7429                    Composite indices       137506
## 7430                           Demography        47906
## 7431                           Demography       122006
## 7432                           Demography        63106
## 7433                           Demography       132706
## 7434                           Demography       132806
## 7435                           Demography        49006
## 7436                           Demography        44206
## 7437                           Demography        45106
## 7438                           Demography       121206
## 7439                            Education       103706
## 7440                            Education        69706
## 7441                            Education       123306
## 7442                            Education       123406
## 7444                            Education       133006
## 7445                            Education        63206
## 7446                            Education        63306
## 7447                            Education        63406
## 7449                            Education       103006
## 7450                            Education        24106
## 7451                            Education        24206
## 7452                            Education        23806
## 7453                            Education        23906
## 7454                            Education        24006
## 7458                            Education        46206
## 7460         Environmental sustainability       174406
## 7461         Environmental sustainability        27706
## 7462         Environmental sustainability       100806
## 7464         Environmental sustainability       174306
## 7469         Environmental sustainability       163906
## 7470                               Gender        36806
## 7482                               Gender        89006
## 7493                               Health        58006
## 7494                               Health        64406
## 7495                               Health        64306
## 7496                               Health        69206
## 7497                               Health       120606
## 7498                               Health       121106
## 7499                               Health       103206
## 7500                               Health        57806
## 7501                               Health        57206
## 7502                               Health        57906
## 7503                               Health        57506
## 7512      Income/composition of resources       127606
## 7513      Income/composition of resources       136706
## 7514      Income/composition of resources       143306
## 7515      Income/composition of resources        65606
## 7516      Income/composition of resources       141706
## 7517      Income/composition of resources       103606
## 7535           Mobility and communication       110806
## 7550        Socio-economic sustainability       164406
## 7552        Socio-economic sustainability       178306
## 7559        Socio-economic sustainability       181706
## 7561        Socio-economic sustainability       174206
## 7562            Trade and financial flows       133206
## 7563            Trade and financial flows        53506
## 7564            Trade and financial flows        99106
## 7565            Trade and financial flows       111306
## 7566            Trade and financial flows        52606
## 7571   Work, employment and vulnerability       148206
## 7572   Work, employment and vulnerability        48706
## 7573   Work, employment and vulnerability        48806
## 7580                    Composite indices       137506
## 7581                           Demography        47906
## 7582                           Demography       122006
## 7583                           Demography        63106
## 7584                           Demography       132706
## 7585                           Demography       132806
## 7586                           Demography        49006
## 7587                           Demography        44206
## 7588                           Demography        45106
## 7589                           Demography       121206
## 7590                            Education       103706
## 7591                            Education        69706
## 7598                            Education        63406
## 7600                            Education       103006
## 7601                            Education        24106
## 7602                            Education        24206
## 7603                            Education        23806
## 7604                            Education        23906
## 7605                            Education        24006
## 7611         Environmental sustainability       174406
## 7612         Environmental sustainability        27706
## 7613         Environmental sustainability       100806
## 7615         Environmental sustainability       174306
## 7620         Environmental sustainability       163906
## 7621                               Gender        36806
## 7634                               Gender        89006
## 7645                               Health        58006
## 7646                               Health        64406
## 7647                               Health        64306
## 7648                               Health        69206
## 7649                               Health       120606
## 7650                               Health       121106
## 7651                               Health       103206
## 7653                               Health        57806
## 7654                               Health        57206
## 7655                               Health        57906
## 7656                               Health        57506
## 7665      Income/composition of resources       127606
## 7666      Income/composition of resources       136706
## 7667      Income/composition of resources       143306
## 7668      Income/composition of resources        65606
## 7669      Income/composition of resources       141706
## 7670      Income/composition of resources       103606
## 7688           Mobility and communication       110806
## 7703        Socio-economic sustainability       164406
## 7705        Socio-economic sustainability       178306
## 7712        Socio-economic sustainability       181706
## 7714        Socio-economic sustainability       174206
## 7715            Trade and financial flows       133206
## 7716            Trade and financial flows        53506
## 7717            Trade and financial flows        99106
## 7719            Trade and financial flows        52606
## 7724   Work, employment and vulnerability       148206
## 7725   Work, employment and vulnerability        48706
## 7726   Work, employment and vulnerability        48806
## 7735                           Demography        47906
## 7736                           Demography       122006
## 7737                           Demography        63106
## 7738                           Demography       132706
## 7739                           Demography       132806
## 7740                           Demography        49006
## 7741                           Demography        44206
## 7742                           Demography        45106
## 7743                           Demography       121206
## 7745                            Education        69706
## 7746                            Education       123306
## 7747                            Education       123406
## 7749                            Education       133006
## 7750                            Education        63206
## 7752                            Education        63406
## 7763                            Education        46206
## 7765         Environmental sustainability       174406
## 7766         Environmental sustainability        27706
## 7767         Environmental sustainability       100806
## 7769         Environmental sustainability       174306
## 7774         Environmental sustainability       163906
## 7775                               Gender        36806
## 7778                               Gender       175506
## 7788                               Gender        89006
## 7799                               Health        58006
## 7800                               Health        64406
## 7801                               Health        64306
## 7802                               Health        69206
## 7803                               Health       120606
## 7804                               Health       121106
## 7805                               Health       103206
## 7807                               Health        57806
## 7808                               Health        57206
## 7809                               Health        57906
## 7810                               Health        57506
## 7819      Income/composition of resources       127606
## 7820      Income/composition of resources       136706
## 7821      Income/composition of resources       143306
## 7823      Income/composition of resources       141706
## 7824      Income/composition of resources       103606
## 7840           Mobility and communication       110806
## 7857        Socio-economic sustainability       178306
## 7866        Socio-economic sustainability       174206
## 7869            Trade and financial flows        99106
## 7870            Trade and financial flows       111306
## 7871            Trade and financial flows        52606
## 7876   Work, employment and vulnerability       148206
## 7877   Work, employment and vulnerability        48706
## 7878   Work, employment and vulnerability        48806
## 7885                    Composite indices       137506
## 7886                           Demography        47906
## 7887                           Demography       122006
## 7888                           Demography        63106
## 7889                           Demography       132706
## 7890                           Demography       132806
## 7891                           Demography        49006
## 7892                           Demography        44206
## 7893                           Demography        45106
## 7894                           Demography       121206
## 7895                            Education       103706
## 7896                            Education        69706
## 7900                            Education       133006
## 7904                            Education       103006
## 7905                            Education        24106
## 7906                            Education        24206
## 7907                            Education        23806
## 7908                            Education        23906
## 7909                            Education        24006
## 7914         Environmental sustainability       174406
## 7915         Environmental sustainability        27706
## 7916         Environmental sustainability       100806
## 7918         Environmental sustainability       174306
## 7923         Environmental sustainability       163906
## 7924                               Gender        36806
## 7934                               Gender        89006
## 7935                               Gender       181206
## 7943                               Health        58006
## 7944                               Health        64406
## 7945                               Health        64306
## 7946                               Health        69206
## 7947                               Health       120606
## 7948                               Health       121106
## 7949                               Health       103206
## 7950                               Health        57806
## 7951                               Health        57206
## 7952                               Health        57906
## 7953                               Health        57506
## 7961      Income/composition of resources       127606
## 7962      Income/composition of resources       136706
## 7963      Income/composition of resources       143306
## 7964      Income/composition of resources        65606
## 7965      Income/composition of resources       141706
## 7966      Income/composition of resources       103606
## 7983           Mobility and communication       110806
## 7985        Socio-economic sustainability       164406
## 7987        Socio-economic sustainability       178306
## 7992        Socio-economic sustainability       181706
## 7994        Socio-economic sustainability       174206
## 7995            Trade and financial flows       133206
## 7996            Trade and financial flows        53506
## 7997            Trade and financial flows        99106
## 7998            Trade and financial flows       111306
## 7999            Trade and financial flows        52606
## 8003   Work, employment and vulnerability       148206
## 8004   Work, employment and vulnerability        48706
## 8005   Work, employment and vulnerability        48806
## 8012                    Composite indices       137506
## 8013                           Demography        47906
## 8014                           Demography       122006
## 8015                           Demography        63106
## 8016                           Demography       132706
## 8017                           Demography       132806
## 8018                           Demography        49006
## 8019                           Demography        44206
## 8020                           Demography        45106
## 8021                           Demography       121206
## 8022                            Education       103706
## 8023                            Education        69706
## 8024                            Education       123306
## 8025                            Education       123406
## 8026                            Education       149206
## 8027                            Education       133006
## 8028                            Education        63206
## 8029                            Education        63306
## 8030                            Education        63406
## 8031                            Education       103006
## 8032                            Education        24106
## 8033                            Education        24206
## 8034                            Education        23806
## 8035                            Education        23906
## 8036                            Education        24006
## 8037                            Education        46106
## 8044         Environmental sustainability       174406
## 8045         Environmental sustainability        27706
## 8046         Environmental sustainability       100806
## 8048         Environmental sustainability       174306
## 8049         Environmental sustainability        97106
## 8053         Environmental sustainability       163906
## 8054                               Gender        36806
## 8055                               Gender       175506
## 8065                               Gender        89006
## 8066                               Gender       181206
## 8075                               Health        64406
## 8076                               Health        64306
## 8077                               Health        69206
## 8078                               Health       120606
## 8079                               Health       121106
## 8080                               Health       103206
## 8081                               Health        57806
## 8082                               Health        57206
## 8083                               Health        57906
## 8084                               Health        57506
## 8094      Income/composition of resources       136706
## 8095      Income/composition of resources       143306
## 8096      Income/composition of resources        65606
## 8097      Income/composition of resources       141706
## 8098      Income/composition of resources       103606
## 8116           Mobility and communication       110806
## 8117        Socio-economic sustainability       164406
## 8119        Socio-economic sustainability       178306
## 8126        Socio-economic sustainability       181706
## 8128            Trade and financial flows       133206
## 8129            Trade and financial flows        53506
## 8130            Trade and financial flows       111306
## 8131            Trade and financial flows        52606
## 8135   Work, employment and vulnerability       148206
## 8136   Work, employment and vulnerability        48706
## 8137   Work, employment and vulnerability        48806
## 8144                    Composite indices       137506
## 8145                           Demography        47906
## 8146                           Demography       122006
## 8147                           Demography        63106
## 8148                           Demography       132706
## 8149                           Demography       132806
## 8150                           Demography        49006
## 8151                           Demography        44206
## 8152                           Demography        45106
## 8153                           Demography       121206
## 8154                            Education       103706
## 8155                            Education        69706
## 8156                            Education       123306
## 8157                            Education       123406
## 8158                            Education       149206
## 8159                            Education       133006
## 8160                            Education        63206
## 8161                            Education        63306
## 8162                            Education        63406
## 8163                            Education       103006
## 8164                            Education        24106
## 8165                            Education        24206
## 8166                            Education        23806
## 8167                            Education        23906
## 8168                            Education        24006
## 8169                            Education        46106
## 8174                            Education       177706
## 8175         Environmental sustainability       174406
## 8176         Environmental sustainability        27706
## 8177         Environmental sustainability       100806
## 8179         Environmental sustainability       174306
## 8184         Environmental sustainability       163906
## 8185                               Gender        36806
## 8196                               Gender        89006
## 8207                               Health        58006
## 8208                               Health        64406
## 8209                               Health        64306
## 8210                               Health        69206
## 8211                               Health       120606
## 8212                               Health       121106
## 8213                               Health       103206
## 8214                               Health        57806
## 8215                               Health        57206
## 8216                               Health        57906
## 8217                               Health        57506
## 8227      Income/composition of resources       136706
## 8228      Income/composition of resources       143306
## 8229      Income/composition of resources        65606
## 8230      Income/composition of resources       141706
## 8231      Income/composition of resources       103606
## 8249           Mobility and communication       110806
## 8250        Socio-economic sustainability       164406
## 8252        Socio-economic sustainability       178306
## 8259        Socio-economic sustainability       181706
## 8261            Trade and financial flows       133206
## 8262            Trade and financial flows        53506
## 8263            Trade and financial flows       111306
## 8264            Trade and financial flows        52606
## 8268   Work, employment and vulnerability       148206
## 8269   Work, employment and vulnerability        48706
## 8270   Work, employment and vulnerability        48806
## 8278                           Demography        47906
## 8279                           Demography       122006
## 8280                           Demography        63106
## 8281                           Demography       132706
## 8282                           Demography       132806
## 8283                           Demography        49006
## 8284                           Demography        44206
## 8285                           Demography        45106
## 8286                           Demography       121206
## 8288                            Education        69706
## 8289                            Education       123306
## 8290                            Education       123406
## 8301                            Education        23906
## 8302                            Education        24006
## 8313         Environmental sustainability       100806
## 8315         Environmental sustainability       174306
## 8320         Environmental sustainability       163906
## 8321                               Gender        36806
## 8333                               Gender        89006
## 8334                               Gender       181206
## 8345                               Health        58006
## 8348                               Health        69206
## 8349                               Health       120606
## 8350                               Health       121106
## 8351                               Health       103206
## 8353                               Health        57806
## 8354                               Health        57206
## 8355                               Health        57906
## 8356                               Health        57506
## 8366      Income/composition of resources       136706
## 8367      Income/composition of resources       143306
## 8368      Income/composition of resources        65606
## 8369      Income/composition of resources       141706
## 8370      Income/composition of resources       103606
## 8388           Mobility and communication       110806
## 8392        Socio-economic sustainability       178306
## 8399        Socio-economic sustainability       181706
## 8402            Trade and financial flows       133206
## 8411   Work, employment and vulnerability       148206
## 8412   Work, employment and vulnerability        48706
## 8413   Work, employment and vulnerability        48806
## 8419                    Composite indices       137506
## 8420                           Demography        47906
## 8421                           Demography       122006
## 8422                           Demography        63106
## 8423                           Demography       132706
## 8424                           Demography       132806
## 8425                           Demography        49006
## 8426                           Demography        44206
## 8427                           Demography        45106
## 8428                           Demography       121206
## 8429                            Education       103706
## 8430                            Education        69706
## 8434                            Education       133006
## 8435                            Education        63206
## 8436                            Education        63306
## 8439                            Education       103006
## 8440                            Education        24106
## 8441                            Education        24206
## 8442                            Education        23806
## 8443                            Education        23906
## 8444                            Education        24006
## 8447                            Education        46206
## 8449         Environmental sustainability       174406
## 8450         Environmental sustainability        27706
## 8451         Environmental sustainability       100806
## 8453         Environmental sustainability       174306
## 8458         Environmental sustainability       163906
## 8459                               Gender        36806
## 8472                               Gender        89006
## 8484                               Health        58006
## 8485                               Health        64406
## 8486                               Health        64306
## 8487                               Health        69206
## 8488                               Health       120606
## 8489                               Health       121106
## 8490                               Health       103206
## 8492                               Health        57806
## 8493                               Health        57206
## 8494                               Health        57906
## 8495                               Health        57506
## 8504      Income/composition of resources       127606
## 8505      Income/composition of resources       136706
## 8506      Income/composition of resources       143306
## 8507      Income/composition of resources        65606
## 8508      Income/composition of resources       141706
## 8509      Income/composition of resources       103606
## 8526           Mobility and communication       110806
## 8541        Socio-economic sustainability       164406
## 8543        Socio-economic sustainability       178306
## 8552        Socio-economic sustainability       174206
## 8553            Trade and financial flows       133206
## 8554            Trade and financial flows        53506
## 8555            Trade and financial flows        99106
## 8556            Trade and financial flows       111306
## 8557            Trade and financial flows        52606
## 8562   Work, employment and vulnerability       148206
## 8563   Work, employment and vulnerability        48706
## 8564   Work, employment and vulnerability        48806
## 8572                           Demography        47906
## 8573                           Demography       122006
## 8574                           Demography        63106
## 8575                           Demography       132706
## 8576                           Demography       132806
## 8577                           Demography        49006
## 8578                           Demography        44206
## 8579                           Demography        45106
## 8580                           Demography       121206
## 8582                            Education        69706
## 8587                            Education        63206
## 8588                            Education        63306
## 8593                            Education        46206
## 8595         Environmental sustainability       174406
## 8596         Environmental sustainability        27706
## 8597         Environmental sustainability       100806
## 8599         Environmental sustainability       174306
## 8604         Environmental sustainability       163906
## 8605                               Gender        36806
## 8606                               Gender       175206
## 8607                               Gender       175506
## 8610                               Gender        89006
## 8614                               Health        64406
## 8615                               Health        64306
## 8616                               Health        69206
## 8617                               Health       120606
## 8618                               Health       121106
## 8619                               Health       103206
## 8620                               Health        57806
## 8621                               Health        57206
## 8622                               Health        57906
## 8623                               Health        57506
## 8631      Income/composition of resources       127606
## 8632      Income/composition of resources       136706
## 8633      Income/composition of resources       143306
## 8634      Income/composition of resources       141706
## 8635      Income/composition of resources       103606
## 8642           Mobility and communication       110806
## 8646        Socio-economic sustainability       181706
## 8647        Socio-economic sustainability       174206
## 8648            Trade and financial flows       133206
## 8649            Trade and financial flows        53506
## 8650            Trade and financial flows        99106
## 8651            Trade and financial flows       111306
## 8652            Trade and financial flows        52606
## 8655                    Composite indices       137506
## 8656                           Demography        47906
## 8657                           Demography       122006
## 8658                           Demography        63106
## 8659                           Demography       132706
## 8660                           Demography       132806
## 8661                           Demography        49006
## 8662                           Demography        44206
## 8663                           Demography        45106
## 8664                           Demography       121206
## 8665                            Education       103706
## 8666                            Education        69706
## 8667                            Education       123306
## 8668                            Education       123406
## 8671                            Education        63206
## 8672                            Education        63306
## 8673                            Education        63406
## 8675                            Education       103006
## 8679                            Education        46106
## 8681                            Education        46206
## 8682                            Education       177706
## 8683         Environmental sustainability       174406
## 8684         Environmental sustainability        27706
## 8685         Environmental sustainability       100806
## 8690         Environmental sustainability       163906
## 8691                               Gender        36806
## 8701                               Gender        89006
## 8711                               Health        58006
## 8712                               Health        64406
## 8713                               Health        64306
## 8714                               Health        69206
## 8715                               Health       120606
## 8716                               Health       121106
## 8717                               Health       103206
## 8719                               Health        57806
## 8720                               Health        57206
## 8721                               Health        57906
## 8722                               Health        57506
## 8732      Income/composition of resources       136706
## 8733      Income/composition of resources       143306
## 8734      Income/composition of resources        65606
## 8735      Income/composition of resources       141706
## 8736      Income/composition of resources       103606
## 8753           Mobility and communication       110806
## 8768        Socio-economic sustainability       164406
## 8770        Socio-economic sustainability       178306
## 8777        Socio-economic sustainability       174206
## 8778            Trade and financial flows       133206
## 8779            Trade and financial flows        53506
## 8780            Trade and financial flows        99106
## 8782            Trade and financial flows        52606
## 8787   Work, employment and vulnerability       148206
## 8788   Work, employment and vulnerability        48706
## 8789   Work, employment and vulnerability        48806
## 8796                           Demography        47906
## 8797                           Demography       122006
## 8798                           Demography        63106
## 8799                           Demography       132706
## 8800                           Demography       132806
## 8801                           Demography        49006
## 8802                           Demography        44206
## 8803                           Demography        45106
## 8804                           Demography       121206
## 8806                            Education        69706
## 8818         Environmental sustainability       174406
## 8819         Environmental sustainability        27706
## 8820         Environmental sustainability       100806
## 8822         Environmental sustainability       174306
## 8827         Environmental sustainability       163906
## 8828                               Gender        36806
## 8835                               Gender        89006
## 8844                               Health        58006
## 8845                               Health        64406
## 8846                               Health        64306
## 8847                               Health        69206
## 8848                               Health       120606
## 8849                               Health       121106
## 8850                               Health       103206
## 8852                               Health        57806
## 8853                               Health        57206
## 8854                               Health        57906
## 8855                               Health        57506
## 8863      Income/composition of resources       127606
## 8864      Income/composition of resources       136706
## 8865      Income/composition of resources       143306
## 8866      Income/composition of resources        65606
## 8867      Income/composition of resources       141706
## 8868      Income/composition of resources       103606
## 8884           Mobility and communication       110806
## 8899        Socio-economic sustainability       164406
## 8901        Socio-economic sustainability       178306
## 8908        Socio-economic sustainability       174206
## 8909            Trade and financial flows       133206
## 8910            Trade and financial flows        53506
## 8911            Trade and financial flows        99106
## 8912            Trade and financial flows       111306
## 8913            Trade and financial flows        52606
## 8918   Work, employment and vulnerability       148206
## 8919   Work, employment and vulnerability        48706
## 8920   Work, employment and vulnerability        48806
## 8926                    Composite indices       137506
## 8927                           Demography        47906
## 8928                           Demography       122006
## 8929                           Demography        63106
## 8930                           Demography       132706
## 8931                           Demography       132806
## 8932                           Demography        49006
## 8933                           Demography        44206
## 8934                           Demography        45106
## 8935                           Demography       121206
## 8936                            Education       103706
## 8937                            Education        69706
## 8944                            Education        63406
## 8946                            Education       103006
## 8947                            Education        24106
## 8948                            Education        24206
## 8949                            Education        23806
## 8950                            Education        23906
## 8951                            Education        24006
## 8957         Environmental sustainability       174406
## 8958         Environmental sustainability        27706
## 8959         Environmental sustainability       100806
## 8961         Environmental sustainability       174306
## 8966         Environmental sustainability       163906
## 8967                               Gender        36806
## 8980                               Gender        89006
## 8989                               Health        58006
## 8990                               Health        64406
## 8991                               Health        64306
## 8992                               Health        69206
## 8993                               Health       120606
## 8994                               Health       121106
## 8995                               Health       103206
## 8997                               Health        57806
## 8998                               Health        57206
## 8999                               Health        57906
## 9000                               Health        57506
## 9009      Income/composition of resources       127606
## 9010      Income/composition of resources       136706
## 9011      Income/composition of resources       143306
## 9012      Income/composition of resources        65606
## 9013      Income/composition of resources       141706
## 9014      Income/composition of resources       103606
## 9028           Mobility and communication       110806
## 9043        Socio-economic sustainability       178306
## 9048        Socio-economic sustainability       181706
## 9050            Trade and financial flows       133206
## 9051            Trade and financial flows        53506
## 9052            Trade and financial flows        99106
## 9059   Work, employment and vulnerability       148206
## 9060   Work, employment and vulnerability        48706
## 9061   Work, employment and vulnerability        48806
## 9068                    Composite indices       137506
## 9069                           Demography        47906
## 9070                           Demography       122006
## 9071                           Demography        63106
## 9072                           Demography       132706
## 9073                           Demography       132806
## 9074                           Demography        49006
## 9075                           Demography        44206
## 9076                           Demography        45106
## 9077                           Demography       121206
## 9078                            Education       103706
## 9079                            Education        69706
## 9080                            Education       123306
## 9081                            Education       123406
## 9083                            Education       133006
## 9084                            Education        63206
## 9086                            Education        63406
## 9088                            Education       103006
## 9089                            Education        24106
## 9090                            Education        24206
## 9091                            Education        23806
## 9092                            Education        23906
## 9093                            Education        24006
## 9095                            Education        46206
## 9097         Environmental sustainability       174406
## 9098         Environmental sustainability        27706
## 9099         Environmental sustainability       100806
## 9101         Environmental sustainability       174306
## 9105         Environmental sustainability       163906
## 9106                               Gender        36806
## 9119                               Gender        89006
## 9130                               Health        58006
## 9131                               Health        64406
## 9132                               Health        64306
## 9133                               Health        69206
## 9134                               Health       120606
## 9135                               Health       121106
## 9136                               Health       103206
## 9138                               Health        57806
## 9139                               Health        57206
## 9140                               Health        57906
## 9141                               Health        57506
## 9150      Income/composition of resources       127606
## 9151      Income/composition of resources       136706
## 9152      Income/composition of resources       143306
## 9153      Income/composition of resources        65606
## 9154      Income/composition of resources       141706
## 9155      Income/composition of resources       103606
## 9172           Mobility and communication       110806
## 9187        Socio-economic sustainability       164406
## 9189        Socio-economic sustainability       178306
## 9196        Socio-economic sustainability       181706
## 9198        Socio-economic sustainability       174206
## 9199            Trade and financial flows       133206
## 9200            Trade and financial flows        53506
## 9201            Trade and financial flows        99106
## 9202            Trade and financial flows       111306
## 9203            Trade and financial flows        52606
## 9207   Work, employment and vulnerability       148206
## 9208   Work, employment and vulnerability        48706
## 9209   Work, employment and vulnerability        48806
## 9216                    Composite indices       137506
## 9217                           Demography        47906
## 9218                           Demography       122006
## 9219                           Demography        63106
## 9220                           Demography       132706
## 9221                           Demography       132806
## 9222                           Demography        49006
## 9223                           Demography        44206
## 9224                           Demography        45106
## 9225                           Demography       121206
## 9226                            Education       103706
## 9227                            Education        69706
## 9228                            Education       123306
## 9229                            Education       123406
## 9231                            Education       133006
## 9232                            Education        63206
## 9234                            Education        63406
## 9236                            Education       103006
## 9237                            Education        24106
## 9238                            Education        24206
## 9239                            Education        23806
## 9240                            Education        23906
## 9241                            Education        24006
## 9246         Environmental sustainability       174406
## 9247         Environmental sustainability        27706
## 9248         Environmental sustainability       100806
## 9250         Environmental sustainability       174306
## 9251         Environmental sustainability        97106
## 9255         Environmental sustainability       163906
## 9256                               Gender        36806
## 9268                               Gender        89006
## 9279                               Health        58006
## 9280                               Health        64406
## 9281                               Health        64306
## 9282                               Health        69206
## 9283                               Health       120606
## 9284                               Health       121106
## 9285                               Health       103206
## 9287                               Health        57806
## 9288                               Health        57206
## 9289                               Health        57906
## 9290                               Health        57506
## 9299      Income/composition of resources       127606
## 9300      Income/composition of resources       136706
## 9301      Income/composition of resources       143306
## 9302      Income/composition of resources        65606
## 9303      Income/composition of resources       141706
## 9304      Income/composition of resources       103606
## 9321           Mobility and communication       110806
## 9336        Socio-economic sustainability       164406
## 9338        Socio-economic sustainability       178306
## 9344        Socio-economic sustainability       181706
## 9346        Socio-economic sustainability       174206
## 9347            Trade and financial flows       133206
## 9348            Trade and financial flows        53506
## 9349            Trade and financial flows        99106
## 9350            Trade and financial flows       111306
## 9351            Trade and financial flows        52606
## 9355   Work, employment and vulnerability       148206
## 9356   Work, employment and vulnerability        48706
## 9357   Work, employment and vulnerability        48806
## 9364                    Composite indices       137506
## 9365                           Demography        47906
## 9366                           Demography       122006
## 9367                           Demography        63106
## 9368                           Demography       132706
## 9369                           Demography       132806
## 9370                           Demography        49006
## 9371                           Demography        44206
## 9372                           Demography        45106
## 9373                           Demography       121206
## 9374                            Education       103706
## 9375                            Education        69706
## 9378                            Education       149206
## 9379                            Education       133006
## 9380                            Education        63206
## 9381                            Education        63306
## 9384                            Education       103006
## 9385                            Education        24106
## 9386                            Education        24206
## 9387                            Education        23806
## 9388                            Education        23906
## 9389                            Education        24006
## 9390                            Education        46106
## 9394                            Education       177706
## 9395         Environmental sustainability       174406
## 9396         Environmental sustainability        27706
## 9397         Environmental sustainability       100806
## 9399         Environmental sustainability       174306
## 9404         Environmental sustainability       163906
## 9405                               Gender        36806
## 9417                               Gender        89006
## 9427                               Health        58006
## 9428                               Health        64406
## 9429                               Health        64306
## 9430                               Health        69206
## 9431                               Health       120606
## 9432                               Health       121106
## 9433                               Health       103206
## 9435                               Health        57806
## 9436                               Health        57206
## 9437                               Health        57906
## 9438                               Health        57506
## 9447      Income/composition of resources       127606
## 9448      Income/composition of resources       136706
## 9449      Income/composition of resources       143306
## 9450      Income/composition of resources        65606
## 9451      Income/composition of resources       141706
## 9452      Income/composition of resources       103606
## 9470           Mobility and communication       110806
## 9472        Socio-economic sustainability       164406
## 9474        Socio-economic sustainability       178306
## 9480        Socio-economic sustainability       181706
## 9481        Socio-economic sustainability       174206
## 9482            Trade and financial flows       133206
## 9483            Trade and financial flows        53506
## 9484            Trade and financial flows        99106
## 9485            Trade and financial flows       111306
## 9490   Work, employment and vulnerability       148206
## 9491   Work, employment and vulnerability        48706
## 9492   Work, employment and vulnerability        48806
## 9499                    Composite indices       137506
## 9500                           Demography        47906
## 9501                           Demography       122006
## 9502                           Demography        63106
## 9503                           Demography       132706
## 9504                           Demography       132806
## 9505                           Demography        49006
## 9506                           Demography        44206
## 9507                           Demography        45106
## 9508                           Demography       121206
## 9509                            Education       103706
## 9510                            Education        69706
## 9511                            Education       123306
## 9512                            Education       123406
## 9514                            Education       133006
## 9515                            Education        63206
## 9516                            Education        63306
## 9517                            Education        63406
## 9519                            Education       103006
## 9520                            Education        24106
## 9521                            Education        24206
## 9522                            Education        23806
## 9523                            Education        23906
## 9524                            Education        24006
## 9529                            Education        46206
## 9530                            Education       177706
## 9531         Environmental sustainability       174406
## 9532         Environmental sustainability        27706
## 9533         Environmental sustainability       100806
## 9535         Environmental sustainability       174306
## 9540         Environmental sustainability       163906
## 9541                               Gender        36806
## 9552                               Gender        89006
## 9562                               Health        58006
## 9563                               Health        64406
## 9564                               Health        64306
## 9565                               Health        69206
## 9566                               Health       120606
## 9567                               Health       121106
## 9568                               Health       103206
## 9569                               Health        57806
## 9570                               Health        57206
## 9571                               Health        57906
## 9572                               Health        57506
## 9582      Income/composition of resources       136706
## 9583      Income/composition of resources       143306
## 9584      Income/composition of resources        65606
## 9585      Income/composition of resources       141706
## 9586      Income/composition of resources       103606
## 9604           Mobility and communication       110806
## 9605        Socio-economic sustainability       164406
## 9607        Socio-economic sustainability       178306
## 9614        Socio-economic sustainability       181706
## 9616            Trade and financial flows       133206
## 9617            Trade and financial flows        53506
## 9618            Trade and financial flows       111306
## 9619            Trade and financial flows        52606
## 9623   Work, employment and vulnerability       148206
## 9624   Work, employment and vulnerability        48706
## 9625   Work, employment and vulnerability        48806
## 9632                    Composite indices       137506
## 9633                           Demography        47906
## 9634                           Demography       122006
## 9635                           Demography        63106
## 9636                           Demography       132706
## 9637                           Demography       132806
## 9638                           Demography        49006
## 9639                           Demography        44206
## 9640                           Demography        45106
## 9641                           Demography       121206
## 9642                            Education       103706
## 9643                            Education        69706
## 9644                            Education       123306
## 9645                            Education       123406
## 9647                            Education       133006
## 9648                            Education        63206
## 9649                            Education        63306
## 9650                            Education        63406
## 9652                            Education       103006
## 9653                            Education        24106
## 9654                            Education        24206
## 9655                            Education        23806
## 9656                            Education        23906
## 9657                            Education        24006
## 9666         Environmental sustainability       174406
## 9667         Environmental sustainability        27706
## 9668         Environmental sustainability       100806
## 9670         Environmental sustainability       174306
## 9675         Environmental sustainability       163906
## 9676                               Gender        36806
## 9677                               Gender       175206
## 9679                               Gender       175506
## 9688                               Gender        89006
## 9689                               Gender       181206
## 9693                               Gender       175606
## 9699                               Health        58006
## 9700                               Health        64406
## 9701                               Health        64306
## 9702                               Health        69206
## 9703                               Health       120606
## 9704                               Health       121106
## 9705                               Health       103206
## 9706                               Health        57806
## 9707                               Health        57206
## 9708                               Health        57906
## 9709                               Health        57506
## 9718      Income/composition of resources       127606
## 9719      Income/composition of resources       136706
## 9720      Income/composition of resources       143306
## 9721      Income/composition of resources        65606
## 9722      Income/composition of resources       141706
## 9723      Income/composition of resources       103606
## 9740           Mobility and communication       110806
## 9755        Socio-economic sustainability       164406
## 9757        Socio-economic sustainability       178306
## 9763        Socio-economic sustainability       181706
## 9764        Socio-economic sustainability       174206
## 9765            Trade and financial flows       133206
## 9766            Trade and financial flows        53506
## 9767            Trade and financial flows        99106
## 9768            Trade and financial flows       111306
## 9769            Trade and financial flows        52606
## 9774   Work, employment and vulnerability       148206
## 9775   Work, employment and vulnerability        48706
## 9776   Work, employment and vulnerability        48806
## 9782                    Composite indices       137506
## 9783                           Demography        47906
## 9784                           Demography       122006
## 9785                           Demography        63106
## 9786                           Demography       132706
## 9787                           Demography       132806
## 9788                           Demography        49006
## 9789                           Demography        44206
## 9790                           Demography        45106
## 9791                           Demography       121206
## 9792                            Education       103706
## 9793                            Education        69706
## 9797                            Education       133006
## 9798                            Education        63206
## 9802                            Education       103006
## 9803                            Education        24106
## 9804                            Education        24206
## 9805                            Education        23806
## 9806                            Education        23906
## 9807                            Education        24006
## 9812         Environmental sustainability       174406
## 9813         Environmental sustainability        27706
## 9814         Environmental sustainability       100806
## 9816         Environmental sustainability       174306
## 9817         Environmental sustainability        97106
## 9821         Environmental sustainability       163906
## 9822                               Gender        36806
## 9833                               Gender        89006
## 9844                               Health        58006
## 9845                               Health        64406
## 9846                               Health        64306
## 9847                               Health        69206
## 9848                               Health       120606
## 9849                               Health       121106
## 9850                               Health       103206
## 9852                               Health        57806
## 9853                               Health        57206
## 9854                               Health        57906
## 9855                               Health        57506
## 9864      Income/composition of resources       127606
## 9865      Income/composition of resources       136706
## 9866      Income/composition of resources       143306
## 9867      Income/composition of resources        65606
## 9868      Income/composition of resources       141706
## 9869      Income/composition of resources       103606
## 9885           Mobility and communication       110806
## 9899        Socio-economic sustainability       164406
## 9901        Socio-economic sustainability       178306
## 9909        Socio-economic sustainability       174206
## 9910            Trade and financial flows       133206
## 9911            Trade and financial flows        53506
## 9912            Trade and financial flows        99106
## 9913            Trade and financial flows       111306
## 9914            Trade and financial flows        52606
## 9918   Work, employment and vulnerability       148206
## 9919   Work, employment and vulnerability        48706
## 9920   Work, employment and vulnerability        48806
## 9927                           Demography        47906
## 9928                           Demography       122006
## 9929                           Demography        63106
## 9930                           Demography       132706
## 9931                           Demography       132806
## 9932                           Demography        49006
## 9933                           Demography        44206
## 9934                           Demography        45106
## 9935                           Demography       121206
## 9937                            Education        69706
## 9938                            Education       123306
## 9939                            Education       123406
## 9941                            Education        63206
## 9942                            Education        63306
## 9946                            Education        46206
## 9948         Environmental sustainability       174406
## 9949         Environmental sustainability        27706
## 9950         Environmental sustainability       100806
## 9952         Environmental sustainability       174306
## 9956         Environmental sustainability       163906
## 9957                               Gender        36806
## 9962                               Gender        89006
## 9963                               Gender       181206
## 9969                               Health        64406
## 9970                               Health        64306
## 9971                               Health        69206
## 9972                               Health       120606
## 9973                               Health       121106
## 9974                               Health       103206
## 9975                               Health        57806
## 9976                               Health        57206
## 9977                               Health        57906
## 9978                               Health        57506
## 9987      Income/composition of resources       136706
## 9988      Income/composition of resources       143306
## 9989      Income/composition of resources        65606
## 9990      Income/composition of resources       141706
## 9991      Income/composition of resources       103606
## 10007          Mobility and communication       110806
## 10009       Socio-economic sustainability       178306
## 10013           Trade and financial flows       133206
## 10014           Trade and financial flows        53506
## 10015           Trade and financial flows        99106
## 10016           Trade and financial flows       111306
## 10017           Trade and financial flows        52606
## 10019                   Composite indices       137506
## 10020                          Demography        47906
## 10021                          Demography       122006
## 10022                          Demography        63106
## 10023                          Demography       132706
## 10024                          Demography       132806
## 10025                          Demography        49006
## 10026                          Demography        44206
## 10027                          Demography        45106
## 10028                          Demography       121206
## 10029                           Education       103706
## 10030                           Education        69706
## 10034                           Education       133006
## 10035                           Education        63206
## 10036                           Education        63306
## 10037                           Education        63406
## 10039                           Education       103006
## 10040                           Education        24106
## 10041                           Education        24206
## 10042                           Education        23806
## 10043                           Education        23906
## 10044                           Education        24006
## 10052        Environmental sustainability       100806
## 10054        Environmental sustainability       174306
## 10059        Environmental sustainability       163906
## 10060                              Gender        36806
## 10072                              Gender        89006
## 10073                              Gender       181206
## 10084                              Health        58006
## 10087                              Health        69206
## 10088                              Health       120606
## 10089                              Health       121106
## 10090                              Health       103206
## 10092                              Health        57806
## 10093                              Health        57206
## 10094                              Health        57906
## 10095                              Health        57506
## 10105     Income/composition of resources       136706
## 10106     Income/composition of resources       143306
## 10107     Income/composition of resources        65606
## 10108     Income/composition of resources       141706
## 10109     Income/composition of resources       103606
## 10126          Mobility and communication       110806
## 10143       Socio-economic sustainability       178306
## 10150       Socio-economic sustainability       181706
## 10153           Trade and financial flows       133206
## 10162  Work, employment and vulnerability       148206
## 10163  Work, employment and vulnerability        48706
## 10164  Work, employment and vulnerability        48806
## 10171                   Composite indices       137506
## 10172                          Demography        47906
## 10173                          Demography       122006
## 10174                          Demography        63106
## 10175                          Demography       132706
## 10176                          Demography       132806
## 10177                          Demography        49006
## 10178                          Demography        44206
## 10179                          Demography        45106
## 10180                          Demography       121206
## 10181                           Education       103706
## 10182                           Education        69706
## 10183                           Education       123306
## 10184                           Education       123406
## 10186                           Education       133006
## 10187                           Education        63206
## 10188                           Education        63306
## 10189                           Education        63406
## 10191                           Education       103006
## 10192                           Education        24106
## 10193                           Education        24206
## 10194                           Education        23806
## 10195                           Education        23906
## 10196                           Education        24006
## 10199                           Education        46206
## 10201        Environmental sustainability       174406
## 10202        Environmental sustainability        27706
## 10203        Environmental sustainability       100806
## 10209        Environmental sustainability       163906
## 10210                              Gender        36806
## 10222                              Gender        89006
## 10234                              Health        58006
## 10235                              Health        64406
## 10236                              Health        64306
## 10237                              Health        69206
## 10238                              Health       120606
## 10239                              Health       121106
## 10240                              Health       103206
## 10242                              Health        57806
## 10243                              Health        57206
## 10244                              Health        57906
## 10245                              Health        57506
## 10254     Income/composition of resources       127606
## 10255     Income/composition of resources       136706
## 10256     Income/composition of resources       143306
## 10258     Income/composition of resources       141706
## 10259     Income/composition of resources       103606
## 10276          Mobility and communication       110806
## 10299       Socio-economic sustainability       181706
## 10301       Socio-economic sustainability       174206
## 10302           Trade and financial flows       133206
## 10303           Trade and financial flows        53506
## 10304           Trade and financial flows        99106
## 10305           Trade and financial flows       111306
## 10306           Trade and financial flows        52606
## 10311  Work, employment and vulnerability       148206
## 10312  Work, employment and vulnerability        48706
## 10313  Work, employment and vulnerability        48806
## 10320                   Composite indices       137506
## 10321                          Demography        47906
## 10322                          Demography       122006
## 10323                          Demography        63106
## 10324                          Demography       132706
## 10325                          Demography       132806
## 10326                          Demography        49006
## 10327                          Demography        44206
## 10328                          Demography        45106
## 10329                          Demography       121206
## 10330                           Education       103706
## 10331                           Education        69706
## 10332                           Education       123306
## 10333                           Education       123406
## 10336                           Education        63206
## 10337                           Education        63306
## 10338                           Education        63406
## 10340                           Education       103006
## 10341                           Education        24106
## 10342                           Education        24206
## 10343                           Education        23806
## 10344                           Education        23906
## 10345                           Education        24006
## 10346                           Education        46106
## 10349                           Education        46206
## 10351        Environmental sustainability       174406
## 10352        Environmental sustainability        27706
## 10353        Environmental sustainability       100806
## 10360        Environmental sustainability       163906
## 10361                              Gender        36806
## 10373                              Gender        89006
## 10383                              Health        58006
## 10384                              Health        64406
## 10385                              Health        64306
## 10386                              Health        69206
## 10387                              Health       120606
## 10388                              Health       121106
## 10389                              Health       103206
## 10390                              Health        57806
## 10391                              Health        57206
## 10392                              Health        57906
## 10393                              Health        57506
## 10402     Income/composition of resources       127606
## 10403     Income/composition of resources       136706
## 10404     Income/composition of resources       143306
## 10406     Income/composition of resources       141706
## 10407     Income/composition of resources       103606
## 10424          Mobility and communication       110806
## 10448       Socio-economic sustainability       181706
## 10450       Socio-economic sustainability       174206
## 10452           Trade and financial flows        53506
## 10453           Trade and financial flows        99106
## 10454           Trade and financial flows       111306
## 10455           Trade and financial flows        52606
## 10459  Work, employment and vulnerability       148206
## 10460  Work, employment and vulnerability        48706
## 10461  Work, employment and vulnerability        48806
## 10468                          Demography        47906
## 10469                          Demography       122006
## 10470                          Demography        63106
## 10471                          Demography       132706
## 10472                          Demography       132806
## 10473                          Demography        49006
## 10474                          Demography        44206
## 10475                          Demography        45106
## 10476                          Demography       121206
## 10487                           Education       103006
## 10488                           Education        24106
## 10489                           Education        24206
## 10490                           Education        23806
## 10491                           Education        23906
## 10492                           Education        24006
## 10497        Environmental sustainability       174406
## 10498        Environmental sustainability        27706
## 10499        Environmental sustainability       100806
## 10505        Environmental sustainability       163906
## 10506                              Gender        36806
## 10518                              Gender        89006
## 10530                              Health        58006
## 10533                              Health        69206
## 10534                              Health       120606
## 10535                              Health       121106
## 10536                              Health       103206
## 10538                              Health        57806
## 10539                              Health        57206
## 10540                              Health        57906
## 10541                              Health        57506
## 10551     Income/composition of resources       136706
## 10552     Income/composition of resources       143306
## 10554     Income/composition of resources       141706
## 10555     Income/composition of resources       103606
## 10570          Mobility and communication       110806
## 10592       Socio-economic sustainability       181706
## 10596           Trade and financial flows        53506
## 10604  Work, employment and vulnerability       148206
## 10605  Work, employment and vulnerability        48706
## 10606  Work, employment and vulnerability        48806
## 10613                          Demography        47906
## 10614                          Demography       122006
## 10615                          Demography        63106
## 10616                          Demography       132706
## 10617                          Demography       132806
## 10618                          Demography        49006
## 10619                          Demography        44206
## 10620                          Demography        45106
## 10621                          Demography       121206
## 10623                           Education        69706
## 10624                           Education       123306
## 10625                           Education       123406
## 10628                           Education        63206
## 10629                           Education        63306
## 10630                           Education        63406
## 10635                           Education        46106
## 10637                           Education        46206
## 10638                           Education       177706
## 10639        Environmental sustainability       174406
## 10640        Environmental sustainability        27706
## 10641        Environmental sustainability       100806
## 10647        Environmental sustainability       163906
## 10648                              Gender        36806
## 10660                              Gender        89006
## 10670                              Health        58006
## 10671                              Health        64406
## 10672                              Health        64306
## 10673                              Health        69206
## 10674                              Health       120606
## 10675                              Health       121106
## 10676                              Health       103206
## 10678                              Health        57806
## 10679                              Health        57206
## 10680                              Health        57906
## 10681                              Health        57506
## 10690     Income/composition of resources       127606
## 10691     Income/composition of resources       136706
## 10692     Income/composition of resources       143306
## 10693     Income/composition of resources        65606
## 10694     Income/composition of resources       141706
## 10695     Income/composition of resources       103606
## 10712          Mobility and communication       110806
## 10727       Socio-economic sustainability       164406
## 10729       Socio-economic sustainability       178306
## 10736       Socio-economic sustainability       181706
## 10738       Socio-economic sustainability       174206
## 10739           Trade and financial flows       133206
## 10740           Trade and financial flows        53506
## 10741           Trade and financial flows        99106
## 10742           Trade and financial flows       111306
## 10743           Trade and financial flows        52606
## 10747  Work, employment and vulnerability       148206
## 10748  Work, employment and vulnerability        48706
## 10749  Work, employment and vulnerability        48806
## 10756                   Composite indices       137506
## 10757                          Demography        47906
## 10758                          Demography       122006
## 10759                          Demography        63106
## 10760                          Demography       132706
## 10761                          Demography       132806
## 10762                          Demography        49006
## 10763                          Demography        44206
## 10764                          Demography        45106
## 10765                          Demography       121206
## 10766                           Education       103706
## 10767                           Education        69706
## 10768                           Education       123306
## 10769                           Education       123406
## 10770                           Education       149206
## 10772                           Education        63206
## 10773                           Education        63306
## 10774                           Education        63406
## 10776                           Education       103006
## 10777                           Education        24106
## 10778                           Education        24206
## 10779                           Education        23806
## 10780                           Education        23906
## 10781                           Education        24006
## 10782                           Education        46106
## 10786        Environmental sustainability       174406
## 10787        Environmental sustainability        27706
## 10788        Environmental sustainability       100806
## 10794        Environmental sustainability       163906
## 10795                              Gender        36806
## 10806                              Gender        89006
## 10817                              Health        58006
## 10818                              Health        64406
## 10819                              Health        64306
## 10820                              Health        69206
## 10821                              Health       120606
## 10822                              Health       121106
## 10823                              Health       103206
## 10825                              Health        57806
## 10826                              Health        57206
## 10827                              Health        57906
## 10828                              Health        57506
## 10837     Income/composition of resources       127606
## 10838     Income/composition of resources       136706
## 10839     Income/composition of resources       143306
## 10840     Income/composition of resources        65606
## 10841     Income/composition of resources       141706
## 10842     Income/composition of resources       103606
## 10859          Mobility and communication       110806
## 10874       Socio-economic sustainability       164406
## 10876       Socio-economic sustainability       178306
## 10884       Socio-economic sustainability       174206
## 10885           Trade and financial flows       133206
## 10886           Trade and financial flows        53506
## 10887           Trade and financial flows        99106
## 10888           Trade and financial flows       111306
## 10894  Work, employment and vulnerability       148206
## 10895  Work, employment and vulnerability        48706
## 10896  Work, employment and vulnerability        48806
## 10902                   Composite indices       137506
## 10903                          Demography        47906
## 10904                          Demography       122006
## 10905                          Demography        63106
## 10906                          Demography       132706
## 10907                          Demography       132806
## 10908                          Demography        49006
## 10909                          Demography        44206
## 10910                          Demography        45106
## 10911                          Demography       121206
## 10912                           Education       103706
## 10913                           Education        69706
## 10917                           Education       133006
## 10918                           Education        63206
## 10919                           Education        63306
## 10920                           Education        63406
## 10922                           Education       103006
## 10923                           Education        24106
## 10924                           Education        24206
## 10925                           Education        23806
## 10926                           Education        23906
## 10927                           Education        24006
## 10928                           Education        46106
## 10931                           Education        46206
## 10933        Environmental sustainability       174406
## 10934        Environmental sustainability        27706
## 10935        Environmental sustainability       100806
## 10937        Environmental sustainability       174306
## 10938        Environmental sustainability        97106
## 10942        Environmental sustainability       163906
## 10943                              Gender        36806
## 10955                              Gender        89006
## 10956                              Gender       181206
## 10964                              Health        58006
## 10965                              Health        64406
## 10966                              Health        64306
## 10967                              Health        69206
## 10968                              Health       120606
## 10969                              Health       121106
## 10970                              Health       103206
## 10972                              Health        57806
## 10973                              Health        57206
## 10974                              Health        57906
## 10975                              Health        57506
## 10983     Income/composition of resources       127606
## 10984     Income/composition of resources       136706
## 10985     Income/composition of resources       143306
## 10986     Income/composition of resources        65606
## 10987     Income/composition of resources       141706
## 10988     Income/composition of resources       103606
## 11003          Mobility and communication       110806
## 11005       Socio-economic sustainability       164406
## 11007       Socio-economic sustainability       178306
## 11013       Socio-economic sustainability       181706
## 11015       Socio-economic sustainability       174206
## 11016           Trade and financial flows       133206
## 11017           Trade and financial flows        53506
## 11018           Trade and financial flows        99106
## 11019           Trade and financial flows       111306
## 11020           Trade and financial flows        52606
## 11024  Work, employment and vulnerability       148206
## 11025  Work, employment and vulnerability        48706
## 11026  Work, employment and vulnerability        48806
## 11033                   Composite indices       137506
## 11034                          Demography        47906
## 11035                          Demography       122006
## 11036                          Demography        63106
## 11037                          Demography       132706
## 11038                          Demography       132806
## 11039                          Demography        49006
## 11040                          Demography        44206
## 11041                          Demography        45106
## 11042                          Demography       121206
## 11043                           Education       103706
## 11044                           Education        69706
## 11045                           Education       123306
## 11046                           Education       123406
## 11049                           Education        63206
## 11050                           Education        63306
## 11051                           Education        63406
## 11053                           Education       103006
## 11054                           Education        24106
## 11055                           Education        24206
## 11056                           Education        23806
## 11057                           Education        23906
## 11058                           Education        24006
## 11061                           Education        46206
## 11063        Environmental sustainability       174406
## 11064        Environmental sustainability        27706
## 11065        Environmental sustainability       100806
## 11071        Environmental sustainability       163906
## 11072                              Gender        36806
## 11084                              Gender        89006
## 11095                              Health        58006
## 11096                              Health        64406
## 11097                              Health        64306
## 11098                              Health        69206
## 11099                              Health       120606
## 11100                              Health       121106
## 11101                              Health       103206
## 11103                              Health        57806
## 11104                              Health        57206
## 11105                              Health        57906
## 11106                              Health        57506
## 11115     Income/composition of resources       127606
## 11116     Income/composition of resources       136706
## 11117     Income/composition of resources       143306
## 11118     Income/composition of resources        65606
## 11119     Income/composition of resources       141706
## 11120     Income/composition of resources       103606
## 11137          Mobility and communication       110806
## 11152       Socio-economic sustainability       164406
## 11154       Socio-economic sustainability       178306
## 11163       Socio-economic sustainability       174206
## 11164           Trade and financial flows       133206
## 11165           Trade and financial flows        53506
## 11166           Trade and financial flows        99106
## 11167           Trade and financial flows       111306
## 11168           Trade and financial flows        52606
## 11173  Work, employment and vulnerability       148206
## 11174  Work, employment and vulnerability        48706
## 11175  Work, employment and vulnerability        48806
## 11182                   Composite indices       137506
## 11183                          Demography        47906
## 11184                          Demography       122006
## 11185                          Demography        63106
## 11186                          Demography       132706
## 11187                          Demography       132806
## 11188                          Demography        49006
## 11189                          Demography        44206
## 11190                          Demography        45106
## 11191                          Demography       121206
## 11192                           Education       103706
## 11193                           Education        69706
## 11194                           Education       123306
## 11195                           Education       123406
## 11196                           Education       149206
## 11197                           Education       133006
## 11198                           Education        63206
## 11199                           Education        63306
## 11200                           Education        63406
## 11202                           Education       103006
## 11203                           Education        24106
## 11204                           Education        24206
## 11205                           Education        23806
## 11206                           Education        23906
## 11207                           Education        24006
## 11213                           Education        46206
## 11214                           Education       177706
## 11215        Environmental sustainability       174406
## 11216        Environmental sustainability        27706
## 11217        Environmental sustainability       100806
## 11219        Environmental sustainability       174306
## 11224        Environmental sustainability       163906
## 11225                              Gender        36806
## 11235                              Gender        89006
## 11245                              Health        58006
## 11246                              Health        64406
## 11247                              Health        64306
## 11248                              Health        69206
## 11249                              Health       120606
## 11250                              Health       121106
## 11251                              Health       103206
## 11252                              Health        57806
## 11253                              Health        57206
## 11254                              Health        57906
## 11255                              Health        57506
## 11263     Income/composition of resources       136706
## 11264     Income/composition of resources       143306
## 11265     Income/composition of resources        65606
## 11266     Income/composition of resources       141706
## 11267     Income/composition of resources       103606
## 11285          Mobility and communication       110806
## 11287       Socio-economic sustainability       178306
## 11292       Socio-economic sustainability       181706
## 11294           Trade and financial flows       133206
## 11295           Trade and financial flows        53506
## 11296           Trade and financial flows        99106
## 11297           Trade and financial flows       111306
## 11298           Trade and financial flows        52606
## 11302  Work, employment and vulnerability       148206
## 11303  Work, employment and vulnerability        48706
## 11304  Work, employment and vulnerability        48806
## 11311                   Composite indices       137506
## 11312                          Demography        47906
## 11313                          Demography       122006
## 11314                          Demography        63106
## 11315                          Demography       132706
## 11316                          Demography       132806
## 11317                          Demography        49006
## 11318                          Demography        44206
## 11319                          Demography        45106
## 11320                          Demography       121206
## 11321                           Education       103706
## 11322                           Education        69706
## 11323                           Education       123306
## 11324                           Education       123406
## 11327                           Education        63206
## 11328                           Education        63306
## 11329                           Education        63406
## 11331                           Education       103006
## 11332                           Education        24106
## 11333                           Education        24206
## 11334                           Education        23806
## 11335                           Education        23906
## 11336                           Education        24006
## 11337                           Education        46106
## 11339                           Education        46206
## 11341        Environmental sustainability       174406
## 11342        Environmental sustainability        27706
## 11343        Environmental sustainability       100806
## 11349        Environmental sustainability       163906
## 11350                              Gender        36806
## 11362                              Gender        89006
## 11372                              Health        58006
## 11373                              Health        64406
## 11374                              Health        64306
## 11375                              Health        69206
## 11376                              Health       120606
## 11377                              Health       121106
## 11378                              Health       103206
## 11380                              Health        57806
## 11381                              Health        57206
## 11382                              Health        57906
## 11383                              Health        57506
## 11392     Income/composition of resources       127606
## 11393     Income/composition of resources       136706
## 11394     Income/composition of resources       143306
## 11395     Income/composition of resources        65606
## 11396     Income/composition of resources       141706
## 11397     Income/composition of resources       103606
## 11414          Mobility and communication       110806
## 11429       Socio-economic sustainability       164406
## 11431       Socio-economic sustainability       178306
## 11439       Socio-economic sustainability       174206
## 11440           Trade and financial flows       133206
## 11441           Trade and financial flows        53506
## 11442           Trade and financial flows        99106
## 11443           Trade and financial flows       111306
## 11444           Trade and financial flows        52606
## 11449  Work, employment and vulnerability       148206
## 11450  Work, employment and vulnerability        48706
## 11451  Work, employment and vulnerability        48806
## 11458                   Composite indices       137506
## 11459                          Demography        47906
## 11460                          Demography       122006
## 11461                          Demography        63106
## 11462                          Demography       132706
## 11463                          Demography       132806
## 11464                          Demography        49006
## 11465                          Demography        44206
## 11466                          Demography        45106
## 11467                          Demography       121206
## 11468                           Education       103706
## 11469                           Education        69706
## 11470                           Education       123306
## 11471                           Education       123406
## 11472                           Education       149206
## 11473                           Education       133006
## 11474                           Education        63206
## 11475                           Education        63306
## 11476                           Education        63406
## 11477                           Education       101406
## 11478                           Education       103006
## 11479                           Education        24106
## 11480                           Education        24206
## 11481                           Education        23806
## 11482                           Education        23906
## 11483                           Education        24006
## 11484                           Education        46106
## 11487                           Education        46206
## 11488                           Education       177706
## 11489        Environmental sustainability       174406
## 11490        Environmental sustainability        27706
## 11491        Environmental sustainability       100806
## 11493        Environmental sustainability       174306
## 11494        Environmental sustainability        97106
## 11498        Environmental sustainability       163906
## 11499                              Gender        36806
## 11509                              Gender        89006
## 11510                              Gender       181206
## 11518                              Health        64406
## 11519                              Health        64306
## 11520                              Health        69206
## 11521                              Health       120606
## 11522                              Health       121106
## 11523                              Health       103206
## 11524                              Health        57806
## 11525                              Health        57206
## 11526                              Health        57906
## 11527                              Health        57506
## 11535     Income/composition of resources       127606
## 11536     Income/composition of resources       136706
## 11537     Income/composition of resources       143306
## 11538     Income/composition of resources        65606
## 11539     Income/composition of resources       141706
## 11540     Income/composition of resources       103606
## 11558          Mobility and communication       110806
## 11560       Socio-economic sustainability       164406
## 11562       Socio-economic sustainability       178306
## 11567       Socio-economic sustainability       181706
## 11569       Socio-economic sustainability       174206
## 11570           Trade and financial flows       133206
## 11571           Trade and financial flows        53506
## 11572           Trade and financial flows        99106
## 11573           Trade and financial flows       111306
## 11578  Work, employment and vulnerability       148206
## 11579  Work, employment and vulnerability        48706
## 11580  Work, employment and vulnerability        48806
## 11586                   Composite indices       137506
## 11587                          Demography        47906
## 11588                          Demography       122006
## 11589                          Demography        63106
## 11590                          Demography       132706
## 11591                          Demography       132806
## 11592                          Demography        49006
## 11593                          Demography        44206
## 11594                          Demography        45106
## 11595                          Demography       121206
## 11596                           Education       103706
## 11597                           Education        69706
## 11598                           Education       123306
## 11599                           Education       123406
## 11600                           Education       149206
## 11601                           Education       133006
## 11602                           Education        63206
## 11603                           Education        63306
## 11604                           Education        63406
## 11605                           Education       101406
## 11606                           Education       103006
## 11607                           Education        24106
## 11608                           Education        24206
## 11609                           Education        23806
## 11610                           Education        23906
## 11611                           Education        24006
## 11612                           Education        46106
## 11618                           Education        46206
## 11619                           Education       177706
## 11620        Environmental sustainability       174406
## 11621        Environmental sustainability        27706
## 11622        Environmental sustainability       100806
## 11624        Environmental sustainability       174306
## 11629        Environmental sustainability       163906
## 11630                              Gender        36806
## 11643                              Gender        89006
## 11644                              Gender       181206
## 11654                              Health        58006
## 11655                              Health        64406
## 11656                              Health        64306
## 11657                              Health        69206
## 11658                              Health       120606
## 11659                              Health       121106
## 11660                              Health       103206
## 11662                              Health        57806
## 11663                              Health        57206
## 11664                              Health        57906
## 11665                              Health        57506
## 11674     Income/composition of resources       127606
## 11675     Income/composition of resources       136706
## 11676     Income/composition of resources       143306
## 11677     Income/composition of resources        65606
## 11678     Income/composition of resources       141706
## 11679     Income/composition of resources       103606
## 11697          Mobility and communication       110806
## 11712       Socio-economic sustainability       164406
## 11714       Socio-economic sustainability       178306
## 11721       Socio-economic sustainability       181706
## 11723       Socio-economic sustainability       174206
## 11724           Trade and financial flows       133206
## 11725           Trade and financial flows        53506
## 11726           Trade and financial flows        99106
## 11727           Trade and financial flows       111306
## 11728           Trade and financial flows        52606
## 11733  Work, employment and vulnerability       148206
## 11734  Work, employment and vulnerability        48706
## 11735  Work, employment and vulnerability        48806
## 11742                   Composite indices       137506
## 11743                          Demography        47906
## 11744                          Demography       122006
## 11745                          Demography        63106
## 11746                          Demography       132706
## 11747                          Demography       132806
## 11748                          Demography        49006
## 11749                          Demography        44206
## 11750                          Demography        45106
## 11751                          Demography       121206
## 11752                           Education       103706
## 11753                           Education        69706
## 11757                           Education       133006
## 11758                           Education        63206
## 11759                           Education        63306
## 11760                           Education        63406
## 11762                           Education       103006
## 11763                           Education        24106
## 11764                           Education        24206
## 11765                           Education        23806
## 11766                           Education        23906
## 11767                           Education        24006
## 11771                           Education        46206
## 11773        Environmental sustainability       174406
## 11774        Environmental sustainability        27706
## 11775        Environmental sustainability       100806
## 11777        Environmental sustainability       174306
## 11782        Environmental sustainability       163906
## 11783                              Gender        36806
## 11796                              Gender        89006
## 11797                              Gender       181206
## 11806                              Health        58006
## 11807                              Health        64406
## 11808                              Health        64306
## 11809                              Health        69206
## 11810                              Health       120606
## 11811                              Health       121106
## 11812                              Health       103206
## 11813                              Health        57806
## 11814                              Health        57206
## 11815                              Health        57906
## 11816                              Health        57506
## 11826     Income/composition of resources       136706
## 11827     Income/composition of resources       143306
## 11828     Income/composition of resources        65606
## 11829     Income/composition of resources       141706
## 11830     Income/composition of resources       103606
## 11847          Mobility and communication       110806
## 11862       Socio-economic sustainability       164406
## 11864       Socio-economic sustainability       178306
## 11871       Socio-economic sustainability       181706
## 11874           Trade and financial flows       133206
## 11876           Trade and financial flows        99106
## 11883  Work, employment and vulnerability       148206
## 11884  Work, employment and vulnerability        48706
## 11885  Work, employment and vulnerability        48806
## 11892                   Composite indices       137506
## 11893                          Demography        47906
## 11894                          Demography       122006
## 11895                          Demography        63106
## 11896                          Demography       132706
## 11897                          Demography       132806
## 11898                          Demography        49006
## 11899                          Demography        44206
## 11900                          Demography        45106
## 11901                          Demography       121206
## 11902                           Education       103706
## 11903                           Education        69706
## 11904                           Education       123306
## 11905                           Education       123406
## 11906                           Education       149206
## 11907                           Education       133006
## 11908                           Education        63206
## 11909                           Education        63306
## 11910                           Education        63406
## 11912                           Education       103006
## 11913                           Education        24106
## 11914                           Education        24206
## 11915                           Education        23806
## 11916                           Education        23906
## 11917                           Education        24006
## 11918                           Education        46106
## 11921                           Education        46206
## 11923        Environmental sustainability       174406
## 11924        Environmental sustainability        27706
## 11925        Environmental sustainability       100806
## 11927        Environmental sustainability       174306
## 11932        Environmental sustainability       163906
## 11933                              Gender        36806
## 11945                              Gender        89006
## 11955                              Health        58006
## 11956                              Health        64406
## 11957                              Health        64306
## 11958                              Health        69206
## 11959                              Health       120606
## 11960                              Health       121106
## 11961                              Health       103206
## 11962                              Health        57806
## 11963                              Health        57206
## 11964                              Health        57906
## 11965                              Health        57506
## 11974     Income/composition of resources       127606
## 11975     Income/composition of resources       136706
## 11976     Income/composition of resources       143306
## 11977     Income/composition of resources        65606
## 11978     Income/composition of resources       141706
## 11979     Income/composition of resources       103606
## 11997          Mobility and communication       110806
## 12012       Socio-economic sustainability       164406
## 12014       Socio-economic sustainability       178306
## 12019       Socio-economic sustainability       181706
## 12021       Socio-economic sustainability       174206
## 12022           Trade and financial flows       133206
## 12023           Trade and financial flows        53506
## 12024           Trade and financial flows        99106
## 12025           Trade and financial flows       111306
## 12026           Trade and financial flows        52606
## 12030  Work, employment and vulnerability       148206
## 12031  Work, employment and vulnerability        48706
## 12032  Work, employment and vulnerability        48806
## 12038                   Composite indices       137506
## 12039                          Demography        47906
## 12040                          Demography       122006
## 12041                          Demography        63106
## 12042                          Demography       132706
## 12043                          Demography       132806
## 12044                          Demography        49006
## 12045                          Demography        44206
## 12046                          Demography        45106
## 12047                          Demography       121206
## 12048                           Education       103706
## 12049                           Education        69706
## 12050                           Education       123306
## 12051                           Education       123406
## 12054                           Education        63206
## 12055                           Education        63306
## 12058                           Education       103006
## 12059                           Education        24106
## 12060                           Education        24206
## 12061                           Education        23806
## 12064                           Education        46106
## 12066                           Education        46206
## 12068        Environmental sustainability       174406
## 12069        Environmental sustainability        27706
## 12070        Environmental sustainability       100806
## 12072        Environmental sustainability       174306
## 12073        Environmental sustainability        97106
## 12077        Environmental sustainability       163906
## 12078                              Gender        36806
## 12091                              Gender        89006
## 12102                              Health        58006
## 12103                              Health        64406
## 12104                              Health        64306
## 12105                              Health        69206
## 12106                              Health       120606
## 12107                              Health       121106
## 12108                              Health       103206
## 12110                              Health        57806
## 12111                              Health        57206
## 12112                              Health        57906
## 12113                              Health        57506
## 12122     Income/composition of resources       127606
## 12123     Income/composition of resources       136706
## 12124     Income/composition of resources       143306
## 12125     Income/composition of resources        65606
## 12126     Income/composition of resources       141706
## 12127     Income/composition of resources       103606
## 12144          Mobility and communication       110806
## 12161       Socio-economic sustainability       178306
## 12168       Socio-economic sustainability       181706
## 12170       Socio-economic sustainability       174206
## 12171           Trade and financial flows       133206
## 12172           Trade and financial flows        53506
## 12173           Trade and financial flows        99106
## 12175           Trade and financial flows        52606
## 12179  Work, employment and vulnerability       148206
## 12180  Work, employment and vulnerability        48706
## 12181  Work, employment and vulnerability        48806
## 12188                   Composite indices       137506
## 12189                          Demography        47906
## 12190                          Demography       122006
## 12191                          Demography        63106
## 12192                          Demography       132706
## 12193                          Demography       132806
## 12194                          Demography        49006
## 12195                          Demography        44206
## 12196                          Demography        45106
## 12197                          Demography       121206
## 12198                           Education       103706
## 12199                           Education        69706
## 12200                           Education       123306
## 12201                           Education       123406
## 12203                           Education       133006
## 12204                           Education        63206
## 12205                           Education        63306
## 12208                           Education       103006
## 12209                           Education        24106
## 12210                           Education        24206
## 12211                           Education        23806
## 12212                           Education        23906
## 12213                           Education        24006
## 12218        Environmental sustainability       174406
## 12219        Environmental sustainability        27706
## 12220        Environmental sustainability       100806
## 12228                              Gender        36806
## 12239                              Gender        89006
## 12250                              Health        58006
## 12253                              Health        69206
## 12254                              Health       120606
## 12255                              Health       121106
## 12256                              Health       103206
## 12258                              Health        57806
## 12259                              Health        57206
## 12260                              Health        57906
## 12261                              Health        57506
## 12270     Income/composition of resources       127606
## 12271     Income/composition of resources       136706
## 12272     Income/composition of resources       143306
## 12273     Income/composition of resources        65606
## 12274     Income/composition of resources       141706
## 12275     Income/composition of resources       103606
## 12292          Mobility and communication       110806
## 12307       Socio-economic sustainability       164406
## 12309       Socio-economic sustainability       178306
## 12316       Socio-economic sustainability       181706
## 12318           Trade and financial flows       133206
## 12319           Trade and financial flows        53506
## 12320           Trade and financial flows        99106
## 12321           Trade and financial flows       111306
## 12322           Trade and financial flows        52606
## 12326  Work, employment and vulnerability       148206
## 12327  Work, employment and vulnerability        48706
## 12328  Work, employment and vulnerability        48806
## 12335                   Composite indices       137506
## 12336                          Demography        47906
## 12337                          Demography       122006
## 12338                          Demography        63106
## 12339                          Demography       132706
## 12340                          Demography       132806
## 12341                          Demography        49006
## 12342                          Demography        44206
## 12343                          Demography        45106
## 12344                          Demography       121206
## 12345                           Education       103706
## 12346                           Education        69706
## 12347                           Education       123306
## 12348                           Education       123406
## 12351                           Education        63206
## 12352                           Education        63306
## 12353                           Education        63406
## 12355                           Education       103006
## 12356                           Education        24106
## 12357                           Education        24206
## 12358                           Education        23806
## 12359                           Education        23906
## 12360                           Education        24006
## 12364                           Education        46206
## 12366        Environmental sustainability       174406
## 12367        Environmental sustainability        27706
## 12368        Environmental sustainability       100806
## 12370        Environmental sustainability       174306
## 12375        Environmental sustainability       163906
## 12376                              Gender        36806
## 12387                              Gender        89006
## 12398                              Health        58006
## 12399                              Health        64406
## 12400                              Health        64306
## 12401                              Health        69206
## 12402                              Health       120606
## 12403                              Health       121106
## 12404                              Health       103206
## 12406                              Health        57806
## 12407                              Health        57206
## 12408                              Health        57906
## 12409                              Health        57506
## 12418     Income/composition of resources       127606
## 12419     Income/composition of resources       136706
## 12420     Income/composition of resources       143306
## 12421     Income/composition of resources        65606
## 12422     Income/composition of resources       141706
## 12423     Income/composition of resources       103606
## 12440          Mobility and communication       110806
## 12455       Socio-economic sustainability       164406
## 12457       Socio-economic sustainability       178306
## 12466       Socio-economic sustainability       174206
## 12467           Trade and financial flows       133206
## 12468           Trade and financial flows        53506
## 12469           Trade and financial flows        99106
## 12470           Trade and financial flows       111306
## 12476  Work, employment and vulnerability       148206
## 12477  Work, employment and vulnerability        48706
## 12478  Work, employment and vulnerability        48806
## 12485                   Composite indices       137506
## 12486                          Demography        47906
## 12487                          Demography       122006
## 12488                          Demography        63106
## 12489                          Demography       132706
## 12490                          Demography       132806
## 12491                          Demography        49006
## 12492                          Demography        44206
## 12493                          Demography        45106
## 12494                          Demography       121206
## 12495                           Education       103706
## 12496                           Education        69706
## 12497                           Education       123306
## 12498                           Education       123406
## 12499                           Education       149206
## 12500                           Education       133006
## 12501                           Education        63206
## 12502                           Education        63306
## 12503                           Education        63406
## 12504                           Education       103006
## 12505                           Education        24106
## 12506                           Education        24206
## 12507                           Education        23806
## 12508                           Education        23906
## 12509                           Education        24006
## 12514                           Education        46206
## 12515                           Education       177706
## 12516        Environmental sustainability       174406
## 12517        Environmental sustainability        27706
## 12518        Environmental sustainability       100806
## 12520        Environmental sustainability       174306
## 12525        Environmental sustainability       163906
## 12526                              Gender        36806
## 12537                              Gender        89006
## 12546                              Health        58006
## 12547                              Health        64406
## 12548                              Health        64306
## 12549                              Health        69206
## 12550                              Health       120606
## 12551                              Health       121106
## 12552                              Health       103206
## 12553                              Health        57806
## 12554                              Health        57206
## 12555                              Health        57906
## 12556                              Health        57506
## 12566     Income/composition of resources       136706
## 12567     Income/composition of resources       143306
## 12568     Income/composition of resources        65606
## 12569     Income/composition of resources       141706
## 12570     Income/composition of resources       103606
## 12588          Mobility and communication       110806
## 12589       Socio-economic sustainability       164406
## 12591       Socio-economic sustainability       178306
## 12598       Socio-economic sustainability       181706
## 12600           Trade and financial flows       133206
## 12601           Trade and financial flows        53506
## 12602           Trade and financial flows       111306
## 12603           Trade and financial flows        52606
## 12607  Work, employment and vulnerability       148206
## 12608  Work, employment and vulnerability        48706
## 12609  Work, employment and vulnerability        48806
## 12616                   Composite indices       137506
## 12617                          Demography        47906
## 12618                          Demography       122006
## 12619                          Demography        63106
## 12620                          Demography       132706
## 12621                          Demography       132806
## 12622                          Demography        49006
## 12623                          Demography        44206
## 12624                          Demography        45106
## 12625                          Demography       121206
## 12626                           Education       103706
## 12627                           Education        69706
## 12628                           Education       123306
## 12629                           Education       123406
## 12632                           Education        63206
## 12633                           Education        63306
## 12634                           Education        63406
## 12635                           Education       103006
## 12636                           Education        24106
## 12637                           Education        24206
## 12638                           Education        23806
## 12639                           Education        23906
## 12640                           Education        24006
## 12644                           Education        46206
## 12645        Environmental sustainability       174406
## 12646        Environmental sustainability        27706
## 12647        Environmental sustainability       100806
## 12649        Environmental sustainability       174306
## 12654        Environmental sustainability       163906
## 12655                              Gender        36806
## 12665                              Gender        89006
## 12673                              Health        64406
## 12674                              Health        64306
## 12675                              Health        69206
## 12676                              Health       120606
## 12677                              Health       121106
## 12678                              Health       103206
## 12679                              Health        57806
## 12680                              Health        57206
## 12681                              Health        57906
## 12682                              Health        57506
## 12691     Income/composition of resources       127606
## 12692     Income/composition of resources       136706
## 12693     Income/composition of resources       143306
## 12694     Income/composition of resources        65606
## 12695     Income/composition of resources       141706
## 12696     Income/composition of resources       103606
## 12710          Mobility and communication       110806
## 12713       Socio-economic sustainability       178306
## 12718       Socio-economic sustainability       181706
## 12720           Trade and financial flows       133206
## 12721           Trade and financial flows        53506
## 12723           Trade and financial flows        52606
## 12727  Work, employment and vulnerability       148206
## 12728  Work, employment and vulnerability        48706
## 12729  Work, employment and vulnerability        48806
## 12737                          Demography        47906
## 12738                          Demography       122006
## 12739                          Demography        63106
## 12740                          Demography       132706
## 12741                          Demography       132806
## 12742                          Demography        49006
## 12743                          Demography        44206
## 12744                          Demography        45106
## 12745                          Demography       121206
## 12747                           Education        69706
## 12751                           Education        63206
## 12752                           Education        63306
## 12760                           Education        46206
## 12761        Environmental sustainability       174406
## 12762        Environmental sustainability        27706
## 12763        Environmental sustainability       100806
## 12765        Environmental sustainability       174306
## 12770        Environmental sustainability       163906
## 12771                              Gender        36806
## 12772                              Gender       175206
## 12774                              Gender       175506
## 12781                              Gender        89006
## 12782                              Gender       181206
## 12786                              Gender       175606
## 12793                              Health        58006
## 12794                              Health        64406
## 12795                              Health        64306
## 12796                              Health        69206
## 12797                              Health       120606
## 12798                              Health       121106
## 12799                              Health       103206
## 12801                              Health        57806
## 12802                              Health        57206
## 12803                              Health        57906
## 12804                              Health        57506
## 12813     Income/composition of resources       127606
## 12814     Income/composition of resources       136706
## 12815     Income/composition of resources       143306
## 12816     Income/composition of resources        65606
## 12817     Income/composition of resources       141706
## 12818     Income/composition of resources       103606
## 12834          Mobility and communication       110806
## 12849       Socio-economic sustainability       164406
## 12851       Socio-economic sustainability       178306
## 12857       Socio-economic sustainability       181706
## 12858       Socio-economic sustainability       174206
## 12859           Trade and financial flows       133206
## 12860           Trade and financial flows        53506
## 12861           Trade and financial flows        99106
## 12862           Trade and financial flows       111306
## 12863           Trade and financial flows        52606
## 12868  Work, employment and vulnerability       148206
## 12869  Work, employment and vulnerability        48706
## 12870  Work, employment and vulnerability        48806
## 12877                   Composite indices       137506
## 12878                          Demography        47906
## 12879                          Demography       122006
## 12880                          Demography        63106
## 12881                          Demography       132706
## 12882                          Demography       132806
## 12883                          Demography        49006
## 12884                          Demography        44206
## 12885                          Demography        45106
## 12886                          Demography       121206
## 12887                           Education       103706
## 12888                           Education        69706
## 12889                           Education       123306
## 12890                           Education       123406
## 12891                           Education       149206
## 12892                           Education       133006
## 12893                           Education        63206
## 12894                           Education        63306
## 12895                           Education        63406
## 12896                           Education       103006
## 12897                           Education        24106
## 12898                           Education        24206
## 12899                           Education        23806
## 12900                           Education        23906
## 12901                           Education        24006
## 12902                           Education        46106
## 12909        Environmental sustainability       174406
## 12910        Environmental sustainability        27706
## 12911        Environmental sustainability       100806
## 12913        Environmental sustainability       174306
## 12918        Environmental sustainability       163906
## 12919                              Gender        36806
## 12929                              Gender        89006
## 12930                              Gender       181206
## 12938                              Health        64406
## 12939                              Health        64306
## 12940                              Health        69206
## 12941                              Health       120606
## 12942                              Health       121106
## 12943                              Health       103206
## 12944                              Health        57806
## 12945                              Health        57206
## 12946                              Health        57906
## 12947                              Health        57506
## 12956     Income/composition of resources       127606
## 12957     Income/composition of resources       136706
## 12958     Income/composition of resources       143306
## 12959     Income/composition of resources        65606
## 12960     Income/composition of resources       141706
## 12961     Income/composition of resources       103606
## 12979          Mobility and communication       110806
## 12980       Socio-economic sustainability       164406
## 12982       Socio-economic sustainability       178306
## 12989       Socio-economic sustainability       181706
## 12991           Trade and financial flows       133206
## 12992           Trade and financial flows        53506
## 12993           Trade and financial flows       111306
## 12994           Trade and financial flows        52606
## 12998  Work, employment and vulnerability       148206
## 12999  Work, employment and vulnerability        48706
## 13000  Work, employment and vulnerability        48806
## 13007                   Composite indices       137506
## 13008                          Demography        47906
## 13009                          Demography       122006
## 13010                          Demography        63106
## 13011                          Demography       132706
## 13012                          Demography       132806
## 13013                          Demography        49006
## 13014                          Demography        44206
## 13015                          Demography        45106
## 13016                          Demography       121206
## 13017                           Education       103706
## 13018                           Education        69706
## 13019                           Education       123306
## 13020                           Education       123406
## 13021                           Education       149206
## 13023                           Education        63206
## 13024                           Education        63306
## 13025                           Education        63406
## 13027                           Education       103006
## 13028                           Education        24106
## 13029                           Education        24206
## 13030                           Education        23806
## 13031                           Education        23906
## 13032                           Education        24006
## 13035                           Education        46206
## 13037        Environmental sustainability       174406
## 13038        Environmental sustainability        27706
## 13039        Environmental sustainability       100806
## 13041        Environmental sustainability       174306
## 13046        Environmental sustainability       163906
## 13047                              Gender        36806
## 13059                              Gender        89006
## 13069                              Health        58006
## 13070                              Health        64406
## 13071                              Health        64306
## 13072                              Health        69206
## 13073                              Health       120606
## 13074                              Health       121106
## 13075                              Health       103206
## 13077                              Health        57806
## 13078                              Health        57206
## 13079                              Health        57906
## 13080                              Health        57506
## 13089     Income/composition of resources       127606
## 13090     Income/composition of resources       136706
## 13091     Income/composition of resources       143306
## 13092     Income/composition of resources        65606
## 13093     Income/composition of resources       141706
## 13094     Income/composition of resources       103606
## 13112          Mobility and communication       110806
## 13127       Socio-economic sustainability       164406
## 13129       Socio-economic sustainability       178306
## 13136       Socio-economic sustainability       181706
## 13138       Socio-economic sustainability       174206
## 13139           Trade and financial flows       133206
## 13140           Trade and financial flows        53506
## 13141           Trade and financial flows        99106
## 13142           Trade and financial flows       111306
## 13143           Trade and financial flows        52606
## 13147  Work, employment and vulnerability       148206
## 13148  Work, employment and vulnerability        48706
## 13149  Work, employment and vulnerability        48806
## 13156                   Composite indices       137506
## 13157                          Demography        47906
## 13158                          Demography       122006
## 13159                          Demography        63106
## 13160                          Demography       132706
## 13161                          Demography       132806
## 13162                          Demography        49006
## 13163                          Demography        44206
## 13164                          Demography        45106
## 13165                          Demography       121206
## 13166                           Education       103706
## 13167                           Education        69706
## 13171                           Education       133006
## 13172                           Education        63206
## 13173                           Education        63306
## 13174                           Education        63406
## 13175                           Education       101406
## 13176                           Education       103006
## 13177                           Education        24106
## 13179                           Education        23806
## 13180                           Education        23906
## 13181                           Education        24006
## 13185                           Education        46206
## 13187        Environmental sustainability       174406
## 13188        Environmental sustainability        27706
## 13189        Environmental sustainability       100806
## 13191        Environmental sustainability       174306
## 13196        Environmental sustainability       163906
## 13197                              Gender        36806
## 13210                              Gender        89006
## 13211                              Gender       181206
## 13220                              Health        58006
## 13221                              Health        64406
## 13222                              Health        64306
## 13223                              Health        69206
## 13224                              Health       120606
## 13225                              Health       121106
## 13226                              Health       103206
## 13228                              Health        57806
## 13229                              Health        57206
## 13230                              Health        57906
## 13231                              Health        57506
## 13240     Income/composition of resources       127606
## 13241     Income/composition of resources       136706
## 13242     Income/composition of resources       143306
## 13243     Income/composition of resources        65606
## 13244     Income/composition of resources       141706
## 13245     Income/composition of resources       103606
## 13262          Mobility and communication       110806
## 13264       Socio-economic sustainability       164406
## 13266       Socio-economic sustainability       178306
## 13272       Socio-economic sustainability       181706
## 13274       Socio-economic sustainability       174206
## 13275           Trade and financial flows       133206
## 13276           Trade and financial flows        53506
## 13277           Trade and financial flows        99106
## 13278           Trade and financial flows       111306
## 13279           Trade and financial flows        52606
## 13284  Work, employment and vulnerability       148206
## 13285  Work, employment and vulnerability        48706
## 13286  Work, employment and vulnerability        48806
## 13293                   Composite indices       137506
## 13294                          Demography        47906
## 13295                          Demography       122006
## 13296                          Demography        63106
## 13297                          Demography       132706
## 13298                          Demography       132806
## 13299                          Demography        49006
## 13300                          Demography        44206
## 13301                          Demography        45106
## 13302                          Demography       121206
## 13303                           Education       103706
## 13304                           Education        69706
## 13305                           Education       123306
## 13306                           Education       123406
## 13307                           Education       133006
## 13308                           Education        63206
## 13309                           Education        63306
## 13312                           Education       103006
## 13313                           Education        24106
## 13314                           Education        24206
## 13315                           Education        23806
## 13316                           Education        23906
## 13317                           Education        24006
## 13318                           Education        46106
## 13320                           Education        46206
## 13321        Environmental sustainability       174406
## 13322        Environmental sustainability        27706
## 13323        Environmental sustainability       100806
## 13329        Environmental sustainability       163906
## 13330                              Gender        36806
## 13341                              Gender        89006
## 13342                              Gender       181206
## 13350                              Health        58006
## 13351                              Health        64406
## 13352                              Health        64306
## 13353                              Health        69206
## 13354                              Health       120606
## 13355                              Health       121106
## 13356                              Health       103206
## 13358                              Health        57806
## 13359                              Health        57206
## 13360                              Health        57906
## 13361                              Health        57506
## 13369     Income/composition of resources       127606
## 13370     Income/composition of resources       136706
## 13371     Income/composition of resources       143306
## 13372     Income/composition of resources        65606
## 13373     Income/composition of resources       141706
## 13374     Income/composition of resources       103606
## 13386          Mobility and communication       110806
## 13388       Socio-economic sustainability       164406
## 13390       Socio-economic sustainability       178306
## 13395       Socio-economic sustainability       174206
## 13396           Trade and financial flows       133206
## 13397           Trade and financial flows        53506
## 13398           Trade and financial flows        99106
## 13399           Trade and financial flows       111306
## 13400           Trade and financial flows        52606
## 13404  Work, employment and vulnerability       148206
## 13405  Work, employment and vulnerability        48706
## 13406  Work, employment and vulnerability        48806
## 13413                   Composite indices       137506
## 13414                          Demography        47906
## 13415                          Demography       122006
## 13416                          Demography        63106
## 13417                          Demography       132706
## 13418                          Demography       132806
## 13419                          Demography        49006
## 13420                          Demography        44206
## 13421                          Demography        45106
## 13422                          Demography       121206
## 13423                           Education       103706
## 13424                           Education        69706
## 13428                           Education       133006
## 13429                           Education        63206
## 13430                           Education        63306
## 13431                           Education        63406
## 13432                           Education       101406
## 13433                           Education       103006
## 13434                           Education        24106
## 13435                           Education        24206
## 13436                           Education        23806
## 13437                           Education        23906
## 13438                           Education        24006
## 13442                           Education        46206
## 13444        Environmental sustainability       174406
## 13445        Environmental sustainability        27706
## 13446        Environmental sustainability       100806
## 13448        Environmental sustainability       174306
## 13453        Environmental sustainability       163906
## 13454                              Gender        36806
## 13467                              Gender        89006
## 13478                              Health        58006
## 13479                              Health        64406
## 13480                              Health        64306
## 13481                              Health        69206
## 13482                              Health       120606
## 13483                              Health       121106
## 13484                              Health       103206
## 13486                              Health        57806
## 13487                              Health        57206
## 13488                              Health        57906
## 13489                              Health        57506
## 13498     Income/composition of resources       127606
## 13499     Income/composition of resources       136706
## 13500     Income/composition of resources       143306
## 13501     Income/composition of resources        65606
## 13502     Income/composition of resources       141706
## 13503     Income/composition of resources       103606
## 13520          Mobility and communication       110806
## 13535       Socio-economic sustainability       164406
## 13537       Socio-economic sustainability       178306
## 13544       Socio-economic sustainability       181706
## 13546       Socio-economic sustainability       174206
## 13547           Trade and financial flows       133206
## 13548           Trade and financial flows        53506
## 13549           Trade and financial flows        99106
## 13550           Trade and financial flows       111306
## 13551           Trade and financial flows        52606
## 13555  Work, employment and vulnerability       148206
## 13556  Work, employment and vulnerability        48706
## 13557  Work, employment and vulnerability        48806
## 13565                   Composite indices       137506
## 13566                          Demography        47906
## 13567                          Demography       122006
## 13568                          Demography        63106
## 13569                          Demography       132706
## 13570                          Demography       132806
## 13571                          Demography        49006
## 13572                          Demography        44206
## 13573                          Demography        45106
## 13574                          Demography       121206
## 13575                           Education       103706
## 13576                           Education        69706
## 13577                           Education       123306
## 13578                           Education       123406
## 13580                           Education       133006
## 13581                           Education        63206
## 13582                           Education        63306
## 13583                           Education        63406
## 13585                           Education       103006
## 13586                           Education        24106
## 13587                           Education        24206
## 13588                           Education        23806
## 13589                           Education        23906
## 13590                           Education        24006
## 13597        Environmental sustainability       174406
## 13598        Environmental sustainability        27706
## 13599        Environmental sustainability       100806
## 13601        Environmental sustainability       174306
## 13602        Environmental sustainability        97106
## 13606        Environmental sustainability       163906
## 13607                              Gender        36806
## 13619                              Gender        89006
## 13620                              Gender       181206
## 13629                              Health        58006
## 13630                              Health        64406
## 13631                              Health        64306
## 13632                              Health        69206
## 13633                              Health       120606
## 13634                              Health       121106
## 13635                              Health       103206
## 13636                              Health        57806
## 13637                              Health        57206
## 13638                              Health        57906
## 13639                              Health        57506
## 13647     Income/composition of resources       127606
## 13648     Income/composition of resources       136706
## 13649     Income/composition of resources       143306
## 13650     Income/composition of resources        65606
## 13651     Income/composition of resources       141706
## 13652     Income/composition of resources       103606
## 13670          Mobility and communication       110806
## 13671       Socio-economic sustainability       164406
## 13673       Socio-economic sustainability       178306
## 13680       Socio-economic sustainability       181706
## 13682       Socio-economic sustainability       174206
## 13683           Trade and financial flows       133206
## 13684           Trade and financial flows        53506
## 13685           Trade and financial flows       111306
## 13690  Work, employment and vulnerability       148206
## 13691  Work, employment and vulnerability        48706
## 13692  Work, employment and vulnerability        48806
## 13699                   Composite indices       137506
## 13700                          Demography        47906
## 13701                          Demography       122006
## 13702                          Demography        63106
## 13703                          Demography       132706
## 13704                          Demography       132806
## 13705                          Demography        49006
## 13706                          Demography        44206
## 13707                          Demography        45106
## 13708                          Demography       121206
## 13709                           Education       103706
## 13710                           Education        69706
## 13714                           Education       133006
## 13715                           Education        63206
## 13716                           Education        63306
## 13717                           Education        63406
## 13719                           Education       103006
## 13720                           Education        24106
## 13721                           Education        24206
## 13722                           Education        23806
## 13723                           Education        23906
## 13724                           Education        24006
## 13730                           Education        46206
## 13734        Environmental sustainability       100806
## 13736        Environmental sustainability       174306
## 13741        Environmental sustainability       163906
## 13742                              Gender        36806
## 13752                              Gender        89006
## 13753                              Gender       181206
## 13763                              Health        69206
## 13764                              Health       120606
## 13765                              Health       121106
## 13766                              Health       103206
## 13767                              Health        57806
## 13768                              Health        57206
## 13769                              Health        57906
## 13770                              Health        57506
## 13780     Income/composition of resources       136706
## 13781     Income/composition of resources       143306
## 13782     Income/composition of resources        65606
## 13783     Income/composition of resources       141706
## 13784     Income/composition of resources       103606
## 13802          Mobility and communication       110806
## 13806       Socio-economic sustainability       178306
## 13813       Socio-economic sustainability       181706
## 13816           Trade and financial flows       133206
## 13823  Work, employment and vulnerability       148206
## 13824  Work, employment and vulnerability        48706
## 13825  Work, employment and vulnerability        48806
## 13833                          Demography        44206
## 13834                          Demography        45106
## 13836                           Education        69706
## 13837                           Education       123306
## 13838                           Education       123406
## 13844                           Education        46206
## 13846        Environmental sustainability       174406
## 13847        Environmental sustainability        27706
## 13848        Environmental sustainability       100806
## 13850        Environmental sustainability       174306
## 13853        Environmental sustainability       163906
## 13854                              Gender       175206
## 13859                              Health        64406
## 13860                              Health        64306
## 13861                              Health        69206
## 13862                              Health       103206
## 13863                              Health        57806
## 13864                              Health        57206
## 13865                              Health        57906
## 13866                              Health        57506
## 13872     Income/composition of resources       127606
## 13873     Income/composition of resources       136706
## 13874     Income/composition of resources       143306
## 13875     Income/composition of resources       141706
## 13876     Income/composition of resources       103606
## 13884       Socio-economic sustainability       181706
## 13885           Trade and financial flows       133206
## 13886           Trade and financial flows        53506
## 13887           Trade and financial flows        99106
## 13888           Trade and financial flows       111306
## 13889           Trade and financial flows        52606
## 13893                          Demography        47906
## 13894                          Demography       122006
## 13895                          Demography        63106
## 13896                          Demography       132706
## 13897                          Demography       132806
## 13898                          Demography        49006
## 13899                          Demography        44206
## 13900                          Demography        45106
## 13901                          Demography       121206
## 13903                           Education        69706
## 13904                           Education       123306
## 13905                           Education       123406
## 13907                           Education       133006
## 13908                           Education        63206
## 13909                           Education        63306
## 13920                           Education        46206
## 13922        Environmental sustainability       174406
## 13923        Environmental sustainability        27706
## 13924        Environmental sustainability       100806
## 13926        Environmental sustainability       174306
## 13931        Environmental sustainability       163906
## 13932                              Gender        36806
## 13933                              Gender       175206
## 13943                              Gender        89006
## 13952                              Health        64406
## 13953                              Health        64306
## 13954                              Health        69206
## 13955                              Health       120606
## 13956                              Health       121106
## 13957                              Health       103206
## 13958                              Health        57806
## 13959                              Health        57206
## 13960                              Health        57906
## 13961                              Health        57506
## 13970     Income/composition of resources       127606
## 13971     Income/composition of resources       136706
## 13972     Income/composition of resources       143306
## 13973     Income/composition of resources       141706
## 13974     Income/composition of resources       103606
## 13988          Mobility and communication       110806
## 14000       Socio-economic sustainability       164406
## 14004       Socio-economic sustainability       181706
## 14005       Socio-economic sustainability       174206
## 14006           Trade and financial flows        53506
## 14007           Trade and financial flows        99106
## 14008           Trade and financial flows       111306
## 14009           Trade and financial flows        52606
## 14014  Work, employment and vulnerability       148206
## 14015  Work, employment and vulnerability        48706
## 14016  Work, employment and vulnerability        48806
## 14023                          Demography        47906
## 14024                          Demography       122006
## 14025                          Demography        63106
## 14026                          Demography       132706
## 14027                          Demography       132806
## 14028                          Demography        49006
## 14029                          Demography        44206
## 14030                          Demography        45106
## 14031                          Demography       121206
## 14033                           Education        69706
## 14040                           Education        63406
## 14047        Environmental sustainability       174406
## 14048        Environmental sustainability        27706
## 14049        Environmental sustainability       100806
## 14051        Environmental sustainability       174306
## 14056        Environmental sustainability       163906
## 14057                              Gender        36806
## 14062                              Gender        89006
## 14069                              Health        64406
## 14070                              Health        64306
## 14071                              Health        69206
## 14072                              Health       120606
## 14073                              Health       121106
## 14074                              Health       103206
## 14075                              Health        57806
## 14076                              Health        57206
## 14077                              Health        57906
## 14078                              Health        57506
## 14086     Income/composition of resources       127606
## 14087     Income/composition of resources       136706
## 14088     Income/composition of resources       143306
## 14089     Income/composition of resources       141706
## 14090     Income/composition of resources       103606
## 14096          Mobility and communication       110806
## 14100       Socio-economic sustainability       181706
## 14101       Socio-economic sustainability       174206
## 14102           Trade and financial flows       133206
## 14103           Trade and financial flows        53506
## 14104           Trade and financial flows        99106
## 14105           Trade and financial flows       111306
## 14106           Trade and financial flows        52606
## 14110  Work, employment and vulnerability       148206
## 14111  Work, employment and vulnerability        48706
## 14112  Work, employment and vulnerability        48806
## 14118                   Composite indices       137506
## 14119                          Demography        47906
## 14120                          Demography       122006
## 14121                          Demography        63106
## 14122                          Demography       132706
## 14123                          Demography       132806
## 14124                          Demography        49006
## 14125                          Demography        44206
## 14126                          Demography        45106
## 14127                          Demography       121206
## 14128                           Education       103706
## 14129                           Education        69706
## 14136                           Education        63406
## 14138                           Education       103006
## 14139                           Education        24106
## 14140                           Education        24206
## 14141                           Education        23806
## 14142                           Education        23906
## 14143                           Education        24006
## 14148        Environmental sustainability       174406
## 14149        Environmental sustainability        27706
## 14150        Environmental sustainability       100806
## 14152        Environmental sustainability       174306
## 14157        Environmental sustainability       163906
## 14158                              Gender        36806
## 14169                              Gender        89006
## 14170                              Gender       181206
## 14177                              Health        58006
## 14178                              Health        64406
## 14179                              Health        64306
## 14180                              Health        69206
## 14181                              Health       120606
## 14182                              Health       121106
## 14183                              Health       103206
## 14185                              Health        57806
## 14186                              Health        57206
## 14187                              Health        57906
## 14188                              Health        57506
## 14196     Income/composition of resources       127606
## 14197     Income/composition of resources       136706
## 14198     Income/composition of resources       143306
## 14199     Income/composition of resources        65606
## 14200     Income/composition of resources       141706
## 14201     Income/composition of resources       103606
## 14211          Mobility and communication       110806
## 14213       Socio-economic sustainability       164406
## 14215       Socio-economic sustainability       178306
## 14222           Trade and financial flows       133206
## 14223           Trade and financial flows        53506
## 14224           Trade and financial flows        99106
## 14225           Trade and financial flows       111306
## 14230  Work, employment and vulnerability       148206
## 14231  Work, employment and vulnerability        48706
## 14232  Work, employment and vulnerability        48806
## 14238                   Composite indices       137506
## 14239                          Demography        47906
## 14240                          Demography       122006
## 14241                          Demography        63106
## 14242                          Demography       132706
## 14243                          Demography       132806
## 14244                          Demography        49006
## 14245                          Demography        44206
## 14246                          Demography        45106
## 14247                          Demography       121206
## 14248                           Education       103706
## 14249                           Education        69706
## 14250                           Education       123306
## 14251                           Education       123406
## 14253                           Education       133006
## 14254                           Education        63206
## 14255                           Education        63306
## 14258                           Education       103006
## 14259                           Education        24106
## 14260                           Education        24206
## 14261                           Education        23806
## 14262                           Education        23906
## 14263                           Education        24006
## 14267                           Education        46206
## 14269        Environmental sustainability       174406
## 14270        Environmental sustainability        27706
## 14271        Environmental sustainability       100806
## 14273        Environmental sustainability       174306
## 14277        Environmental sustainability       163906
## 14278                              Gender        36806
## 14289                              Gender        89006
## 14299                              Health        58006
## 14300                              Health        64406
## 14301                              Health        64306
## 14302                              Health        69206
## 14303                              Health       120606
## 14304                              Health       121106
## 14305                              Health       103206
## 14307                              Health        57806
## 14308                              Health        57206
## 14309                              Health        57906
## 14310                              Health        57506
## 14319     Income/composition of resources       127606
## 14320     Income/composition of resources       136706
## 14321     Income/composition of resources       143306
## 14322     Income/composition of resources        65606
## 14323     Income/composition of resources       141706
## 14324     Income/composition of resources       103606
## 14341          Mobility and communication       110806
## 14356       Socio-economic sustainability       164406
## 14358       Socio-economic sustainability       178306
## 14365       Socio-economic sustainability       181706
## 14367       Socio-economic sustainability       174206
## 14368           Trade and financial flows       133206
## 14369           Trade and financial flows        53506
## 14370           Trade and financial flows        99106
## 14371           Trade and financial flows       111306
## 14372           Trade and financial flows        52606
## 14377  Work, employment and vulnerability       148206
## 14378  Work, employment and vulnerability        48706
## 14379  Work, employment and vulnerability        48806
## 14387                          Demography        47906
## 14388                          Demography       122006
## 14389                          Demography        63106
## 14390                          Demography       132706
## 14391                          Demography       132806
## 14392                          Demography        49006
## 14393                          Demography        44206
## 14394                          Demography        45106
## 14395                          Demography       121206
## 14397                           Education        69706
## 14398                           Education       123306
## 14399                           Education       123406
## 14401                           Education       133006
## 14411        Environmental sustainability       174406
## 14412        Environmental sustainability        27706
## 14413        Environmental sustainability       100806
## 14415        Environmental sustainability       174306
## 14419        Environmental sustainability       163906
## 14420                              Gender        36806
## 14424                              Gender       181206
## 14428                              Health        64406
## 14429                              Health        64306
## 14430                              Health        69206
## 14431                              Health       120606
## 14432                              Health       121106
## 14433                              Health       103206
## 14434                              Health        57806
## 14435                              Health        57206
## 14436                              Health        57906
## 14437                              Health        57506
## 14445     Income/composition of resources       127606
## 14446     Income/composition of resources       136706
## 14447     Income/composition of resources       143306
## 14448     Income/composition of resources        65606
## 14449     Income/composition of resources       141706
## 14450     Income/composition of resources       103606
## 14462          Mobility and communication       110806
## 14464       Socio-economic sustainability       178306
## 14469       Socio-economic sustainability       181706
## 14471       Socio-economic sustainability       174206
## 14472           Trade and financial flows       133206
## 14473           Trade and financial flows        53506
## 14474           Trade and financial flows        99106
## 14475           Trade and financial flows       111306
## 14476           Trade and financial flows        52606
## 14479                   Composite indices       137506
## 14480                          Demography        47906
## 14481                          Demography       122006
## 14482                          Demography        63106
## 14483                          Demography       132706
## 14484                          Demography       132806
## 14485                          Demography        49006
## 14486                          Demography        44206
## 14487                          Demography        45106
## 14488                          Demography       121206
## 14489                           Education       103706
## 14490                           Education        69706
## 14495                           Education        63206
## 14496                           Education        63306
## 14497                           Education        63406
## 14499                           Education       103006
## 14500                           Education        24106
## 14501                           Education        24206
## 14502                           Education        23806
## 14503                           Education        23906
## 14504                           Education        24006
## 14507                           Education        46206
## 14509        Environmental sustainability       174406
## 14510        Environmental sustainability        27706
## 14511        Environmental sustainability       100806
## 14517        Environmental sustainability       163906
## 14518                              Gender        36806
## 14529                              Gender        89006
## 14540                              Health        58006
## 14543                              Health        69206
## 14544                              Health       120606
## 14545                              Health       121106
## 14546                              Health       103206
## 14548                              Health        57806
## 14549                              Health        57206
## 14550                              Health        57906
## 14551                              Health        57506
## 14560     Income/composition of resources       127606
## 14561     Income/composition of resources       136706
## 14562     Income/composition of resources       143306
## 14563     Income/composition of resources        65606
## 14564     Income/composition of resources       141706
## 14565     Income/composition of resources       103606
## 14581          Mobility and communication       110806
## 14596       Socio-economic sustainability       164406
## 14598       Socio-economic sustainability       178306
## 14604       Socio-economic sustainability       181706
## 14606       Socio-economic sustainability       174206
## 14607           Trade and financial flows       133206
## 14608           Trade and financial flows        53506
## 14609           Trade and financial flows        99106
## 14610           Trade and financial flows       111306
## 14611           Trade and financial flows        52606
## 14616  Work, employment and vulnerability       148206
## 14617  Work, employment and vulnerability        48706
## 14618  Work, employment and vulnerability        48806
## 14625                   Composite indices       137506
## 14626                          Demography        47906
## 14627                          Demography       122006
## 14628                          Demography        63106
## 14629                          Demography       132706
## 14630                          Demography       132806
## 14631                          Demography        49006
## 14632                          Demography        44206
## 14633                          Demography        45106
## 14634                          Demography       121206
## 14635                           Education       103706
## 14636                           Education        69706
## 14642                           Education       101406
## 14643                           Education       103006
## 14644                           Education        24106
## 14645                           Education        24206
## 14646                           Education        23806
## 14647                           Education        23906
## 14648                           Education        24006
## 14654                           Education        46206
## 14656        Environmental sustainability       174406
## 14657        Environmental sustainability        27706
## 14658        Environmental sustainability       100806
## 14660        Environmental sustainability       174306
## 14664        Environmental sustainability       163906
## 14665                              Gender        36806
## 14673                              Gender        89006
## 14682                              Health        64406
## 14683                              Health        64306
## 14684                              Health        69206
## 14685                              Health       120606
## 14686                              Health       121106
## 14687                              Health       103206
## 14688                              Health        57806
## 14689                              Health        57206
## 14690                              Health        57906
## 14691                              Health        57506
## 14699     Income/composition of resources       127606
## 14700     Income/composition of resources       136706
## 14701     Income/composition of resources       143306
## 14702     Income/composition of resources        65606
## 14703     Income/composition of resources       141706
## 14704     Income/composition of resources       103606
## 14719          Mobility and communication       110806
## 14721       Socio-economic sustainability       164406
## 14723       Socio-economic sustainability       178306
## 14729           Trade and financial flows       133206
## 14730           Trade and financial flows        53506
## 14731           Trade and financial flows        99106
## 14732           Trade and financial flows       111306
## 14736  Work, employment and vulnerability       148206
## 14737  Work, employment and vulnerability        48706
## 14738  Work, employment and vulnerability        48806
## 14746                          Demography        47906
## 14747                          Demography       122006
## 14748                          Demography        63106
## 14749                          Demography       132706
## 14750                          Demography       132806
## 14751                          Demography        49006
## 14752                          Demography        44206
## 14753                          Demography        45106
## 14754                          Demography       121206
## 14756                           Education        69706
## 14757                           Education       123306
## 14758                           Education       123406
## 14760                           Education       133006
## 14761                           Education        63206
## 14762                           Education        63306
## 14764                           Education        46106
## 14766                           Education        46206
## 14768        Environmental sustainability       174406
## 14769        Environmental sustainability        27706
## 14770        Environmental sustainability       100806
## 14772        Environmental sustainability       174306
## 14776        Environmental sustainability       163906
## 14777                              Gender        36806
## 14784                              Gender        89006
## 14785                              Gender       181206
## 14795                              Health        64406
## 14796                              Health        64306
## 14797                              Health        69206
## 14798                              Health       120606
## 14799                              Health       121106
## 14800                              Health       103206
## 14802                              Health        57806
## 14803                              Health        57206
## 14804                              Health        57906
## 14805                              Health        57506
## 14814     Income/composition of resources       127606
## 14815     Income/composition of resources       136706
## 14816     Income/composition of resources       143306
## 14818     Income/composition of resources       141706
## 14819     Income/composition of resources       103606
## 14835          Mobility and communication       110806
## 14837       Socio-economic sustainability       164406
## 14839       Socio-economic sustainability       178306
## 14844       Socio-economic sustainability       174206
## 14845           Trade and financial flows       133206
## 14846           Trade and financial flows        53506
## 14847           Trade and financial flows        99106
## 14848           Trade and financial flows       111306
## 14854  Work, employment and vulnerability       148206
## 14855  Work, employment and vulnerability        48706
## 14856  Work, employment and vulnerability        48806
## 14861                          Demography        47906
## 14862                          Demography       122006
## 14863                          Demography        63106
## 14864                          Demography       132706
## 14865                          Demography       132806
## 14866                          Demography        49006
## 14867                          Demography        44206
## 14868                          Demography        45106
## 14869                          Demography       121206
## 14875        Environmental sustainability        27706
## 14876        Environmental sustainability       100806
## 14882        Environmental sustainability       163906
## 14883                              Gender        36806
## 14887                              Gender        89006
## 14895                              Health        58006
## 14896                              Health        64406
## 14897                              Health        64306
## 14898                              Health        69206
## 14899                              Health       120606
## 14900                              Health       121106
## 14901                              Health       103206
## 14903                              Health        57806
## 14904                              Health        57206
## 14905                              Health        57906
## 14906                              Health        57506
## 14914     Income/composition of resources        65606
## 14920          Mobility and communication       110806
## 14934       Socio-economic sustainability       178306
## 14937       Socio-economic sustainability       181706
## 14939           Trade and financial flows       133206
## 14945  Work, employment and vulnerability       148206
## 14946  Work, employment and vulnerability        48706
## 14947  Work, employment and vulnerability        48806
## 14952                   Composite indices       137506
## 14953                          Demography        47906
## 14954                          Demography       122006
## 14955                          Demography        63106
## 14956                          Demography       132706
## 14957                          Demography       132806
## 14958                          Demography        49006
## 14959                          Demography        44206
## 14960                          Demography        45106
## 14961                          Demography       121206
## 14962                           Education       103706
## 14963                           Education        69706
## 14964                           Education       123306
## 14965                           Education       123406
## 14966                           Education       149206
## 14968                           Education        63206
## 14969                           Education        63306
## 14970                           Education        63406
## 14972                           Education       103006
## 14973                           Education        24106
## 14974                           Education        24206
## 14975                           Education        23806
## 14976                           Education        23906
## 14977                           Education        24006
## 14978                           Education        46106
## 14981                           Education       177706
## 14982        Environmental sustainability       174406
## 14983        Environmental sustainability        27706
## 14984        Environmental sustainability       100806
## 14986        Environmental sustainability       174306
## 14987        Environmental sustainability        97106
## 14991        Environmental sustainability       163906
## 14992                              Gender        36806
## 15005                              Gender        89006
## 15015                              Health        58006
## 15016                              Health        64406
## 15017                              Health        64306
## 15018                              Health        69206
## 15019                              Health       120606
## 15020                              Health       121106
## 15021                              Health       103206
## 15023                              Health        57806
## 15024                              Health        57206
## 15025                              Health        57906
## 15026                              Health        57506
## 15035     Income/composition of resources       127606
## 15036     Income/composition of resources       136706
## 15037     Income/composition of resources       143306
## 15038     Income/composition of resources        65606
## 15039     Income/composition of resources       141706
## 15040     Income/composition of resources       103606
## 15057          Mobility and communication       110806
## 15072       Socio-economic sustainability       164406
## 15074       Socio-economic sustainability       178306
## 15081       Socio-economic sustainability       181706
## 15084           Trade and financial flows       133206
## 15085           Trade and financial flows        53506
## 15087           Trade and financial flows       111306
## 15088           Trade and financial flows        52606
## 15092  Work, employment and vulnerability       148206
## 15093  Work, employment and vulnerability        48706
## 15094  Work, employment and vulnerability        48806
## 15101                   Composite indices       137506
## 15102                          Demography        47906
## 15103                          Demography       122006
## 15104                          Demography        63106
## 15105                          Demography       132706
## 15106                          Demography       132806
## 15107                          Demography        49006
## 15108                          Demography        44206
## 15109                          Demography        45106
## 15110                          Demography       121206
## 15111                           Education       103706
## 15112                           Education        69706
## 15113                           Education       123306
## 15114                           Education       123406
## 15115                           Education       149206
## 15117                           Education        63206
## 15118                           Education        63306
## 15121                           Education       103006
## 15122                           Education        24106
## 15123                           Education        24206
## 15124                           Education        23806
## 15125                           Education        23906
## 15126                           Education        24006
## 15127                           Education        46106
## 15131                           Education       177706
## 15132        Environmental sustainability       174406
## 15133        Environmental sustainability        27706
## 15134        Environmental sustainability       100806
## 15136        Environmental sustainability       174306
## 15137        Environmental sustainability        97106
## 15141        Environmental sustainability       163906
## 15142                              Gender        36806
## 15154                              Gender        89006
## 15164                              Health        58006
## 15165                              Health        64406
## 15166                              Health        64306
## 15167                              Health        69206
## 15168                              Health       120606
## 15169                              Health       121106
## 15170                              Health       103206
## 15172                              Health        57806
## 15173                              Health        57206
## 15174                              Health        57906
## 15175                              Health        57506
## 15184     Income/composition of resources       127606
## 15185     Income/composition of resources       136706
## 15186     Income/composition of resources       143306
## 15187     Income/composition of resources        65606
## 15188     Income/composition of resources       141706
## 15189     Income/composition of resources       103606
## 15206          Mobility and communication       110806
## 15208       Socio-economic sustainability       164406
## 15210       Socio-economic sustainability       178306
## 15217       Socio-economic sustainability       181706
## 15219       Socio-economic sustainability       174206
## 15220           Trade and financial flows       133206
## 15221           Trade and financial flows        53506
## 15222           Trade and financial flows        99106
## 15223           Trade and financial flows       111306
## 15224           Trade and financial flows        52606
## 15228  Work, employment and vulnerability       148206
## 15229  Work, employment and vulnerability        48706
## 15230  Work, employment and vulnerability        48806
## 15237                   Composite indices       137506
## 15238                          Demography        47906
## 15239                          Demography       122006
## 15240                          Demography        63106
## 15241                          Demography       132706
## 15242                          Demography       132806
## 15243                          Demography        49006
## 15244                          Demography        44206
## 15245                          Demography        45106
## 15246                          Demography       121206
## 15247                           Education       103706
## 15248                           Education        69706
## 15257                           Education       103006
## 15258                           Education        24106
## 15259                           Education        24206
## 15260                           Education        23806
## 15261                           Education        23906
## 15262                           Education        24006
## 15268        Environmental sustainability       174406
## 15269        Environmental sustainability        27706
## 15270        Environmental sustainability       100806
## 15272        Environmental sustainability       174306
## 15277        Environmental sustainability       163906
## 15278                              Gender        36806
## 15281                              Gender       175506
## 15290                              Gender        89006
## 15291                              Gender       181206
## 15295                              Gender       175606
## 15300                              Health        58006
## 15301                              Health        64406
## 15302                              Health        64306
## 15303                              Health        69206
## 15304                              Health       120606
## 15305                              Health       121106
## 15306                              Health       103206
## 15308                              Health        57806
## 15309                              Health        57206
## 15310                              Health        57906
## 15311                              Health        57506
## 15320     Income/composition of resources       127606
## 15321     Income/composition of resources       136706
## 15322     Income/composition of resources       143306
## 15323     Income/composition of resources        65606
## 15324     Income/composition of resources       141706
## 15325     Income/composition of resources       103606
## 15342          Mobility and communication       110806
## 15359       Socio-economic sustainability       178306
## 15364       Socio-economic sustainability       181706
## 15365       Socio-economic sustainability       174206
## 15366           Trade and financial flows       133206
## 15367           Trade and financial flows        53506
## 15368           Trade and financial flows        99106
## 15369           Trade and financial flows       111306
## 15370           Trade and financial flows        52606
## 15375  Work, employment and vulnerability       148206
## 15376  Work, employment and vulnerability        48706
## 15377  Work, employment and vulnerability        48806
## 15384                          Demography        47906
## 15385                          Demography       122006
## 15386                          Demography        63106
## 15387                          Demography       132706
## 15388                          Demography       132806
## 15389                          Demography        49006
## 15390                          Demography        44206
## 15391                          Demography        45106
## 15392                          Demography       121206
## 15394                           Education        69706
## 15395                           Education       123306
## 15396                           Education       123406
## 15397                           Education       133006
## 15398                           Education        63206
## 15399                           Education        63306
## 15400                           Education        63406
## 15411                           Education        46206
## 15413        Environmental sustainability       174406
## 15414        Environmental sustainability        27706
## 15415        Environmental sustainability       100806
## 15423                              Gender        36806
## 15433                              Gender        89006
## 15434                              Gender       181206
## 15442                              Health        58006
## 15443                              Health        64406
## 15444                              Health        64306
## 15445                              Health        69206
## 15446                              Health       120606
## 15447                              Health       121106
## 15448                              Health       103206
## 15450                              Health        57806
## 15451                              Health        57206
## 15452                              Health        57906
## 15453                              Health        57506
## 15462     Income/composition of resources       127606
## 15463     Income/composition of resources       136706
## 15464     Income/composition of resources       143306
## 15465     Income/composition of resources        65606
## 15466     Income/composition of resources       141706
## 15467     Income/composition of resources       103606
## 15480          Mobility and communication       110806
## 15495       Socio-economic sustainability       178306
## 15499       Socio-economic sustainability       181706
## 15501           Trade and financial flows       133206
## 15502           Trade and financial flows        53506
## 15503           Trade and financial flows        99106
## 15505           Trade and financial flows        52606
## 15510  Work, employment and vulnerability       148206
## 15511  Work, employment and vulnerability        48706
## 15512  Work, employment and vulnerability        48806
## 15517                   Composite indices       137506
## 15518                          Demography        47906
## 15519                          Demography       122006
## 15520                          Demography        63106
## 15521                          Demography       132706
## 15522                          Demography       132806
## 15523                          Demography        49006
## 15524                          Demography        44206
## 15525                          Demography        45106
## 15526                          Demography       121206
## 15527                           Education       103706
## 15528                           Education        69706
## 15529                           Education       123306
## 15530                           Education       123406
## 15531                           Education       149206
## 15532                           Education       133006
## 15533                           Education        63206
## 15534                           Education        63306
## 15535                           Education        63406
## 15536                           Education       103006
## 15537                           Education        24106
## 15538                           Education        24206
## 15539                           Education        23806
## 15540                           Education        23906
## 15541                           Education        24006
## 15542                           Education        46106
## 15549        Environmental sustainability       174406
## 15550        Environmental sustainability        27706
## 15551        Environmental sustainability       100806
## 15553        Environmental sustainability       174306
## 15558        Environmental sustainability       163906
## 15559                              Gender        36806
## 15569                              Gender        89006
## 15578                              Health        58006
## 15579                              Health        64406
## 15580                              Health        64306
## 15581                              Health        69206
## 15582                              Health       120606
## 15583                              Health       121106
## 15584                              Health       103206
## 15585                              Health        57806
## 15586                              Health        57206
## 15587                              Health        57906
## 15588                              Health        57506
## 15598     Income/composition of resources       136706
## 15599     Income/composition of resources       143306
## 15600     Income/composition of resources        65606
## 15601     Income/composition of resources       141706
## 15602     Income/composition of resources       103606
## 15620          Mobility and communication       110806
## 15621       Socio-economic sustainability       164406
## 15623       Socio-economic sustainability       178306
## 15630       Socio-economic sustainability       181706
## 15632           Trade and financial flows       133206
## 15633           Trade and financial flows        53506
## 15634           Trade and financial flows       111306
## 15635           Trade and financial flows        52606
## 15639  Work, employment and vulnerability       148206
## 15640  Work, employment and vulnerability        48706
## 15641  Work, employment and vulnerability        48806
## 15648                   Composite indices       137506
## 15649                          Demography        47906
## 15650                          Demography       122006
## 15651                          Demography        63106
## 15652                          Demography       132706
## 15653                          Demography       132806
## 15654                          Demography        49006
## 15655                          Demography        44206
## 15656                          Demography        45106
## 15657                          Demography       121206
## 15658                           Education       103706
## 15659                           Education        69706
## 15660                           Education       123306
## 15661                           Education       123406
## 15662                           Education       149206
## 15663                           Education       133006
## 15664                           Education        63206
## 15665                           Education        63306
## 15666                           Education        63406
## 15667                           Education       103006
## 15668                           Education        24106
## 15669                           Education        24206
## 15670                           Education        23806
## 15671                           Education        23906
## 15672                           Education        24006
## 15679        Environmental sustainability       174406
## 15680        Environmental sustainability        27706
## 15681        Environmental sustainability       100806
## 15683        Environmental sustainability       174306
## 15688        Environmental sustainability       163906
## 15689                              Gender        36806
## 15700                              Gender        89006
## 15707                              Health        64406
## 15708                              Health        64306
## 15709                              Health        69206
## 15710                              Health       120606
## 15711                              Health       121106
## 15712                              Health       103206
## 15713                              Health        57806
## 15714                              Health        57206
## 15715                              Health        57906
## 15716                              Health        57506
## 15725     Income/composition of resources       127606
## 15726     Income/composition of resources       136706
## 15727     Income/composition of resources       143306
## 15728     Income/composition of resources        65606
## 15729     Income/composition of resources       141706
## 15730     Income/composition of resources       103606
## 15748          Mobility and communication       110806
## 15749       Socio-economic sustainability       164406
## 15751       Socio-economic sustainability       178306
## 15757       Socio-economic sustainability       181706
## 15759           Trade and financial flows       133206
## 15760           Trade and financial flows        53506
## 15761           Trade and financial flows       111306
## 15762           Trade and financial flows        52606
## 15766  Work, employment and vulnerability       148206
## 15767  Work, employment and vulnerability        48706
## 15768  Work, employment and vulnerability        48806
## 15776                          Demography        47906
## 15777                          Demography       122006
## 15778                          Demography        63106
## 15779                          Demography       132706
## 15780                          Demography       132806
## 15781                          Demography        49006
## 15782                          Demography        44206
## 15783                          Demography        45106
## 15784                          Demography       121206
## 15785                           Education       103706
## 15786                           Education        69706
## 15787                           Education       123306
## 15788                           Education       123406
## 15790                           Education       133006
## 15791                           Education        63206
## 15792                           Education        63306
## 15793                           Education        63406
## 15794                           Education       103006
## 15795                           Education        24106
## 15796                           Education        24206
## 15797                           Education        23806
## 15798                           Education        23906
## 15799                           Education        24006
## 15800                           Education        46106
## 15802                           Education        46206
## 15803                           Education       177706
## 15804        Environmental sustainability        27706
## 15805        Environmental sustainability       100806
## 15807        Environmental sustainability       174306
## 15812        Environmental sustainability       163906
## 15813                              Gender        36806
## 15825                              Gender        89006
## 15835                              Health        64406
## 15836                              Health        64306
## 15837                              Health        69206
## 15838                              Health       120606
## 15839                              Health       121106
## 15840                              Health       103206
## 15841                              Health        57806
## 15842                              Health        57206
## 15843                              Health        57906
## 15844                              Health        57506
## 15853     Income/composition of resources       127606
## 15854     Income/composition of resources        65606
## 15869          Mobility and communication       110806
## 15884       Socio-economic sustainability       178306
## 15887       Socio-economic sustainability       181706
## 15889           Trade and financial flows       133206
## 15890           Trade and financial flows        53506
## 15891           Trade and financial flows        99106
## 15892           Trade and financial flows       111306
## 15893           Trade and financial flows        52606
## 15897  Work, employment and vulnerability       148206
## 15898  Work, employment and vulnerability        48706
## 15899  Work, employment and vulnerability        48806
## 15905                   Composite indices       137506
## 15906                          Demography        47906
## 15907                          Demography       122006
## 15908                          Demography        63106
## 15909                          Demography       132706
## 15910                          Demography       132806
## 15911                          Demography        49006
## 15912                          Demography        44206
## 15913                          Demography        45106
## 15914                          Demography       121206
## 15915                           Education       103706
## 15916                           Education        69706
## 15923                           Education        63406
## 15925                           Education       103006
## 15926                           Education        24106
## 15927                           Education        24206
## 15928                           Education        23806
## 15929                           Education        23906
## 15930                           Education        24006
## 15937        Environmental sustainability       100806
## 15939        Environmental sustainability       174306
## 15944        Environmental sustainability       163906
## 15945                              Gender        36806
## 15956                              Gender        89006
## 15967                              Health        58006
## 15970                              Health        69206
## 15971                              Health       120606
## 15972                              Health       121106
## 15973                              Health       103206
## 15975                              Health        57806
## 15976                              Health        57206
## 15977                              Health        57906
## 15978                              Health        57506
## 15988     Income/composition of resources       136706
## 15989     Income/composition of resources       143306
## 15990     Income/composition of resources        65606
## 15991     Income/composition of resources       141706
## 15992     Income/composition of resources       103606
## 16009          Mobility and communication       110806
## 16026       Socio-economic sustainability       178306
## 16033       Socio-economic sustainability       181706
## 16036           Trade and financial flows       133206
## 16044  Work, employment and vulnerability       148206
## 16045  Work, employment and vulnerability        48706
## 16046  Work, employment and vulnerability        48806
## 16053                   Composite indices       137506
## 16054                          Demography        47906
## 16055                          Demography       122006
## 16056                          Demography        63106
## 16057                          Demography       132706
## 16058                          Demography       132806
## 16059                          Demography        49006
## 16060                          Demography        44206
## 16061                          Demography        45106
## 16062                          Demography       121206
## 16063                           Education       103706
## 16064                           Education        69706
## 16065                           Education       123306
## 16066                           Education       123406
## 16068                           Education       133006
## 16069                           Education        63206
## 16070                           Education        63306
## 16071                           Education        63406
## 16073                           Education       103006
## 16074                           Education        24106
## 16075                           Education        24206
## 16076                           Education        23806
## 16077                           Education        23906
## 16078                           Education        24006
## 16085                           Education        46206
## 16087        Environmental sustainability       174406
## 16088        Environmental sustainability        27706
## 16089        Environmental sustainability       100806
## 16091        Environmental sustainability       174306
## 16096        Environmental sustainability       163906
## 16097                              Gender        36806
## 16110                              Gender        89006
## 16111                              Gender       181206
## 16120                              Health        58006
## 16121                              Health        64406
## 16122                              Health        64306
## 16123                              Health        69206
## 16124                              Health       120606
## 16125                              Health       121106
## 16126                              Health       103206
## 16128                              Health        57806
## 16129                              Health        57206
## 16130                              Health        57906
## 16131                              Health        57506
## 16140     Income/composition of resources       127606
## 16141     Income/composition of resources       136706
## 16142     Income/composition of resources       143306
## 16143     Income/composition of resources        65606
## 16144     Income/composition of resources       141706
## 16145     Income/composition of resources       103606
## 16163          Mobility and communication       110806
## 16178       Socio-economic sustainability       164406
## 16180       Socio-economic sustainability       178306
## 16187       Socio-economic sustainability       181706
## 16189       Socio-economic sustainability       174206
## 16190           Trade and financial flows       133206
## 16191           Trade and financial flows        53506
## 16192           Trade and financial flows        99106
## 16193           Trade and financial flows       111306
## 16194           Trade and financial flows        52606
## 16198  Work, employment and vulnerability       148206
## 16199  Work, employment and vulnerability        48706
## 16200  Work, employment and vulnerability        48806
## 16208                          Demography        47906
## 16209                          Demography       122006
## 16210                          Demography        63106
## 16211                          Demography       132706
## 16212                          Demography       132806
## 16213                          Demography        49006
## 16214                          Demography        44206
## 16215                          Demography        45106
## 16216                          Demography       121206
## 16218                           Education        69706
## 16219                           Education       123306
## 16220                           Education       123406
## 16225                           Education        63406
## 16240        Environmental sustainability       100806
## 16242        Environmental sustainability       174306
## 16247        Environmental sustainability       163906
## 16248                              Gender        36806
## 16261                              Gender        89006
## 16262                              Gender       181206
## 16271                              Health        58006
## 16274                              Health        69206
## 16275                              Health       120606
## 16276                              Health       121106
## 16277                              Health       103206
## 16278                              Health        57806
## 16279                              Health        57206
## 16280                              Health        57906
## 16281                              Health        57506
## 16291     Income/composition of resources       136706
## 16292     Income/composition of resources       143306
## 16293     Income/composition of resources        65606
## 16294     Income/composition of resources       141706
## 16295     Income/composition of resources       103606
## 16313          Mobility and communication       110806
## 16330       Socio-economic sustainability       178306
## 16335       Socio-economic sustainability       181706
## 16338           Trade and financial flows       133206
## 16347  Work, employment and vulnerability       148206
## 16348  Work, employment and vulnerability        48706
## 16349  Work, employment and vulnerability        48806
## 16356                   Composite indices       137506
## 16357                          Demography        47906
## 16358                          Demography       122006
## 16359                          Demography        63106
## 16360                          Demography       132706
## 16361                          Demography       132806
## 16362                          Demography        49006
## 16363                          Demography        44206
## 16364                          Demography        45106
## 16365                          Demography       121206
## 16366                           Education       103706
## 16367                           Education        69706
## 16368                           Education       123306
## 16369                           Education       123406
## 16371                           Education       133006
## 16372                           Education        63206
## 16373                           Education        63306
## 16374                           Education        63406
## 16376                           Education       103006
## 16377                           Education        24106
## 16378                           Education        24206
## 16379                           Education        23806
## 16380                           Education        23906
## 16381                           Education        24006
## 16382                           Education        46106
## 16384                           Education        46206
## 16385                           Education       177706
## 16386        Environmental sustainability       174406
## 16387        Environmental sustainability        27706
## 16388        Environmental sustainability       100806
## 16390        Environmental sustainability       174306
## 16394        Environmental sustainability       163906
## 16395                              Gender        36806
## 16406                              Gender        89006
## 16417                              Health        58006
## 16418                              Health        64406
## 16419                              Health        64306
## 16420                              Health        69206
## 16421                              Health       120606
## 16422                              Health       121106
## 16423                              Health       103206
## 16425                              Health        57806
## 16426                              Health        57206
## 16427                              Health        57906
## 16428                              Health        57506
## 16437     Income/composition of resources       127606
## 16438     Income/composition of resources       136706
## 16439     Income/composition of resources       143306
## 16440     Income/composition of resources        65606
## 16441     Income/composition of resources       141706
## 16442     Income/composition of resources       103606
## 16459          Mobility and communication       110806
## 16474       Socio-economic sustainability       164406
## 16476       Socio-economic sustainability       178306
## 16484       Socio-economic sustainability       174206
## 16485           Trade and financial flows       133206
## 16486           Trade and financial flows        53506
## 16487           Trade and financial flows        99106
## 16488           Trade and financial flows       111306
## 16489           Trade and financial flows        52606
## 16494  Work, employment and vulnerability       148206
## 16495  Work, employment and vulnerability        48706
## 16496  Work, employment and vulnerability        48806
## 16503                   Composite indices       137506
## 16504                          Demography        47906
## 16505                          Demography       122006
## 16506                          Demography        63106
## 16507                          Demography       132706
## 16508                          Demography       132806
## 16509                          Demography        49006
## 16510                          Demography        44206
## 16511                          Demography        45106
## 16512                          Demography       121206
## 16513                           Education       103706
## 16514                           Education        69706
## 16519                           Education        63206
## 16520                           Education        63306
## 16523                           Education       103006
## 16524                           Education        24106
## 16525                           Education        24206
## 16526                           Education        23806
## 16527                           Education        23906
## 16528                           Education        24006
## 16531                           Education        46206
## 16532        Environmental sustainability       174406
## 16533        Environmental sustainability        27706
## 16534        Environmental sustainability       100806
## 16536        Environmental sustainability       174306
## 16540        Environmental sustainability       163906
## 16541                              Gender        36806
## 16551                              Gender        89006
## 16552                              Gender       181206
## 16562                              Health        64406
## 16563                              Health        64306
## 16564                              Health        69206
## 16565                              Health       120606
## 16566                              Health       121106
## 16567                              Health       103206
## 16568                              Health        57806
## 16569                              Health        57206
## 16570                              Health        57906
## 16571                              Health        57506
## 16580     Income/composition of resources       127606
## 16581     Income/composition of resources       136706
## 16582     Income/composition of resources       143306
## 16583     Income/composition of resources        65606
## 16584     Income/composition of resources       141706
## 16585     Income/composition of resources       103606
## 16596          Mobility and communication       110806
## 16597       Socio-economic sustainability       164406
## 16599       Socio-economic sustainability       178306
## 16603       Socio-economic sustainability       181706
## 16604       Socio-economic sustainability       174206
## 16605           Trade and financial flows       133206
## 16606           Trade and financial flows        53506
## 16607           Trade and financial flows        99106
## 16608           Trade and financial flows       111306
## 16609           Trade and financial flows        52606
## 16613  Work, employment and vulnerability       148206
## 16614  Work, employment and vulnerability        48706
## 16615  Work, employment and vulnerability        48806
## 16621                   Composite indices       137506
## 16622                          Demography        47906
## 16623                          Demography       122006
## 16624                          Demography        63106
## 16625                          Demography       132706
## 16626                          Demography       132806
## 16627                          Demography        49006
## 16628                          Demography        44206
## 16629                          Demography        45106
## 16630                          Demography       121206
## 16631                           Education       103706
## 16632                           Education        69706
## 16633                           Education       123306
## 16634                           Education       123406
## 16635                           Education       149206
## 16636                           Education       133006
## 16637                           Education        63206
## 16638                           Education        63306
## 16640                           Education       101406
## 16641                           Education       103006
## 16642                           Education        24106
## 16643                           Education        24206
## 16644                           Education        23806
## 16645                           Education        23906
## 16646                           Education        24006
## 16655        Environmental sustainability       174406
## 16656        Environmental sustainability        27706
## 16657        Environmental sustainability       100806
## 16659        Environmental sustainability       174306
## 16664        Environmental sustainability       163906
## 16665                              Gender        36806
## 16676                              Gender        89006
## 16688                              Health        58006
## 16689                              Health        64406
## 16690                              Health        64306
## 16691                              Health        69206
## 16692                              Health       120606
## 16693                              Health       121106
## 16694                              Health       103206
## 16695                              Health        57806
## 16696                              Health        57206
## 16697                              Health        57906
## 16698                              Health        57506
## 16707     Income/composition of resources       127606
## 16708     Income/composition of resources       136706
## 16709     Income/composition of resources       143306
## 16710     Income/composition of resources       141706
## 16711     Income/composition of resources       103606
## 16725          Mobility and communication       110806
## 16738       Socio-economic sustainability       164406
## 16743       Socio-economic sustainability       181706
## 16745           Trade and financial flows        53506
## 16746           Trade and financial flows        99106
## 16747           Trade and financial flows       111306
## 16748           Trade and financial flows        52606
## 16752  Work, employment and vulnerability       148206
## 16753  Work, employment and vulnerability        48706
## 16754  Work, employment and vulnerability        48806
## 16761                   Composite indices       137506
## 16762                          Demography        47906
## 16763                          Demography       122006
## 16764                          Demography        63106
## 16765                          Demography       132706
## 16766                          Demography       132806
## 16767                          Demography        49006
## 16768                          Demography        44206
## 16769                          Demography        45106
## 16770                          Demography       121206
## 16771                           Education       103706
## 16772                           Education        69706
## 16773                           Education       123306
## 16774                           Education       123406
## 16775                           Education       149206
## 16776                           Education       133006
## 16777                           Education        63206
## 16778                           Education        63306
## 16779                           Education        63406
## 16781                           Education       103006
## 16782                           Education        24106
## 16783                           Education        24206
## 16784                           Education        23806
## 16785                           Education        23906
## 16786                           Education        24006
## 16787                           Education        46106
## 16793                           Education        46206
## 16794                           Education       177706
## 16795        Environmental sustainability       174406
## 16796        Environmental sustainability        27706
## 16797        Environmental sustainability       100806
## 16799        Environmental sustainability       174306
## 16800        Environmental sustainability        97106
## 16804        Environmental sustainability       163906
## 16805                              Gender        36806
## 16817                              Gender        89006
## 16827                              Health        58006
## 16828                              Health        64406
## 16829                              Health        64306
## 16830                              Health        69206
## 16831                              Health       120606
## 16832                              Health       121106
## 16833                              Health       103206
## 16834                              Health        57806
## 16835                              Health        57206
## 16836                              Health        57906
## 16837                              Health        57506
## 16846     Income/composition of resources       127606
## 16847     Income/composition of resources       136706
## 16848     Income/composition of resources       143306
## 16849     Income/composition of resources        65606
## 16850     Income/composition of resources       141706
## 16851     Income/composition of resources       103606
## 16868          Mobility and communication       110806
## 16883       Socio-economic sustainability       164406
## 16885       Socio-economic sustainability       178306
## 16892       Socio-economic sustainability       181706
## 16894       Socio-economic sustainability       174206
## 16895           Trade and financial flows       133206
## 16896           Trade and financial flows        53506
## 16897           Trade and financial flows        99106
## 16898           Trade and financial flows       111306
## 16899           Trade and financial flows        52606
## 16904  Work, employment and vulnerability       148206
## 16905  Work, employment and vulnerability        48706
## 16906  Work, employment and vulnerability        48806
## 16912                   Composite indices       137506
## 16913                          Demography        47906
## 16914                          Demography       122006
## 16915                          Demography        63106
## 16916                          Demography       132706
## 16917                          Demography       132806
## 16918                          Demography        49006
## 16919                          Demography        44206
## 16920                          Demography        45106
## 16921                          Demography       121206
## 16922                           Education       103706
## 16923                           Education        69706
## 16924                           Education       123306
## 16925                           Education       123406
## 16927                           Education       133006
## 16928                           Education        63206
## 16929                           Education        63306
## 16930                           Education        63406
## 16931                           Education       101406
## 16932                           Education       103006
## 16933                           Education        24106
## 16934                           Education        24206
## 16935                           Education        23806
## 16936                           Education        23906
## 16937                           Education        24006
## 16938                           Education        46106
## 16943                           Education        46206
## 16944                           Education       177706
## 16945        Environmental sustainability       174406
## 16946        Environmental sustainability        27706
## 16947        Environmental sustainability       100806
## 16949        Environmental sustainability       174306
## 16954        Environmental sustainability       163906
## 16955                              Gender        36806
## 16968                              Gender        89006
## 16979                              Health        64406
## 16980                              Health        64306
## 16981                              Health        69206
## 16982                              Health       120606
## 16983                              Health       121106
## 16984                              Health       103206
## 16986                              Health        57806
## 16987                              Health        57206
## 16988                              Health        57906
## 16989                              Health        57506
## 16998     Income/composition of resources       127606
## 16999     Income/composition of resources       136706
## 17000     Income/composition of resources       143306
## 17001     Income/composition of resources        65606
## 17002     Income/composition of resources       141706
## 17003     Income/composition of resources       103606
## 17021          Mobility and communication       110806
## 17023       Socio-economic sustainability       164406
## 17025       Socio-economic sustainability       178306
## 17032       Socio-economic sustainability       181706
## 17034       Socio-economic sustainability       174206
## 17035           Trade and financial flows       133206
## 17036           Trade and financial flows        53506
## 17037           Trade and financial flows        99106
## 17038           Trade and financial flows       111306
## 17039           Trade and financial flows        52606
## 17043  Work, employment and vulnerability       148206
## 17044  Work, employment and vulnerability        48706
## 17045  Work, employment and vulnerability        48806
## 17053                          Demography        47906
## 17054                          Demography       122006
## 17055                          Demography        63106
## 17056                          Demography       132706
## 17057                          Demography       132806
## 17058                          Demography        49006
## 17059                          Demography        44206
## 17060                          Demography        45106
## 17061                          Demography       121206
## 17070                           Education        63406
## 17077        Environmental sustainability       100806
## 17083        Environmental sustainability       163906
## 17084                              Gender        36806
## 17090                              Gender        89006
## 17102                              Health        69206
## 17103                              Health       120606
## 17104                              Health       121106
## 17105                              Health       103206
## 17106                              Health        57806
## 17107                              Health        57206
## 17108                              Health        57906
## 17109                              Health        57506
## 17118     Income/composition of resources       136706
## 17119     Income/composition of resources       143306
## 17121     Income/composition of resources       141706
## 17122     Income/composition of resources       103606
## 17136          Mobility and communication       110806
## 17150       Socio-economic sustainability       178306
## 17154       Socio-economic sustainability       181706
## 17163  Work, employment and vulnerability       148206
## 17164  Work, employment and vulnerability        48706
## 17165  Work, employment and vulnerability        48806
## 17170                   Composite indices       137506
## 17171                          Demography        47906
## 17172                          Demography       122006
## 17173                          Demography        63106
## 17174                          Demography       132706
## 17175                          Demography       132806
## 17176                          Demography        49006
## 17177                          Demography        44206
## 17178                          Demography        45106
## 17179                          Demography       121206
## 17180                           Education       103706
## 17181                           Education        69706
## 17182                           Education       123306
## 17183                           Education       123406
## 17186                           Education        63206
## 17187                           Education        63306
## 17188                           Education        63406
## 17190                           Education       103006
## 17191                           Education        24106
## 17192                           Education        24206
## 17193                           Education        23806
## 17194                           Education        23906
## 17195                           Education        24006
## 17197                           Education        46206
## 17199        Environmental sustainability       174406
## 17200        Environmental sustainability        27706
## 17201        Environmental sustainability       100806
## 17207        Environmental sustainability       163906
## 17208                              Gender        36806
## 17220                              Gender        89006
## 17231                              Health        58006
## 17232                              Health        64406
## 17233                              Health        64306
## 17234                              Health        69206
## 17235                              Health       120606
## 17236                              Health       121106
## 17237                              Health       103206
## 17239                              Health        57806
## 17240                              Health        57206
## 17241                              Health        57906
## 17242                              Health        57506
## 17252     Income/composition of resources       136706
## 17253     Income/composition of resources       143306
## 17254     Income/composition of resources        65606
## 17255     Income/composition of resources       141706
## 17256     Income/composition of resources       103606
## 17273          Mobility and communication       110806
## 17288       Socio-economic sustainability       164406
## 17290       Socio-economic sustainability       178306
## 17298       Socio-economic sustainability       174206
## 17299           Trade and financial flows       133206
## 17300           Trade and financial flows        53506
## 17301           Trade and financial flows        99106
## 17302           Trade and financial flows       111306
## 17308  Work, employment and vulnerability       148206
## 17309  Work, employment and vulnerability        48706
## 17310  Work, employment and vulnerability        48806
## 17317                   Composite indices       137506
## 17318                          Demography        47906
## 17319                          Demography       122006
## 17320                          Demography        63106
## 17321                          Demography       132706
## 17322                          Demography       132806
## 17323                          Demography        49006
## 17324                          Demography        44206
## 17325                          Demography        45106
## 17326                          Demography       121206
## 17327                           Education       103706
## 17328                           Education        69706
## 17329                           Education       123306
## 17330                           Education       123406
## 17332                           Education       133006
## 17333                           Education        63206
## 17334                           Education        63306
## 17335                           Education        63406
## 17337                           Education       103006
## 17338                           Education        24106
## 17339                           Education        24206
## 17340                           Education        23806
## 17341                           Education        23906
## 17342                           Education        24006
## 17346                           Education       177706
## 17349        Environmental sustainability       100806
## 17351        Environmental sustainability       174306
## 17356        Environmental sustainability       163906
## 17357                              Gender        36806
## 17370                              Gender        89006
## 17371                              Gender       181206
## 17381                              Health        58006
## 17384                              Health        69206
## 17385                              Health       120606
## 17386                              Health       121106
## 17387                              Health       103206
## 17388                              Health        57806
## 17389                              Health        57206
## 17390                              Health        57906
## 17391                              Health        57506
## 17401     Income/composition of resources       136706
## 17402     Income/composition of resources       143306
## 17403     Income/composition of resources        65606
## 17404     Income/composition of resources       141706
## 17405     Income/composition of resources       103606
## 17423          Mobility and communication       110806
## 17440       Socio-economic sustainability       178306
## 17447       Socio-economic sustainability       181706
## 17450           Trade and financial flows       133206
## 17459  Work, employment and vulnerability       148206
## 17460  Work, employment and vulnerability        48706
## 17461  Work, employment and vulnerability        48806
## 17468                   Composite indices       137506
## 17469                          Demography        47906
## 17470                          Demography       122006
## 17471                          Demography        63106
## 17472                          Demography       132706
## 17473                          Demography       132806
## 17474                          Demography        49006
## 17475                          Demography        44206
## 17476                          Demography        45106
## 17477                          Demography       121206
## 17478                           Education       103706
## 17479                           Education        69706
## 17480                           Education       123306
## 17481                           Education       123406
## 17482                           Education       149206
## 17483                           Education       133006
## 17484                           Education        63206
## 17485                           Education        63306
## 17486                           Education        63406
## 17487                           Education       103006
## 17488                           Education        24106
## 17489                           Education        24206
## 17490                           Education        23806
## 17491                           Education        23906
## 17492                           Education        24006
## 17497                           Education        46206
## 17498        Environmental sustainability       174406
## 17499        Environmental sustainability        27706
## 17500        Environmental sustainability       100806
## 17502        Environmental sustainability       174306
## 17503        Environmental sustainability        97106
## 17507        Environmental sustainability       163906
## 17508                              Gender        36806
## 17519                              Gender        89006
## 17528                              Health        64406
## 17529                              Health        64306
## 17530                              Health        69206
## 17531                              Health       120606
## 17532                              Health       121106
## 17533                              Health       103206
## 17534                              Health        57806
## 17535                              Health        57206
## 17536                              Health        57906
## 17537                              Health        57506
## 17546     Income/composition of resources       127606
## 17547     Income/composition of resources       136706
## 17548     Income/composition of resources       143306
## 17549     Income/composition of resources        65606
## 17550     Income/composition of resources       141706
## 17551     Income/composition of resources       103606
## 17569          Mobility and communication       110806
## 17570       Socio-economic sustainability       164406
## 17572       Socio-economic sustainability       178306
## 17579       Socio-economic sustainability       181706
## 17581           Trade and financial flows       133206
## 17582           Trade and financial flows        53506
## 17583           Trade and financial flows       111306
## 17584           Trade and financial flows        52606
## 17588  Work, employment and vulnerability       148206
## 17589  Work, employment and vulnerability        48706
## 17590  Work, employment and vulnerability        48806
## 17598                   Composite indices       137506
## 17599                          Demography        47906
## 17600                          Demography       122006
## 17601                          Demography        63106
## 17602                          Demography       132706
## 17603                          Demography       132806
## 17604                          Demography        49006
## 17605                          Demography        44206
## 17606                          Demography        45106
## 17607                          Demography       121206
## 17608                           Education       103706
## 17609                           Education        69706
## 17613                           Education       133006
## 17614                           Education        63206
## 17615                           Education        63306
## 17616                           Education        63406
## 17618                           Education       103006
## 17619                           Education        24106
## 17620                           Education        24206
## 17621                           Education        23806
## 17622                           Education        23906
## 17623                           Education        24006
## 17624                           Education        46106
## 17630                           Education        46206
## 17632        Environmental sustainability       174406
## 17633        Environmental sustainability        27706
## 17634        Environmental sustainability       100806
## 17636        Environmental sustainability       174306
## 17641        Environmental sustainability       163906
## 17642                              Gender        36806
## 17655                              Gender        89006
## 17656                              Gender       181206
## 17664                              Health        58006
## 17665                              Health        64406
## 17666                              Health        64306
## 17667                              Health        69206
## 17668                              Health       120606
## 17669                              Health       121106
## 17670                              Health       103206
## 17671                              Health        57806
## 17672                              Health        57206
## 17673                              Health        57906
## 17674                              Health        57506
## 17683     Income/composition of resources       127606
## 17684     Income/composition of resources       136706
## 17685     Income/composition of resources       143306
## 17686     Income/composition of resources        65606
## 17687     Income/composition of resources       141706
## 17688     Income/composition of resources       103606
## 17705          Mobility and communication       110806
## 17707       Socio-economic sustainability       164406
## 17709       Socio-economic sustainability       178306
## 17715       Socio-economic sustainability       181706
## 17717           Trade and financial flows       133206
## 17718           Trade and financial flows        53506
## 17719           Trade and financial flows        99106
## 17720           Trade and financial flows       111306
## 17725  Work, employment and vulnerability       148206
## 17726  Work, employment and vulnerability        48706
## 17727  Work, employment and vulnerability        48806
## 17735                          Demography        47906
## 17736                          Demography       122006
## 17737                          Demography        63106
## 17738                          Demography       132706
## 17739                          Demography       132806
## 17740                          Demography        49006
## 17741                          Demography        44206
## 17742                          Demography        45106
## 17743                          Demography       121206
## 17745                           Education        69706
## 17748                           Education       133006
## 17749                           Education        63206
## 17750                           Education        63306
## 17751                           Education        63406
## 17761                           Education        46206
## 17765        Environmental sustainability       100806
## 17767        Environmental sustainability       174306
## 17772        Environmental sustainability       163906
## 17773                              Gender        36806
## 17784                              Gender        89006
## 17795                              Health        69206
## 17796                              Health       120606
## 17797                              Health       121106
## 17798                              Health       103206
## 17800                              Health        57806
## 17801                              Health        57206
## 17802                              Health        57906
## 17803                              Health        57506
## 17812     Income/composition of resources       136706
## 17813     Income/composition of resources       143306
## 17814     Income/composition of resources        65606
## 17815     Income/composition of resources       141706
## 17816     Income/composition of resources       103606
## 17830          Mobility and communication       110806
## 17845       Socio-economic sustainability       178306
## 17849       Socio-economic sustainability       181706
## 17850           Trade and financial flows       133206
## 17857  Work, employment and vulnerability       148206
## 17858  Work, employment and vulnerability        48706
## 17859  Work, employment and vulnerability        48806
## 17866                          Demography        47906
## 17867                          Demography       122006
## 17868                          Demography        63106
## 17869                          Demography       132706
## 17870                          Demography       132806
## 17871                          Demography        49006
## 17872                          Demography        44206
## 17873                          Demography        45106
## 17874                          Demography       121206
## 17881                           Education        63206
## 17889        Environmental sustainability       174406
## 17890        Environmental sustainability        27706
## 17891        Environmental sustainability       100806
## 17893        Environmental sustainability       174306
## 17897        Environmental sustainability       163906
## 17898                              Gender        36806
## 17905                              Gender        89006
## 17906                              Gender       181206
## 17916                              Health        64406
## 17917                              Health        64306
## 17918                              Health        69206
## 17919                              Health       120606
## 17920                              Health       121106
## 17921                              Health       103206
## 17923                              Health        57806
## 17924                              Health        57206
## 17925                              Health        57906
## 17926                              Health        57506
## 17935     Income/composition of resources       127606
## 17936     Income/composition of resources       136706
## 17937     Income/composition of resources       143306
## 17938     Income/composition of resources        65606
## 17939     Income/composition of resources       141706
## 17940     Income/composition of resources       103606
## 17956          Mobility and communication       110806
## 17970       Socio-economic sustainability       164406
## 17972       Socio-economic sustainability       178306
## 17976       Socio-economic sustainability       174206
## 17977           Trade and financial flows       133206
## 17978           Trade and financial flows        53506
## 17979           Trade and financial flows        99106
## 17980           Trade and financial flows       111306
## 17981           Trade and financial flows        52606
## 17985  Work, employment and vulnerability       148206
## 17986  Work, employment and vulnerability        48706
## 17987  Work, employment and vulnerability        48806
## 17993                   Composite indices       137506
## 17994                          Demography        47906
## 17995                          Demography       122006
## 17996                          Demography        63106
## 17997                          Demography       132706
## 17998                          Demography       132806
## 17999                          Demography        49006
## 18000                          Demography        44206
## 18001                          Demography        45106
## 18002                          Demography       121206
## 18003                           Education       103706
## 18004                           Education        69706
## 18007                           Education       149206
## 18008                           Education       133006
## 18009                           Education        63206
## 18010                           Education        63306
## 18011                           Education        63406
## 18012                           Education       101406
## 18013                           Education       103006
## 18014                           Education        24106
## 18015                           Education        24206
## 18016                           Education        23806
## 18017                           Education        23906
## 18018                           Education        24006
## 18019                           Education        46106
## 18021                           Education       177706
## 18022        Environmental sustainability       174406
## 18023        Environmental sustainability        27706
## 18024        Environmental sustainability       100806
## 18026        Environmental sustainability       174306
## 18031        Environmental sustainability       163906
## 18032                              Gender        36806
## 18042                              Gender        89006
## 18051                              Health        58006
## 18052                              Health        64406
## 18053                              Health        64306
## 18054                              Health        69206
## 18055                              Health       120606
## 18056                              Health       121106
## 18057                              Health       103206
## 18059                              Health        57806
## 18060                              Health        57206
## 18061                              Health        57906
## 18062                              Health        57506
## 18071     Income/composition of resources       127606
## 18072     Income/composition of resources       136706
## 18073     Income/composition of resources       143306
## 18074     Income/composition of resources        65606
## 18075     Income/composition of resources       141706
## 18076     Income/composition of resources       103606
## 18093          Mobility and communication       110806
## 18095       Socio-economic sustainability       164406
## 18097       Socio-economic sustainability       178306
## 18102       Socio-economic sustainability       181706
## 18104       Socio-economic sustainability       174206
## 18105           Trade and financial flows       133206
## 18106           Trade and financial flows        53506
## 18107           Trade and financial flows        99106
## 18108           Trade and financial flows       111306
## 18109           Trade and financial flows        52606
## 18113  Work, employment and vulnerability       148206
## 18114  Work, employment and vulnerability        48706
## 18115  Work, employment and vulnerability        48806
## 18122                   Composite indices       137506
## 18123                          Demography        47906
## 18124                          Demography       122006
## 18125                          Demography        63106
## 18126                          Demography       132706
## 18127                          Demography       132806
## 18128                          Demography        49006
## 18129                          Demography        44206
## 18130                          Demography        45106
## 18131                          Demography       121206
## 18132                           Education       103706
## 18133                           Education        69706
## 18141                           Education       103006
## 18142                           Education        24106
## 18143                           Education        24206
## 18144                           Education        23806
## 18145                           Education        23906
## 18146                           Education        24006
## 18150        Environmental sustainability       174406
## 18151        Environmental sustainability        27706
## 18152        Environmental sustainability       100806
## 18154        Environmental sustainability       174306
## 18155        Environmental sustainability        97106
## 18159        Environmental sustainability       163906
## 18160                              Gender        36806
## 18171                              Gender        89006
## 18181                              Health        58006
## 18182                              Health        64406
## 18183                              Health        64306
## 18184                              Health        69206
## 18185                              Health       120606
## 18186                              Health       121106
## 18187                              Health       103206
## 18189                              Health        57806
## 18190                              Health        57206
## 18191                              Health        57906
## 18192                              Health        57506
## 18201     Income/composition of resources       127606
## 18202     Income/composition of resources       136706
## 18203     Income/composition of resources       143306
## 18204     Income/composition of resources        65606
## 18205     Income/composition of resources       141706
## 18206     Income/composition of resources       103606
## 18223          Mobility and communication       110806
## 18240       Socio-economic sustainability       178306
## 18246       Socio-economic sustainability       181706
## 18248       Socio-economic sustainability       174206
## 18249           Trade and financial flows       133206
## 18250           Trade and financial flows        53506
## 18251           Trade and financial flows        99106
## 18253           Trade and financial flows        52606
## 18257  Work, employment and vulnerability       148206
## 18258  Work, employment and vulnerability        48706
## 18259  Work, employment and vulnerability        48806
## 18266                   Composite indices       137506
## 18267                          Demography        47906
## 18268                          Demography       122006
## 18269                          Demography        63106
## 18270                          Demography       132706
## 18271                          Demography       132806
## 18272                          Demography        49006
## 18273                          Demography        44206
## 18274                          Demography        45106
## 18275                          Demography       121206
## 18276                           Education       103706
## 18277                           Education        69706
## 18281                           Education        63206
## 18282                           Education        63306
## 18283                           Education        63406
## 18284                           Education       101406
## 18285                           Education       103006
## 18286                           Education        24106
## 18287                           Education        24206
## 18288                           Education        23806
## 18289                           Education        23906
## 18290                           Education        24006
## 18293                           Education        46206
## 18295        Environmental sustainability       174406
## 18296        Environmental sustainability        27706
## 18297        Environmental sustainability       100806
## 18299        Environmental sustainability       174306
## 18304        Environmental sustainability       163906
## 18305                              Gender        36806
## 18316                              Gender        89006
## 18327                              Health        58006
## 18328                              Health        64406
## 18329                              Health        64306
## 18330                              Health        69206
## 18331                              Health       120606
## 18332                              Health       121106
## 18333                              Health       103206
## 18335                              Health        57806
## 18336                              Health        57206
## 18337                              Health        57906
## 18338                              Health        57506
## 18347     Income/composition of resources       127606
## 18348     Income/composition of resources       136706
## 18349     Income/composition of resources       143306
## 18351     Income/composition of resources       141706
## 18352     Income/composition of resources       103606
## 18368          Mobility and communication       110806
## 18392       Socio-economic sustainability       181706
## 18393       Socio-economic sustainability       174206
## 18395           Trade and financial flows        53506
## 18396           Trade and financial flows        99106
## 18397           Trade and financial flows       111306
## 18402  Work, employment and vulnerability       148206
## 18403  Work, employment and vulnerability        48706
## 18404  Work, employment and vulnerability        48806
## 18411                   Composite indices       137506
## 18412                          Demography        47906
## 18413                          Demography       122006
## 18414                          Demography        63106
## 18415                          Demography       132706
## 18416                          Demography       132806
## 18417                          Demography        49006
## 18418                          Demography        44206
## 18419                          Demography        45106
## 18420                          Demography       121206
## 18421                           Education       103706
## 18422                           Education        69706
## 18423                           Education       123306
## 18424                           Education       123406
## 18425                           Education       149206
## 18427                           Education        63206
## 18428                           Education        63306
## 18429                           Education        63406
## 18431                           Education       103006
## 18432                           Education        24106
## 18433                           Education        24206
## 18434                           Education        23806
## 18435                           Education        23906
## 18436                           Education        24006
## 18439                           Education        46206
## 18441        Environmental sustainability       174406
## 18442        Environmental sustainability        27706
## 18443        Environmental sustainability       100806
## 18445        Environmental sustainability       174306
## 18450        Environmental sustainability       163906
## 18451                              Gender        36806
## 18463                              Gender        89006
## 18474                              Health        58006
## 18475                              Health        64406
## 18476                              Health        64306
## 18477                              Health        69206
## 18478                              Health       120606
## 18479                              Health       121106
## 18480                              Health       103206
## 18482                              Health        57806
## 18483                              Health        57206
## 18484                              Health        57906
## 18485                              Health        57506
## 18494     Income/composition of resources       127606
## 18495     Income/composition of resources       136706
## 18496     Income/composition of resources       143306
## 18497     Income/composition of resources        65606
## 18498     Income/composition of resources       141706
## 18499     Income/composition of resources       103606
## 18517          Mobility and communication       110806
## 18532       Socio-economic sustainability       164406
## 18534       Socio-economic sustainability       178306
## 18538       Socio-economic sustainability       181706
## 18540       Socio-economic sustainability       174206
## 18541           Trade and financial flows       133206
## 18542           Trade and financial flows        53506
## 18543           Trade and financial flows        99106
## 18544           Trade and financial flows       111306
## 18545           Trade and financial flows        52606
## 18549  Work, employment and vulnerability       148206
## 18550  Work, employment and vulnerability        48706
## 18551  Work, employment and vulnerability        48806
## 18558                   Composite indices       137506
## 18560                          Demography       122006
## 18561                          Demography        63106
## 18562                          Demography       132706
## 18563                          Demography       132806
## 18565                          Demography        44206
## 18566                          Demography        45106
## 18567                          Demography       121206
## 18568                           Education       103706
## 18569                           Education        69706
## 18570                           Education       123306
## 18571                           Education       123406
## 18578                           Education       103006
## 18579                           Education        24106
## 18580                           Education        24206
## 18582                           Education        23906
## 18583                           Education        24006
## 18616                              Gender       175106
## 18618                              Gender       169706
## 18622                              Gender       169806
## 18625                              Health        58006
## 18626                              Health        64406
## 18627                              Health        64306
## 18628                              Health        69206
## 18629                              Health       120606
## 18630                              Health       121106
## 18631                              Health       103206
## 18632                              Health        57806
## 18633                              Health        57206
## 18634                              Health        57906
## 18635                              Health        57506
## 18648     Income/composition of resources       141706
## 18649     Income/composition of resources       103606
## 18680                             Poverty       153706
## 18693           Trade and financial flows       133206
## 18695           Trade and financial flows        99106
## 18696           Trade and financial flows       111306
## 18699  Work, employment and vulnerability       150606
## 18700  Work, employment and vulnerability       150706
## 18701  Work, employment and vulnerability       148306
## 18706  Work, employment and vulnerability       140606
## 18707  Work, employment and vulnerability       110906
## 18708  Work, employment and vulnerability        43006
## 18711                   Composite indices       137506
## 18713                          Demography       122006
## 18714                          Demography        63106
## 18715                          Demography       132706
## 18716                          Demography       132806
## 18718                          Demography        44206
## 18719                          Demography        45106
## 18720                          Demography       121206
## 18721                           Education       103706
## 18722                           Education        69706
## 18731                           Education       103006
## 18732                           Education        24106
## 18733                           Education        24206
## 18735                           Education        23906
## 18736                           Education        24006
## 18770                              Gender       175106
## 18772                              Gender       169706
## 18775                              Gender       169806
## 18778                              Health        58006
## 18779                              Health        64406
## 18780                              Health        64306
## 18781                              Health        69206
## 18782                              Health       120606
## 18783                              Health       121106
## 18784                              Health       103206
## 18786                              Health        57806
## 18787                              Health        57206
## 18788                              Health        57906
## 18789                              Health        57506
## 18802     Income/composition of resources       141706
## 18803     Income/composition of resources       103606
## 18834                             Poverty       153706
## 18845           Trade and financial flows       133206
## 18846           Trade and financial flows        53506
## 18847           Trade and financial flows        99106
## 18848           Trade and financial flows       111306
## 18849           Trade and financial flows        52606
## 18851  Work, employment and vulnerability       150606
## 18852  Work, employment and vulnerability       150706
## 18853  Work, employment and vulnerability       148306
## 18858  Work, employment and vulnerability       140606
## 18859  Work, employment and vulnerability       110906
## 18860  Work, employment and vulnerability        43006
## 18865                          Demography       122006
## 18866                          Demography        63106
## 18867                          Demography       132706
## 18868                          Demography       132806
## 18870                          Demography        44206
## 18871                          Demography        45106
## 18872                          Demography       121206
## 18874                           Education        69706
## 18907                              Gender       175106
## 18909                              Gender       169706
## 18913                              Gender       169806
## 18916                              Health        58006
## 18917                              Health        64406
## 18918                              Health        64306
## 18919                              Health        69206
## 18920                              Health       120606
## 18921                              Health       121106
## 18922                              Health       103206
## 18924                              Health        57806
## 18925                              Health        57206
## 18926                              Health        57906
## 18927                              Health        57506
## 18940     Income/composition of resources       141706
## 18941     Income/composition of resources       103606
## 18972                             Poverty       153706
## 18983           Trade and financial flows       133206
## 18989  Work, employment and vulnerability       150606
## 18990  Work, employment and vulnerability       150706
## 18991  Work, employment and vulnerability       148306
## 18996  Work, employment and vulnerability       140606
## 18997  Work, employment and vulnerability       110906
## 18998  Work, employment and vulnerability        43006
## 19003                          Demography       122006
## 19004                          Demography        63106
## 19005                          Demography       132706
## 19006                          Demography       132806
## 19008                          Demography        44206
## 19009                          Demography        45106
## 19010                          Demography       121206
## 19041                              Health        64406
## 19042                              Health        64306
## 19043                              Health        69206
## 19044                              Health       120606
## 19045                              Health       121106
## 19046                              Health       103206
## 19047                              Health        57806
## 19048                              Health        57206
## 19049                              Health        57906
## 19050                              Health        57506
## 19061     Income/composition of resources       141706
## 19062     Income/composition of resources       103606
## 19074           Trade and financial flows       133206
## 19075           Trade and financial flows        53506
## 19076           Trade and financial flows        99106
## 19077           Trade and financial flows       111306
## 19078           Trade and financial flows        52606
## 19081                   Composite indices       137506
## 19083                          Demography       122006
## 19084                          Demography        63106
## 19085                          Demography       132706
## 19086                          Demography       132806
## 19088                          Demography        44206
## 19089                          Demography        45106
## 19090                          Demography       121206
## 19091                           Education       103706
## 19092                           Education        69706
## 19101                           Education       103006
## 19102                           Education        24106
## 19103                           Education        24206
## 19105                           Education        23906
## 19106                           Education        24006
## 19138                              Gender       175106
## 19140                              Gender       169706
## 19142                              Gender       169806
## 19144                              Health        58006
## 19145                              Health        64406
## 19146                              Health        64306
## 19147                              Health        69206
## 19148                              Health       120606
## 19149                              Health       121106
## 19150                              Health       103206
## 19152                              Health        57806
## 19153                              Health        57206
## 19154                              Health        57906
## 19155                              Health        57506
## 19168     Income/composition of resources       141706
## 19169     Income/composition of resources       103606
## 19188                             Poverty       153706
## 19201           Trade and financial flows       133206
## 19202           Trade and financial flows        53506
## 19203           Trade and financial flows        99106
## 19204           Trade and financial flows       111306
## 19205           Trade and financial flows        52606
## 19206  Work, employment and vulnerability       150606
## 19207  Work, employment and vulnerability       150706
## 19208  Work, employment and vulnerability       148306
## 19213  Work, employment and vulnerability       140606
## 19214  Work, employment and vulnerability       110906
## 19215  Work, employment and vulnerability        43006
## 19218                   Composite indices       137506
## 19220                          Demography       122006
## 19221                          Demography        63106
## 19222                          Demography       132706
## 19223                          Demography       132806
## 19225                          Demography        44206
## 19226                          Demography        45106
## 19227                          Demography       121206
## 19228                           Education       103706
## 19229                           Education        69706
## 19238                           Education       103006
## 19239                           Education        24106
## 19240                           Education        24206
## 19242                           Education        23906
## 19243                           Education        24006
## 19273                              Gender       175106
## 19275                              Gender       169706
## 19279                              Gender       169806
## 19282                              Health        58006
## 19285                              Health        69206
## 19286                              Health       120606
## 19287                              Health       121106
## 19288                              Health       103206
## 19289                              Health        57806
## 19290                              Health        57206
## 19291                              Health        57906
## 19292                              Health        57506
## 19305     Income/composition of resources       141706
## 19306     Income/composition of resources       103606
## 19338                             Poverty       153706
## 19351           Trade and financial flows       133206
## 19353           Trade and financial flows        99106
## 19357  Work, employment and vulnerability       150606
## 19358  Work, employment and vulnerability       150706
## 19359  Work, employment and vulnerability       148306
## 19364  Work, employment and vulnerability       140606
## 19365  Work, employment and vulnerability       110906
## 19366  Work, employment and vulnerability        43006
## 19369                   Composite indices       137506
## 19371                          Demography       122006
## 19372                          Demography        63106
## 19373                          Demography       132706
## 19374                          Demography       132806
## 19376                          Demography        44206
## 19377                          Demography        45106
## 19378                          Demography       121206
## 19379                           Education       103706
## 19380                           Education        69706
## 19381                           Education       123306
## 19382                           Education       123406
## 19388                           Education       103006
## 19389                           Education        24106
## 19390                           Education        24206
## 19392                           Education        23906
## 19393                           Education        24006
## 19413                              Gender       175006
## 19422                              Gender       175106
## 19424                              Gender       169706
## 19427                              Gender       169806
## 19430                              Health        58006
## 19431                              Health        64406
## 19432                              Health        64306
## 19433                              Health        69206
## 19434                              Health       120606
## 19435                              Health       121106
## 19436                              Health       103206
## 19437                              Health        57806
## 19438                              Health        57206
## 19439                              Health        57906
## 19440                              Health        57506
## 19453     Income/composition of resources       141706
## 19454     Income/composition of resources       103606
## 19484           Trade and financial flows       133206
## 19485           Trade and financial flows        53506
## 19486           Trade and financial flows       111306
## 19487           Trade and financial flows        52606
## 19488  Work, employment and vulnerability       150606
## 19489  Work, employment and vulnerability       150706
## 19490  Work, employment and vulnerability       148306
## 19495  Work, employment and vulnerability       140606
## 19496  Work, employment and vulnerability       110906
## 19497  Work, employment and vulnerability        43006
## 19500                   Composite indices       137506
## 19502                          Demography       122006
## 19503                          Demography        63106
## 19504                          Demography       132706
## 19505                          Demography       132806
## 19507                          Demography        44206
## 19508                          Demography        45106
## 19509                          Demography       121206
## 19510                           Education       103706
## 19511                           Education        69706
## 19512                           Education       123306
## 19513                           Education       123406
## 19519                           Education       103006
## 19520                           Education        24106
## 19521                           Education        24206
## 19523                           Education        23906
## 19524                           Education        24006
## 19555                              Gender       175106
## 19557                              Gender       169706
## 19561                              Gender       169806
## 19563                              Health        64406
## 19564                              Health        64306
## 19565                              Health        69206
## 19566                              Health       120606
## 19567                              Health       121106
## 19568                              Health       103206
## 19569                              Health        57806
## 19570                              Health        57206
## 19571                              Health        57906
## 19572                              Health        57506
## 19585     Income/composition of resources       141706
## 19586     Income/composition of resources       103606
## 19616           Trade and financial flows       133206
## 19617           Trade and financial flows        53506
## 19619           Trade and financial flows        52606
## 19620  Work, employment and vulnerability       150606
## 19621  Work, employment and vulnerability       150706
## 19622  Work, employment and vulnerability       148306
## 19627  Work, employment and vulnerability       140606
## 19628  Work, employment and vulnerability       110906
## 19629  Work, employment and vulnerability        43006
## 19634                          Demography       122006
## 19635                          Demography        63106
## 19636                          Demography       132706
## 19637                          Demography       132806
## 19639                          Demography        44206
## 19640                          Demography        45106
## 19641                          Demography       121206
## 19643                           Education        69706
## 19644                           Education       123306
## 19645                           Education       123406
## 19687                              Gender       175106
## 19689                              Gender       169706
## 19693                              Gender       169806
## 19696                              Health        58006
## 19699                              Health        69206
## 19700                              Health       120606
## 19701                              Health       121106
## 19702                              Health       103206
## 19704                              Health        57806
## 19705                              Health        57206
## 19706                              Health        57906
## 19707                              Health        57506
## 19720     Income/composition of resources       141706
## 19721     Income/composition of resources       103606
## 19752                             Poverty       153706
## 19765           Trade and financial flows       133206
## 19770  Work, employment and vulnerability       150606
## 19771  Work, employment and vulnerability       150706
## 19772  Work, employment and vulnerability       148306
## 19777  Work, employment and vulnerability       140606
## 19778  Work, employment and vulnerability       110906
## 19779  Work, employment and vulnerability        43006
## 19783                          Demography       122006
## 19784                          Demography        63106
## 19785                          Demography       132706
## 19786                          Demography       132806
## 19788                          Demography        44206
## 19789                          Demography        45106
## 19790                          Demography       121206
## 19792                           Education        69706
## 19793                           Education       123306
## 19794                           Education       123406
## 19830                              Gender       175106
## 19832                              Gender       169706
## 19833                              Gender       169806
## 19835                              Health        58006
## 19836                              Health        64406
## 19837                              Health        64306
## 19838                              Health        69206
## 19839                              Health       120606
## 19840                              Health       121106
## 19841                              Health       103206
## 19842                              Health        57806
## 19843                              Health        57206
## 19844                              Health        57906
## 19845                              Health        57506
## 19857     Income/composition of resources       141706
## 19858     Income/composition of resources       103606
## 19872                             Poverty       153706
## 19880           Trade and financial flows       133206
## 19881           Trade and financial flows        53506
## 19882           Trade and financial flows        99106
## 19884  Work, employment and vulnerability       150606
## 19885  Work, employment and vulnerability       150706
## 19886  Work, employment and vulnerability       148306
## 19891  Work, employment and vulnerability       140606
## 19892  Work, employment and vulnerability       110906
## 19893  Work, employment and vulnerability        43006
## 19895                   Composite indices       137506
## 19897                          Demography       122006
## 19898                          Demography        63106
## 19899                          Demography       132706
## 19900                          Demography       132806
## 19902                          Demography        44206
## 19903                          Demography        45106
## 19904                          Demography       121206
## 19905                           Education       103706
## 19906                           Education        69706
## 19907                           Education       123306
## 19908                           Education       123406
## 19915                           Education       103006
## 19916                           Education        24106
## 19917                           Education        24206
## 19919                           Education        23906
## 19920                           Education        24006
## 19950                              Gender       175106
## 19952                              Gender       169706
## 19956                              Gender       169806
## 19959                              Health        58006
## 19960                              Health        64406
## 19961                              Health        64306
## 19962                              Health        69206
## 19963                              Health       120606
## 19964                              Health       121106
## 19965                              Health       103206
## 19967                              Health        57806
## 19968                              Health        57206
## 19969                              Health        57906
## 19970                              Health        57506
## 19983     Income/composition of resources       141706
## 19984     Income/composition of resources       103606
## 20016                             Poverty       153706
## 20028           Trade and financial flows       133206
## 20029           Trade and financial flows        53506
## 20030           Trade and financial flows        99106
## 20031           Trade and financial flows       111306
## 20032           Trade and financial flows        52606
## 20033  Work, employment and vulnerability       150606
## 20034  Work, employment and vulnerability       150706
## 20035  Work, employment and vulnerability       148306
## 20040  Work, employment and vulnerability       140606
## 20041  Work, employment and vulnerability       110906
## 20042  Work, employment and vulnerability        43006
## 20045                   Composite indices       137506
## 20047                          Demography       122006
## 20048                          Demography        63106
## 20049                          Demography       132706
## 20050                          Demography       132806
## 20052                          Demography        44206
## 20053                          Demography        45106
## 20054                          Demography       121206
## 20055                           Education       103706
## 20056                           Education        69706
## 20057                           Education       123306
## 20058                           Education       123406
## 20064                           Education       103006
## 20065                           Education        24106
## 20066                           Education        24206
## 20068                           Education        23906
## 20069                           Education        24006
## 20098                              Gender       175106
## 20100                              Gender       169706
## 20102                              Gender       169806
## 20105                              Health        58006
## 20106                              Health        64406
## 20107                              Health        64306
## 20108                              Health        69206
## 20109                              Health       120606
## 20110                              Health       121106
## 20111                              Health       103206
## 20112                              Health        57806
## 20113                              Health        57206
## 20114                              Health        57906
## 20115                              Health        57506
## 20128     Income/composition of resources       141706
## 20129     Income/composition of resources       103606
## 20155                             Poverty       153706
## 20162           Trade and financial flows       133206
## 20163           Trade and financial flows        53506
## 20164           Trade and financial flows        99106
## 20165           Trade and financial flows       111306
## 20166           Trade and financial flows        52606
## 20168  Work, employment and vulnerability       150606
## 20169  Work, employment and vulnerability       150706
## 20170  Work, employment and vulnerability       148306
## 20175  Work, employment and vulnerability       140606
## 20176  Work, employment and vulnerability       110906
## 20177  Work, employment and vulnerability        43006
## 20181                          Demography       122006
## 20182                          Demography        63106
## 20183                          Demography       132706
## 20184                          Demography       132806
## 20186                          Demography        44206
## 20187                          Demography        45106
## 20188                          Demography       121206
## 20190                           Education        69706
## 20235                              Gender       175106
## 20237                              Gender       169706
## 20240                              Gender       169806
## 20242                              Health        58006
## 20245                              Health        69206
## 20246                              Health       120606
## 20247                              Health       121106
## 20248                              Health       103206
## 20249                              Health        57806
## 20250                              Health        57206
## 20251                              Health        57906
## 20252                              Health        57506
## 20265     Income/composition of resources       141706
## 20266     Income/composition of resources       103606
## 20285                             Poverty       153706
## 20298           Trade and financial flows       133206
## 20304  Work, employment and vulnerability       150606
## 20305  Work, employment and vulnerability       150706
## 20306  Work, employment and vulnerability       148306
## 20311  Work, employment and vulnerability       140606
## 20312  Work, employment and vulnerability       110906
## 20313  Work, employment and vulnerability        43006
## 20316                   Composite indices       137506
## 20318                          Demography       122006
## 20319                          Demography        63106
## 20320                          Demography       132706
## 20321                          Demography       132806
## 20323                          Demography        44206
## 20324                          Demography        45106
## 20325                          Demography       121206
## 20326                           Education       103706
## 20327                           Education        69706
## 20335                           Education       103006
## 20336                           Education        24106
## 20337                           Education        24206
## 20339                           Education        23906
## 20340                           Education        24006
## 20370                              Gender       175106
## 20372                              Gender       169706
## 20375                              Gender       169806
## 20378                              Health        58006
## 20379                              Health        64406
## 20380                              Health        64306
## 20381                              Health        69206
## 20382                              Health       120606
## 20383                              Health       121106
## 20384                              Health       103206
## 20386                              Health        57806
## 20387                              Health        57206
## 20388                              Health        57906
## 20389                              Health        57506
## 20402     Income/composition of resources       141706
## 20403     Income/composition of resources       103606
## 20428                             Poverty       153706
## 20439           Trade and financial flows       133206
## 20440           Trade and financial flows        53506
## 20441           Trade and financial flows        99106
## 20442           Trade and financial flows       111306
## 20443           Trade and financial flows        52606
## 20445  Work, employment and vulnerability       150606
## 20446  Work, employment and vulnerability       150706
## 20447  Work, employment and vulnerability       148306
## 20452  Work, employment and vulnerability       140606
## 20453  Work, employment and vulnerability       110906
## 20454  Work, employment and vulnerability        43006
## 20457                   Composite indices       137506
## 20459                          Demography       122006
## 20460                          Demography        63106
## 20461                          Demography       132706
## 20462                          Demography       132806
## 20464                          Demography        44206
## 20465                          Demography        45106
## 20466                          Demography       121206
## 20467                           Education       103706
## 20468                           Education        69706
## 20477                           Education       103006
## 20478                           Education        24106
## 20479                           Education        24206
## 20481                           Education        23906
## 20482                           Education        24006
## 20511                              Gender       175106
## 20513                              Gender       169706
## 20516                              Gender       169806
## 20519                              Health        58006
## 20520                              Health        64406
## 20521                              Health        64306
## 20522                              Health        69206
## 20523                              Health       120606
## 20524                              Health       121106
## 20525                              Health       103206
## 20527                              Health        57806
## 20528                              Health        57206
## 20529                              Health        57906
## 20530                              Health        57506
## 20543     Income/composition of resources       141706
## 20544     Income/composition of resources       103606
## 20575                             Poverty       153706
## 20587           Trade and financial flows       133206
## 20588           Trade and financial flows        53506
## 20589           Trade and financial flows        99106
## 20590           Trade and financial flows       111306
## 20591           Trade and financial flows        52606
## 20593  Work, employment and vulnerability       150606
## 20594  Work, employment and vulnerability       150706
## 20595  Work, employment and vulnerability       148306
## 20600  Work, employment and vulnerability       140606
## 20601  Work, employment and vulnerability       110906
## 20602  Work, employment and vulnerability        43006
## 20607                          Demography       122006
## 20608                          Demography        63106
## 20609                          Demography       132706
## 20610                          Demography       132806
## 20612                          Demography        44206
## 20613                          Demography        45106
## 20614                          Demography       121206
## 20616                           Education        69706
## 20659                              Gender       175106
## 20661                              Gender       169706
## 20666                              Gender       169806
## 20669                              Health        64406
## 20670                              Health        64306
## 20671                              Health        69206
## 20672                              Health       120606
## 20673                              Health       121106
## 20674                              Health       103206
## 20676                              Health        57806
## 20677                              Health        57206
## 20678                              Health        57906
## 20679                              Health        57506
## 20692     Income/composition of resources       141706
## 20693     Income/composition of resources       103606
## 20724                             Poverty       153706
## 20734           Trade and financial flows       133206
## 20735           Trade and financial flows        53506
## 20736           Trade and financial flows        99106
## 20740  Work, employment and vulnerability       150606
## 20741  Work, employment and vulnerability       150706
## 20742  Work, employment and vulnerability       148306
## 20747  Work, employment and vulnerability       140606
## 20748  Work, employment and vulnerability       110906
## 20749  Work, employment and vulnerability        43006
## 20751                   Composite indices       137506
## 20753                          Demography       122006
## 20754                          Demography        63106
## 20755                          Demography       132706
## 20756                          Demography       132806
## 20758                          Demography        44206
## 20759                          Demography        45106
## 20760                          Demography       121206
## 20761                           Education       103706
## 20762                           Education        69706
## 20770                           Education       103006
## 20771                           Education        24106
## 20772                           Education        24206
## 20774                           Education        23906
## 20775                           Education        24006
## 20803                              Gender       175106
## 20805                              Gender       169706
## 20809                              Gender       169806
## 20812                              Health        58006
## 20813                              Health        64406
## 20814                              Health        64306
## 20815                              Health        69206
## 20816                              Health       120606
## 20817                              Health       121106
## 20818                              Health       103206
## 20820                              Health        57806
## 20821                              Health        57206
## 20822                              Health        57906
## 20823                              Health        57506
## 20836     Income/composition of resources       141706
## 20837     Income/composition of resources       103606
## 20868                             Poverty       153706
## 20880           Trade and financial flows       133206
## 20881           Trade and financial flows        53506
## 20882           Trade and financial flows        99106
## 20883           Trade and financial flows       111306
## 20884           Trade and financial flows        52606
## 20885  Work, employment and vulnerability       150606
## 20886  Work, employment and vulnerability       150706
## 20887  Work, employment and vulnerability       148306
## 20892  Work, employment and vulnerability       140606
## 20893  Work, employment and vulnerability       110906
## 20894  Work, employment and vulnerability        43006
## 20897                   Composite indices       137506
## 20899                          Demography       122006
## 20900                          Demography        63106
## 20901                          Demography       132706
## 20902                          Demography       132806
## 20904                          Demography        44206
## 20905                          Demography        45106
## 20906                          Demography       121206
## 20907                           Education       103706
## 20908                           Education        69706
## 20909                           Education       123306
## 20910                           Education       123406
## 20916                           Education       103006
## 20917                           Education        24106
## 20918                           Education        24206
## 20920                           Education        23906
## 20921                           Education        24006
## 20949                              Gender       175106
## 20951                              Gender       169706
## 20954                              Gender       169806
## 20957                              Health        58006
## 20958                              Health        64406
## 20959                              Health        64306
## 20960                              Health        69206
## 20961                              Health       120606
## 20962                              Health       121106
## 20963                              Health       103206
## 20965                              Health        57806
## 20966                              Health        57206
## 20967                              Health        57906
## 20968                              Health        57506
## 20981     Income/composition of resources       141706
## 20982     Income/composition of resources       103606
## 21001                             Poverty       153706
## 21012           Trade and financial flows       133206
## 21013           Trade and financial flows        53506
## 21014           Trade and financial flows        99106
## 21015           Trade and financial flows       111306
## 21016           Trade and financial flows        52606
## 21017  Work, employment and vulnerability       150606
## 21018  Work, employment and vulnerability       150706
## 21019  Work, employment and vulnerability       148306
## 21024  Work, employment and vulnerability       140606
## 21025  Work, employment and vulnerability       110906
## 21026  Work, employment and vulnerability        43006
## 21029                   Composite indices       137506
## 21031                          Demography       122006
## 21032                          Demography        63106
## 21033                          Demography       132706
## 21034                          Demography       132806
## 21036                          Demography        44206
## 21037                          Demography        45106
## 21038                          Demography       121206
## 21039                           Education       103706
## 21040                           Education        69706
## 21049                           Education       103006
## 21050                           Education        24106
## 21051                           Education        24206
## 21053                           Education        23906
## 21054                           Education        24006
## 21087                              Gender       175106
## 21089                              Gender       169706
## 21092                              Gender       169806
## 21095                              Health        58006
## 21096                              Health        64406
## 21097                              Health        64306
## 21098                              Health        69206
## 21099                              Health       120606
## 21100                              Health       121106
## 21101                              Health       103206
## 21103                              Health        57806
## 21104                              Health        57206
## 21105                              Health        57906
## 21106                              Health        57506
## 21119     Income/composition of resources       141706
## 21120     Income/composition of resources       103606
## 21152                             Poverty       153706
## 21165           Trade and financial flows       133206
## 21166           Trade and financial flows        53506
## 21167           Trade and financial flows        99106
## 21168           Trade and financial flows       111306
## 21169           Trade and financial flows        52606
## 21171  Work, employment and vulnerability       150606
## 21172  Work, employment and vulnerability       150706
## 21173  Work, employment and vulnerability       148306
## 21178  Work, employment and vulnerability       140606
## 21179  Work, employment and vulnerability       110906
## 21180  Work, employment and vulnerability        43006
## 21183                   Composite indices       137506
## 21185                          Demography       122006
## 21186                          Demography        63106
## 21187                          Demography       132706
## 21188                          Demography       132806
## 21190                          Demography        44206
## 21191                          Demography        45106
## 21192                          Demography       121206
## 21193                           Education       103706
## 21194                           Education        69706
## 21195                           Education       123306
## 21196                           Education       123406
## 21203                           Education       103006
## 21204                           Education        24106
## 21205                           Education        24206
## 21207                           Education        23906
## 21208                           Education        24006
## 21236                              Gender       175106
## 21238                              Gender       169706
## 21239                              Gender       169806
## 21242                              Health        64406
## 21243                              Health        64306
## 21244                              Health        69206
## 21245                              Health       120606
## 21246                              Health       121106
## 21247                              Health       103206
## 21248                              Health        57806
## 21249                              Health        57206
## 21250                              Health        57906
## 21251                              Health        57506
## 21263     Income/composition of resources       141706
## 21264     Income/composition of resources       103606
## 21273                             Poverty       153706
## 21282           Trade and financial flows       133206
## 21284           Trade and financial flows        99106
## 21286  Work, employment and vulnerability       150606
## 21287  Work, employment and vulnerability       150706
## 21288  Work, employment and vulnerability       148306
## 21293  Work, employment and vulnerability       140606
## 21294  Work, employment and vulnerability       110906
## 21295  Work, employment and vulnerability        43006
## 21298                   Composite indices       137506
## 21300                          Demography       122006
## 21301                          Demography        63106
## 21302                          Demography       132706
## 21303                          Demography       132806
## 21305                          Demography        44206
## 21306                          Demography        45106
## 21307                          Demography       121206
## 21308                           Education       103706
## 21309                           Education        69706
## 21310                           Education       123306
## 21311                           Education       123406
## 21318                           Education       103006
## 21319                           Education        24106
## 21320                           Education        24206
## 21322                           Education        23906
## 21323                           Education        24006
## 21353                              Gender       175106
## 21355                              Gender       169706
## 21359                              Gender       169806
## 21361                              Health        58006
## 21362                              Health        64406
## 21363                              Health        64306
## 21364                              Health        69206
## 21365                              Health       120606
## 21366                              Health       121106
## 21367                              Health       103206
## 21368                              Health        57806
## 21369                              Health        57206
## 21370                              Health        57906
## 21371                              Health        57506
## 21384     Income/composition of resources       141706
## 21385     Income/composition of resources       103606
## 21415           Trade and financial flows       133206
## 21416           Trade and financial flows        53506
## 21419  Work, employment and vulnerability       150606
## 21420  Work, employment and vulnerability       150706
## 21421  Work, employment and vulnerability       148306
## 21426  Work, employment and vulnerability       140606
## 21427  Work, employment and vulnerability       110906
## 21428  Work, employment and vulnerability        43006
## 21433                          Demography       122006
## 21434                          Demography        63106
## 21435                          Demography       132706
## 21436                          Demography       132806
## 21438                          Demography        44206
## 21439                          Demography        45106
## 21440                          Demography       121206
## 21442                           Education        69706
## 21443                           Education       123306
## 21444                           Education       123406
## 21484                              Gender       175106
## 21486                              Gender       169706
## 21490                              Gender       169806
## 21493                              Health        58006
## 21494                              Health        64406
## 21495                              Health        64306
## 21496                              Health        69206
## 21497                              Health       120606
## 21498                              Health       121106
## 21499                              Health       103206
## 21501                              Health        57806
## 21502                              Health        57206
## 21503                              Health        57906
## 21504                              Health        57506
## 21517     Income/composition of resources       141706
## 21518     Income/composition of resources       103606
## 21549                             Poverty       153706
## 21562           Trade and financial flows       133206
## 21563           Trade and financial flows        53506
## 21564           Trade and financial flows        99106
## 21566           Trade and financial flows        52606
## 21568  Work, employment and vulnerability       150606
## 21569  Work, employment and vulnerability       150706
## 21570  Work, employment and vulnerability       148306
## 21575  Work, employment and vulnerability       140606
## 21576  Work, employment and vulnerability       110906
## 21577  Work, employment and vulnerability        43006
## 21579                   Composite indices       137506
## 21581                          Demography       122006
## 21582                          Demography        63106
## 21583                          Demography       132706
## 21584                          Demography       132806
## 21586                          Demography        44206
## 21587                          Demography        45106
## 21588                          Demography       121206
## 21589                           Education       103706
## 21590                           Education        69706
## 21591                           Education       123306
## 21592                           Education       123406
## 21599                           Education       103006
## 21600                           Education        24106
## 21601                           Education        24206
## 21603                           Education        23906
## 21604                           Education        24006
## 21632                              Gender       175106
## 21634                              Gender       169706
## 21637                              Gender       169806
## 21640                              Health        58006
## 21641                              Health        64406
## 21642                              Health        64306
## 21643                              Health        69206
## 21644                              Health       120606
## 21645                              Health       121106
## 21646                              Health       103206
## 21648                              Health        57806
## 21649                              Health        57206
## 21650                              Health        57906
## 21651                              Health        57506
## 21664     Income/composition of resources       141706
## 21665     Income/composition of resources       103606
## 21697                             Poverty       153706
## 21708           Trade and financial flows       133206
## 21709           Trade and financial flows        53506
## 21710           Trade and financial flows        99106
## 21711           Trade and financial flows       111306
## 21714  Work, employment and vulnerability       150606
## 21715  Work, employment and vulnerability       150706
## 21716  Work, employment and vulnerability       148306
## 21721  Work, employment and vulnerability       140606
## 21722  Work, employment and vulnerability       110906
## 21723  Work, employment and vulnerability        43006
## 21726                   Composite indices       137506
## 21728                          Demography       122006
## 21729                          Demography        63106
## 21730                          Demography       132706
## 21731                          Demography       132806
## 21733                          Demography        44206
## 21734                          Demography        45106
## 21735                          Demography       121206
## 21736                           Education       103706
## 21737                           Education        69706
## 21738                           Education       123306
## 21746                           Education       103006
## 21747                           Education        24106
## 21748                           Education        24206
## 21750                           Education        23906
## 21751                           Education        24006
## 21779                              Gender       175106
## 21781                              Gender       169706
## 21786                              Gender       169806
## 21789                              Health        58006
## 21790                              Health        64406
## 21791                              Health        64306
## 21792                              Health        69206
## 21793                              Health       120606
## 21794                              Health       121106
## 21795                              Health       103206
## 21797                              Health        57806
## 21798                              Health        57206
## 21799                              Health        57906
## 21800                              Health        57506
## 21813     Income/composition of resources       141706
## 21814     Income/composition of resources       103606
## 21845                             Poverty       153706
## 21857           Trade and financial flows       133206
## 21858           Trade and financial flows        53506
## 21859           Trade and financial flows        99106
## 21860           Trade and financial flows       111306
## 21861           Trade and financial flows        52606
## 21863  Work, employment and vulnerability       150606
## 21864  Work, employment and vulnerability       150706
## 21865  Work, employment and vulnerability       148306
## 21870  Work, employment and vulnerability       140606
## 21871  Work, employment and vulnerability       110906
## 21872  Work, employment and vulnerability        43006
## 21875                   Composite indices       137506
## 21877                          Demography       122006
## 21878                          Demography        63106
## 21879                          Demography       132706
## 21880                          Demography       132806
## 21882                          Demography        44206
## 21883                          Demography        45106
## 21884                          Demography       121206
## 21885                           Education       103706
## 21886                           Education        69706
## 21887                           Education       123306
## 21888                           Education       123406
## 21895                           Education       103006
## 21896                           Education        24106
## 21897                           Education        24206
## 21899                           Education        23906
## 21900                           Education        24006
## 21927                              Gender       175106
## 21929                              Gender       169706
## 21933                              Gender       169806
## 21936                              Health        58006
## 21937                              Health        64406
## 21938                              Health        64306
## 21939                              Health        69206
## 21940                              Health       120606
## 21941                              Health       121106
## 21942                              Health       103206
## 21944                              Health        57806
## 21945                              Health        57206
## 21946                              Health        57906
## 21947                              Health        57506
## 21960     Income/composition of resources       141706
## 21961     Income/composition of resources       103606
## 21992                             Poverty       153706
## 22003           Trade and financial flows       133206
## 22004           Trade and financial flows        53506
## 22005           Trade and financial flows        99106
## 22006           Trade and financial flows       111306
## 22007           Trade and financial flows        52606
## 22009  Work, employment and vulnerability       150606
## 22010  Work, employment and vulnerability       150706
## 22011  Work, employment and vulnerability       148306
## 22015  Work, employment and vulnerability       140606
## 22016  Work, employment and vulnerability       110906
## 22017  Work, employment and vulnerability        43006
## 22021                          Demography       122006
## 22022                          Demography        63106
## 22023                          Demography       132706
## 22024                          Demography       132806
## 22026                          Demography        44206
## 22027                          Demography        45106
## 22028                          Demography       121206
## 22030                           Education        69706
## 22071                              Gender       175106
## 22073                              Gender       169706
## 22077                              Gender       169806
## 22080                              Health        58006
## 22081                              Health        64406
## 22082                              Health        64306
## 22083                              Health        69206
## 22084                              Health       120606
## 22085                              Health       121106
## 22086                              Health       103206
## 22088                              Health        57806
## 22089                              Health        57206
## 22090                              Health        57906
## 22091                              Health        57506
## 22104     Income/composition of resources       141706
## 22105     Income/composition of resources       103606
## 22136                             Poverty       153706
## 22147           Trade and financial flows       133206
## 22148           Trade and financial flows        53506
## 22149           Trade and financial flows        99106
## 22150           Trade and financial flows       111306
## 22153  Work, employment and vulnerability       150606
## 22154  Work, employment and vulnerability       150706
## 22155  Work, employment and vulnerability       148306
## 22160  Work, employment and vulnerability       140606
## 22161  Work, employment and vulnerability       110906
## 22162  Work, employment and vulnerability        43006
## 22164                   Composite indices       137506
## 22166                          Demography       122006
## 22167                          Demography        63106
## 22168                          Demography       132706
## 22169                          Demography       132806
## 22171                          Demography        44206
## 22172                          Demography        45106
## 22173                          Demography       121206
## 22174                           Education       103706
## 22175                           Education        69706
## 22176                           Education       123306
## 22177                           Education       123406
## 22184                           Education       103006
## 22185                           Education        24106
## 22186                           Education        24206
## 22188                           Education        23906
## 22189                           Education        24006
## 22219                              Gender       175106
## 22221                              Gender       169706
## 22223                              Gender       169806
## 22226                              Health        58006
## 22227                              Health        64406
## 22228                              Health        64306
## 22229                              Health        69206
## 22230                              Health       120606
## 22231                              Health       121106
## 22232                              Health       103206
## 22233                              Health        57806
## 22234                              Health        57206
## 22235                              Health        57906
## 22236                              Health        57506
## 22249     Income/composition of resources       141706
## 22250     Income/composition of resources       103606
## 22268                             Poverty       153706
## 22280           Trade and financial flows       133206
## 22281           Trade and financial flows        53506
## 22282           Trade and financial flows        99106
## 22283           Trade and financial flows       111306
## 22286  Work, employment and vulnerability       150606
## 22287  Work, employment and vulnerability       150706
## 22288  Work, employment and vulnerability       148306
## 22293  Work, employment and vulnerability       140606
## 22294  Work, employment and vulnerability       110906
## 22295  Work, employment and vulnerability        43006
## 22298                   Composite indices       137506
## 22300                          Demography       122006
## 22301                          Demography        63106
## 22302                          Demography       132706
## 22303                          Demography       132806
## 22305                          Demography        44206
## 22306                          Demography        45106
## 22307                          Demography       121206
## 22308                           Education       103706
## 22309                           Education        69706
## 22310                           Education       123306
## 22311                           Education       123406
## 22318                           Education       103006
## 22319                           Education        24106
## 22320                           Education        24206
## 22322                           Education        23906
## 22323                           Education        24006
## 22352                              Gender       175106
## 22354                              Gender       169706
## 22356                              Gender       169806
## 22359                              Health        64406
## 22360                              Health        64306
## 22361                              Health        69206
## 22362                              Health       120606
## 22363                              Health       121106
## 22364                              Health       103206
## 22366                              Health        57806
## 22367                              Health        57206
## 22368                              Health        57906
## 22369                              Health        57506
## 22381     Income/composition of resources       141706
## 22382     Income/composition of resources       103606
## 22413                             Poverty       153706
## 22424           Trade and financial flows       133206
## 22425           Trade and financial flows        53506
## 22426           Trade and financial flows        99106
## 22427           Trade and financial flows       111306
## 22428           Trade and financial flows        52606
## 22429  Work, employment and vulnerability       150606
## 22430  Work, employment and vulnerability       150706
## 22431  Work, employment and vulnerability       148306
## 22436  Work, employment and vulnerability       140606
## 22437  Work, employment and vulnerability       110906
## 22438  Work, employment and vulnerability        43006
## 22440                   Composite indices       137506
## 22442                          Demography       122006
## 22443                          Demography        63106
## 22444                          Demography       132706
## 22445                          Demography       132806
## 22447                          Demography        44206
## 22448                          Demography        45106
## 22449                          Demography       121206
## 22450                           Education       103706
## 22451                           Education        69706
## 22452                           Education       123306
## 22453                           Education       123406
## 22460                           Education       103006
## 22461                           Education        24106
## 22462                           Education        24206
## 22464                           Education        23906
## 22465                           Education        24006
## 22498                              Gender       175106
## 22500                              Gender       169706
## 22503                              Gender       169806
## 22506                              Health        58006
## 22507                              Health        64406
## 22508                              Health        64306
## 22509                              Health        69206
## 22510                              Health       120606
## 22511                              Health       121106
## 22512                              Health       103206
## 22514                              Health        57806
## 22515                              Health        57206
## 22516                              Health        57906
## 22517                              Health        57506
## 22530     Income/composition of resources       141706
## 22531     Income/composition of resources       103606
## 22563                             Poverty       153706
## 22576           Trade and financial flows       133206
## 22577           Trade and financial flows        53506
## 22578           Trade and financial flows        99106
## 22579           Trade and financial flows       111306
## 22580           Trade and financial flows        52606
## 22582  Work, employment and vulnerability       150606
## 22583  Work, employment and vulnerability       150706
## 22584  Work, employment and vulnerability       148306
## 22589  Work, employment and vulnerability       140606
## 22590  Work, employment and vulnerability       110906
## 22591  Work, employment and vulnerability        43006
## 22594                   Composite indices       137506
## 22596                          Demography       122006
## 22597                          Demography        63106
## 22598                          Demography       132706
## 22599                          Demography       132806
## 22601                          Demography        44206
## 22602                          Demography        45106
## 22603                          Demography       121206
## 22604                           Education       103706
## 22605                           Education        69706
## 22606                           Education       123306
## 22607                           Education       123406
## 22614                           Education       103006
## 22615                           Education        24106
## 22616                           Education        24206
## 22618                           Education        23906
## 22619                           Education        24006
## 22646                              Gender       175106
## 22648                              Gender       169706
## 22651                              Gender       169806
## 22654                              Health        58006
## 22655                              Health        64406
## 22656                              Health        64306
## 22657                              Health        69206
## 22658                              Health       120606
## 22659                              Health       121106
## 22660                              Health       103206
## 22662                              Health        57806
## 22663                              Health        57206
## 22664                              Health        57906
## 22665                              Health        57506
## 22678     Income/composition of resources       141706
## 22679     Income/composition of resources       103606
## 22710                             Poverty       153706
## 22722           Trade and financial flows       133206
## 22723           Trade and financial flows        53506
## 22724           Trade and financial flows        99106
## 22725           Trade and financial flows       111306
## 22726           Trade and financial flows        52606
## 22728  Work, employment and vulnerability       150606
## 22729  Work, employment and vulnerability       150706
## 22730  Work, employment and vulnerability       148306
## 22735  Work, employment and vulnerability       140606
## 22736  Work, employment and vulnerability       110906
## 22737  Work, employment and vulnerability        43006
## 22740                   Composite indices       137506
## 22742                          Demography       122006
## 22743                          Demography        63106
## 22744                          Demography       132706
## 22745                          Demography       132806
## 22747                          Demography        44206
## 22748                          Demography        45106
## 22749                          Demography       121206
## 22750                           Education       103706
## 22751                           Education        69706
## 22760                           Education       103006
## 22761                           Education        24106
## 22762                           Education        24206
## 22764                           Education        23906
## 22765                           Education        24006
## 22788                              Gender       123506
## 22789                              Gender       123606
## 22799                              Gender       175106
## 22801                              Gender       169706
## 22804                              Gender       169806
## 22807                              Health        58006
## 22808                              Health        64406
## 22809                              Health        64306
## 22810                              Health        69206
## 22811                              Health       120606
## 22812                              Health       121106
## 22813                              Health       103206
## 22815                              Health        57806
## 22816                              Health        57206
## 22817                              Health        57906
## 22818                              Health        57506
## 22831     Income/composition of resources       141706
## 22832     Income/composition of resources       103606
## 22851                             Poverty       153706
## 22863           Trade and financial flows       133206
## 22864           Trade and financial flows        53506
## 22865           Trade and financial flows        99106
## 22866           Trade and financial flows       111306
## 22867           Trade and financial flows        52606
## 22869  Work, employment and vulnerability       150606
## 22870  Work, employment and vulnerability       150706
## 22871  Work, employment and vulnerability       148306
## 22876  Work, employment and vulnerability       140606
## 22877  Work, employment and vulnerability       110906
## 22878  Work, employment and vulnerability        43006
## 22881                   Composite indices       137506
## 22883                          Demography       122006
## 22884                          Demography        63106
## 22885                          Demography       132706
## 22886                          Demography       132806
## 22888                          Demography        44206
## 22889                          Demography        45106
## 22890                          Demography       121206
## 22891                           Education       103706
## 22892                           Education        69706
## 22893                           Education       123306
## 22894                           Education       123406
## 22901                           Education       103006
## 22902                           Education        24106
## 22903                           Education        24206
## 22905                           Education        23906
## 22906                           Education        24006
## 22933                              Gender       175106
## 22935                              Gender       169706
## 22937                              Gender       169806
## 22938                              Health        58006
## 22939                              Health        64406
## 22940                              Health        64306
## 22941                              Health        69206
## 22942                              Health       120606
## 22943                              Health       121106
## 22944                              Health       103206
## 22945                              Health        57806
## 22946                              Health        57206
## 22947                              Health        57906
## 22948                              Health        57506
## 22958     Income/composition of resources       141706
## 22959     Income/composition of resources       103606
## 22970                             Poverty       153706
## 22979           Trade and financial flows       133206
## 22980           Trade and financial flows        99106
## 22981  Work, employment and vulnerability       150606
## 22982  Work, employment and vulnerability       150706
## 22983  Work, employment and vulnerability       148306
## 22987  Work, employment and vulnerability       140606
## 22988  Work, employment and vulnerability       110906
## 22989  Work, employment and vulnerability        43006
## 22991                   Composite indices       137506
## 22993                          Demography       122006
## 22994                          Demography        63106
## 22995                          Demography       132706
## 22996                          Demography       132806
## 22998                          Demography        44206
## 22999                          Demography        45106
## 23000                          Demography       121206
## 23001                           Education       103706
## 23002                           Education        69706
## 23003                           Education       123306
## 23004                           Education       123406
## 23011                           Education       103006
## 23012                           Education        24106
## 23013                           Education        24206
## 23015                           Education        23906
## 23016                           Education        24006
## 23047                              Gender       175106
## 23049                              Gender       169706
## 23053                              Gender       169806
## 23055                              Health        64406
## 23056                              Health        64306
## 23057                              Health        69206
## 23058                              Health       120606
## 23059                              Health       121106
## 23060                              Health       103206
## 23061                              Health        57806
## 23062                              Health        57206
## 23063                              Health        57906
## 23064                              Health        57506
## 23077     Income/composition of resources       141706
## 23078     Income/composition of resources       103606
## 23108           Trade and financial flows       133206
## 23109           Trade and financial flows        53506
## 23110           Trade and financial flows        99106
## 23111           Trade and financial flows       111306
## 23112           Trade and financial flows        52606
## 23113  Work, employment and vulnerability       150606
## 23114  Work, employment and vulnerability       150706
## 23115  Work, employment and vulnerability       148306
## 23120  Work, employment and vulnerability       140606
## 23121  Work, employment and vulnerability       110906
## 23122  Work, employment and vulnerability        43006
## 23126                   Composite indices       137506
## 23128                          Demography       122006
## 23129                          Demography        63106
## 23130                          Demography       132706
## 23131                          Demography       132806
## 23133                          Demography        44206
## 23134                          Demography        45106
## 23135                          Demography       121206
## 23136                           Education       103706
## 23137                           Education        69706
## 23138                           Education       123306
## 23139                           Education       123406
## 23145                           Education       103006
## 23146                           Education        24106
## 23147                           Education        24206
## 23149                           Education        23906
## 23150                           Education        24006
## 23180                              Gender       175106
## 23182                              Gender       169706
## 23186                              Gender       169806
## 23188                              Health        64406
## 23189                              Health        64306
## 23190                              Health        69206
## 23191                              Health       120606
## 23192                              Health       121106
## 23193                              Health       103206
## 23194                              Health        57806
## 23195                              Health        57206
## 23196                              Health        57906
## 23197                              Health        57506
## 23210     Income/composition of resources       141706
## 23211     Income/composition of resources       103606
## 23241           Trade and financial flows       133206
## 23242           Trade and financial flows        53506
## 23243           Trade and financial flows       111306
## 23245  Work, employment and vulnerability       150606
## 23246  Work, employment and vulnerability       150706
## 23247  Work, employment and vulnerability       148306
## 23252  Work, employment and vulnerability       140606
## 23253  Work, employment and vulnerability       110906
## 23254  Work, employment and vulnerability        43006
## 23259                          Demography       122006
## 23260                          Demography        63106
## 23261                          Demography       132706
## 23262                          Demography       132806
## 23264                          Demography        44206
## 23265                          Demography        45106
## 23266                          Demography       121206
## 23268                           Education        69706
## 23269                           Education       123306
## 23270                           Education       123406
## 23300                              Gender       175106
## 23302                              Gender       169706
## 23304                              Gender       169806
## 23307                              Health        58006
## 23308                              Health        64406
## 23309                              Health        64306
## 23310                              Health        69206
## 23311                              Health       120606
## 23312                              Health       121106
## 23313                              Health       103206
## 23315                              Health        57806
## 23316                              Health        57206
## 23317                              Health        57906
## 23318                              Health        57506
## 23331     Income/composition of resources       141706
## 23332     Income/composition of resources       103606
## 23374           Trade and financial flows        53506
## 23376           Trade and financial flows        52606
## 23377  Work, employment and vulnerability       150606
## 23378  Work, employment and vulnerability       150706
## 23379  Work, employment and vulnerability       148306
## 23384  Work, employment and vulnerability       140606
## 23385  Work, employment and vulnerability       110906
## 23386  Work, employment and vulnerability        43006
## 23389                          Demography        44206
## 23390                          Demography        45106
## 23392                           Education        69706
## 23419                              Health        64406
## 23420                              Health        64306
## 23421                              Health        69206
## 23422                              Health       103206
## 23424                              Health        57206
## 23426                              Health        57506
## 23435     Income/composition of resources       141706
## 23436     Income/composition of resources       103606
## 23445           Trade and financial flows       133206
## 23446           Trade and financial flows        53506
## 23447           Trade and financial flows        99106
## 23448           Trade and financial flows       111306
## 23449           Trade and financial flows        52606
## 23452                   Composite indices       137506
## 23454                          Demography       122006
## 23455                          Demography        63106
## 23456                          Demography       132706
## 23457                          Demography       132806
## 23459                          Demography        44206
## 23460                          Demography        45106
## 23461                          Demography       121206
## 23462                           Education       103706
## 23463                           Education        69706
## 23472                           Education       103006
## 23473                           Education        24106
## 23474                           Education        24206
## 23476                           Education        23906
## 23477                           Education        24006
## 23511                              Gender       175106
## 23513                              Gender       169706
## 23517                              Gender       169806
## 23520                              Health        58006
## 23521                              Health        64406
## 23522                              Health        64306
## 23523                              Health        69206
## 23524                              Health       120606
## 23525                              Health       121106
## 23526                              Health       103206
## 23528                              Health        57806
## 23529                              Health        57206
## 23530                              Health        57906
## 23531                              Health        57506
## 23544     Income/composition of resources       141706
## 23545     Income/composition of resources       103606
## 23576                             Poverty       153706
## 23588           Trade and financial flows       133206
## 23589           Trade and financial flows        53506
## 23590           Trade and financial flows        99106
## 23591           Trade and financial flows       111306
## 23592           Trade and financial flows        52606
## 23594  Work, employment and vulnerability       150606
## 23595  Work, employment and vulnerability       150706
## 23596  Work, employment and vulnerability       148306
## 23601  Work, employment and vulnerability       140606
## 23602  Work, employment and vulnerability       110906
## 23603  Work, employment and vulnerability        43006
## 23606                   Composite indices       137506
## 23608                          Demography       122006
## 23609                          Demography        63106
## 23610                          Demography       132706
## 23611                          Demography       132806
## 23613                          Demography        44206
## 23614                          Demography        45106
## 23615                          Demography       121206
## 23616                           Education       103706
## 23617                           Education        69706
## 23626                           Education       103006
## 23627                           Education        24106
## 23628                           Education        24206
## 23630                           Education        23906
## 23631                           Education        24006
## 23662                              Gender       175106
## 23664                              Gender       169706
## 23668                              Gender       169806
## 23671                              Health        58006
## 23672                              Health        64406
## 23673                              Health        64306
## 23674                              Health        69206
## 23675                              Health       120606
## 23676                              Health       121106
## 23677                              Health       103206
## 23679                              Health        57806
## 23680                              Health        57206
## 23681                              Health        57906
## 23682                              Health        57506
## 23695     Income/composition of resources       141706
## 23696     Income/composition of resources       103606
## 23728                             Poverty       153706
## 23741           Trade and financial flows       133206
## 23742           Trade and financial flows        53506
## 23743           Trade and financial flows        99106
## 23745           Trade and financial flows        52606
## 23746  Work, employment and vulnerability       150606
## 23747  Work, employment and vulnerability       150706
## 23748  Work, employment and vulnerability       148306
## 23753  Work, employment and vulnerability       140606
## 23754  Work, employment and vulnerability       110906
## 23755  Work, employment and vulnerability        43006
## 23758                   Composite indices       137506
## 23760                          Demography       122006
## 23761                          Demography        63106
## 23762                          Demography       132706
## 23763                          Demography       132806
## 23765                          Demography        44206
## 23766                          Demography        45106
## 23767                          Demography       121206
## 23768                           Education       103706
## 23769                           Education        69706
## 23770                           Education       123306
## 23771                           Education       123406
## 23778                           Education       103006
## 23779                           Education        24106
## 23780                           Education        24206
## 23782                           Education        23906
## 23783                           Education        24006
## 23813                              Gender       175106
## 23815                              Gender       169706
## 23819                              Gender       169806
## 23822                              Health        58006
## 23823                              Health        64406
## 23824                              Health        64306
## 23825                              Health        69206
## 23826                              Health       120606
## 23827                              Health       121106
## 23828                              Health       103206
## 23829                              Health        57806
## 23830                              Health        57206
## 23831                              Health        57906
## 23832                              Health        57506
## 23845     Income/composition of resources       141706
## 23846     Income/composition of resources       103606
## 23878                             Poverty       153706
## 23891           Trade and financial flows       133206
## 23892           Trade and financial flows        53506
## 23893           Trade and financial flows        99106
## 23894           Trade and financial flows       111306
## 23895           Trade and financial flows        52606
## 23897  Work, employment and vulnerability       150606
## 23898  Work, employment and vulnerability       150706
## 23899  Work, employment and vulnerability       148306
## 23904  Work, employment and vulnerability       140606
## 23905  Work, employment and vulnerability       110906
## 23906  Work, employment and vulnerability        43006
## 23909                   Composite indices       137506
## 23911                          Demography       122006
## 23912                          Demography        63106
## 23913                          Demography       132706
## 23914                          Demography       132806
## 23916                          Demography        44206
## 23917                          Demography        45106
## 23918                          Demography       121206
## 23919                           Education       103706
## 23920                           Education        69706
## 23929                           Education       103006
## 23930                           Education        24106
## 23931                           Education        24206
## 23933                           Education        23906
## 23934                           Education        24006
## 23965                              Gender       175106
## 23967                              Gender       169706
## 23971                              Gender       169806
## 23974                              Health        58006
## 23975                              Health        64406
## 23976                              Health        64306
## 23977                              Health        69206
## 23978                              Health       120606
## 23979                              Health       121106
## 23980                              Health       103206
## 23982                              Health        57806
## 23983                              Health        57206
## 23984                              Health        57906
## 23985                              Health        57506
## 23998     Income/composition of resources       141706
## 23999     Income/composition of resources       103606
## 24031                             Poverty       153706
## 24044           Trade and financial flows       133206
## 24045           Trade and financial flows        53506
## 24046           Trade and financial flows        99106
## 24048           Trade and financial flows        52606
## 24050  Work, employment and vulnerability       150606
## 24051  Work, employment and vulnerability       150706
## 24052  Work, employment and vulnerability       148306
## 24057  Work, employment and vulnerability       140606
## 24058  Work, employment and vulnerability       110906
## 24059  Work, employment and vulnerability        43006
## 24065                          Demography       122006
## 24066                          Demography        63106
## 24067                          Demography       132706
## 24068                          Demography       132806
## 24070                          Demography        44206
## 24071                          Demography        45106
## 24072                          Demography       121206
## 24074                           Education        69706
## 24075                           Education       123306
## 24076                           Education       123406
## 24119                              Gender       175106
## 24121                              Gender       169706
## 24125                              Gender       169806
## 24128                              Health        58006
## 24129                              Health        64406
## 24130                              Health        64306
## 24131                              Health        69206
## 24132                              Health       120606
## 24133                              Health       121106
## 24134                              Health       103206
## 24136                              Health        57806
## 24137                              Health        57206
## 24138                              Health        57906
## 24139                              Health        57506
## 24152     Income/composition of resources       141706
## 24153     Income/composition of resources       103606
## 24183                             Poverty       153706
## 24198           Trade and financial flows        99106
## 24199           Trade and financial flows       111306
## 24200           Trade and financial flows        52606
## 24202  Work, employment and vulnerability       150606
## 24203  Work, employment and vulnerability       150706
## 24204  Work, employment and vulnerability       148306
## 24209  Work, employment and vulnerability       140606
## 24210  Work, employment and vulnerability       110906
## 24211  Work, employment and vulnerability        43006
## 24214                   Composite indices       137506
## 24216                          Demography       122006
## 24217                          Demography        63106
## 24218                          Demography       132706
## 24219                          Demography       132806
## 24221                          Demography        44206
## 24222                          Demography        45106
## 24223                          Demography       121206
## 24224                           Education       103706
## 24225                           Education        69706
## 24233                           Education       103006
## 24234                           Education        24106
## 24235                           Education        24206
## 24237                           Education        23906
## 24238                           Education        24006
## 24265                              Gender       175106
## 24267                              Gender       169706
## 24270                              Gender       169806
## 24272                              Health        58006
## 24273                              Health        64406
## 24274                              Health        64306
## 24275                              Health        69206
## 24276                              Health       120606
## 24277                              Health       121106
## 24278                              Health       103206
## 24279                              Health        57806
## 24280                              Health        57206
## 24281                              Health        57906
## 24282                              Health        57506
## 24294     Income/composition of resources       141706
## 24295     Income/composition of resources       103606
## 24313                             Poverty       153706
## 24324           Trade and financial flows       133206
## 24325           Trade and financial flows        53506
## 24326           Trade and financial flows        99106
## 24327           Trade and financial flows       111306
## 24328           Trade and financial flows        52606
## 24329  Work, employment and vulnerability       150606
## 24330  Work, employment and vulnerability       150706
## 24331  Work, employment and vulnerability       148306
## 24336  Work, employment and vulnerability       140606
## 24337  Work, employment and vulnerability       110906
## 24338  Work, employment and vulnerability        43006
## 24341                   Composite indices       137506
## 24343                          Demography       122006
## 24344                          Demography        63106
## 24345                          Demography       132706
## 24346                          Demography       132806
## 24348                          Demography        44206
## 24349                          Demography        45106
## 24350                          Demography       121206
## 24351                           Education       103706
## 24352                           Education        69706
## 24353                           Education       123306
## 24354                           Education       123406
## 24360                           Education       103006
## 24361                           Education        24106
## 24362                           Education        24206
## 24364                           Education        23906
## 24365                           Education        24006
## 24396                              Gender       175106
## 24398                              Gender       169706
## 24402                              Gender       169806
## 24404                              Health        64406
## 24405                              Health        64306
## 24406                              Health        69206
## 24407                              Health       120606
## 24408                              Health       121106
## 24409                              Health       103206
## 24410                              Health        57806
## 24411                              Health        57206
## 24412                              Health        57906
## 24413                              Health        57506
## 24426     Income/composition of resources       141706
## 24427     Income/composition of resources       103606
## 24457           Trade and financial flows       133206
## 24458           Trade and financial flows        53506
## 24459           Trade and financial flows       111306
## 24460           Trade and financial flows        52606
## 24461  Work, employment and vulnerability       150606
## 24462  Work, employment and vulnerability       150706
## 24463  Work, employment and vulnerability       148306
## 24468  Work, employment and vulnerability       140606
## 24469  Work, employment and vulnerability       110906
## 24470  Work, employment and vulnerability        43006
## 24473                   Composite indices       137506
## 24475                          Demography       122006
## 24476                          Demography        63106
## 24477                          Demography       132706
## 24478                          Demography       132806
## 24480                          Demography        44206
## 24481                          Demography        45106
## 24482                          Demography       121206
## 24483                           Education       103706
## 24484                           Education        69706
## 24485                           Education       123306
## 24486                           Education       123406
## 24492                           Education       103006
## 24493                           Education        24106
## 24494                           Education        24206
## 24496                           Education        23906
## 24497                           Education        24006
## 24527                              Gender       175106
## 24529                              Gender       169706
## 24534                              Gender       169806
## 24536                              Health        58006
## 24537                              Health        64406
## 24538                              Health        64306
## 24539                              Health        69206
## 24540                              Health       120606
## 24541                              Health       121106
## 24542                              Health       103206
## 24543                              Health        57806
## 24544                              Health        57206
## 24545                              Health        57906
## 24546                              Health        57506
## 24559     Income/composition of resources       141706
## 24560     Income/composition of resources       103606
## 24590           Trade and financial flows       133206
## 24591           Trade and financial flows        53506
## 24592           Trade and financial flows       111306
## 24593           Trade and financial flows        52606
## 24594  Work, employment and vulnerability       150606
## 24595  Work, employment and vulnerability       150706
## 24596  Work, employment and vulnerability       148306
## 24601  Work, employment and vulnerability       140606
## 24602  Work, employment and vulnerability       110906
## 24603  Work, employment and vulnerability        43006
## 24608                          Demography       122006
## 24609                          Demography        63106
## 24610                          Demography       132706
## 24611                          Demography       132806
## 24613                          Demography        44206
## 24614                          Demography        45106
## 24615                          Demography       121206
## 24617                           Education        69706
## 24618                           Education       123306
## 24619                           Education       123406
## 24630                           Education        23906
## 24631                           Education        24006
## 24664                              Gender       175106
## 24666                              Gender       169706
## 24671                              Gender       169806
## 24674                              Health        58006
## 24677                              Health        69206
## 24678                              Health       120606
## 24679                              Health       121106
## 24680                              Health       103206
## 24682                              Health        57806
## 24683                              Health        57206
## 24684                              Health        57906
## 24685                              Health        57506
## 24698     Income/composition of resources       141706
## 24699     Income/composition of resources       103606
## 24718                             Poverty       153706
## 24731           Trade and financial flows       133206
## 24737  Work, employment and vulnerability       150606
## 24738  Work, employment and vulnerability       150706
## 24739  Work, employment and vulnerability       148306
## 24744  Work, employment and vulnerability       140606
## 24745  Work, employment and vulnerability       110906
## 24746  Work, employment and vulnerability        43006
## 24748                   Composite indices       137506
## 24750                          Demography       122006
## 24751                          Demography        63106
## 24752                          Demography       132706
## 24753                          Demography       132806
## 24755                          Demography        44206
## 24756                          Demography        45106
## 24757                          Demography       121206
## 24758                           Education       103706
## 24759                           Education        69706
## 24760                           Education       123306
## 24761                           Education       123406
## 24767                           Education       103006
## 24768                           Education        24106
## 24769                           Education        24206
## 24771                           Education        23906
## 24772                           Education        24006
## 24801                              Gender       175106
## 24803                              Gender       169706
## 24807                              Gender       169806
## 24809                              Health        64406
## 24810                              Health        64306
## 24811                              Health        69206
## 24812                              Health       120606
## 24813                              Health       121106
## 24814                              Health       103206
## 24815                              Health        57806
## 24816                              Health        57206
## 24817                              Health        57906
## 24818                              Health        57506
## 24831     Income/composition of resources       141706
## 24832     Income/composition of resources       103606
## 24862           Trade and financial flows       133206
## 24863           Trade and financial flows        53506
## 24864           Trade and financial flows       111306
## 24865           Trade and financial flows        52606
## 24866  Work, employment and vulnerability       150606
## 24867  Work, employment and vulnerability       150706
## 24868  Work, employment and vulnerability       148306
## 24873  Work, employment and vulnerability       140606
## 24874  Work, employment and vulnerability       110906
## 24875  Work, employment and vulnerability        43006
## 24878                   Composite indices       137506
## 24880                          Demography       122006
## 24881                          Demography        63106
## 24882                          Demography       132706
## 24883                          Demography       132806
## 24885                          Demography        44206
## 24886                          Demography        45106
## 24887                          Demography       121206
## 24888                           Education       103706
## 24889                           Education        69706
## 24898                           Education       103006
## 24899                           Education        24106
## 24900                           Education        24206
## 24902                           Education        23906
## 24903                           Education        24006
## 24933                              Gender       175106
## 24935                              Gender       169706
## 24940                              Gender       169806
## 24943                              Health        58006
## 24944                              Health        64406
## 24945                              Health        64306
## 24946                              Health        69206
## 24947                              Health       120606
## 24948                              Health       121106
## 24949                              Health       103206
## 24951                              Health        57806
## 24952                              Health        57206
## 24953                              Health        57906
## 24954                              Health        57506
## 24967     Income/composition of resources       141706
## 24968     Income/composition of resources       103606
## 24999                             Poverty       153706
## 25012           Trade and financial flows       133206
## 25013           Trade and financial flows        53506
## 25014           Trade and financial flows        99106
## 25015           Trade and financial flows       111306
## 25016           Trade and financial flows        52606
## 25018  Work, employment and vulnerability       150606
## 25019  Work, employment and vulnerability       150706
## 25020  Work, employment and vulnerability       148306
## 25025  Work, employment and vulnerability       140606
## 25026  Work, employment and vulnerability       110906
## 25027  Work, employment and vulnerability        43006
## 25032                          Demography       122006
## 25033                          Demography        63106
## 25034                          Demography       132706
## 25035                          Demography       132806
## 25037                          Demography        44206
## 25038                          Demography        45106
## 25039                          Demography       121206
## 25041                           Education        69706
## 25073                              Health        64406
## 25074                              Health        64306
## 25075                              Health        69206
## 25076                              Health       120606
## 25077                              Health       121106
## 25078                              Health       103206
## 25079                              Health        57806
## 25080                              Health        57206
## 25081                              Health        57906
## 25082                              Health        57506
## 25093     Income/composition of resources       141706
## 25094     Income/composition of resources       103606
## 25107           Trade and financial flows       133206
## 25108           Trade and financial flows        53506
## 25109           Trade and financial flows        99106
## 25110           Trade and financial flows       111306
## 25111           Trade and financial flows        52606
## 25114                   Composite indices       137506
## 25116                          Demography       122006
## 25117                          Demography        63106
## 25118                          Demography       132706
## 25119                          Demography       132806
## 25121                          Demography        44206
## 25122                          Demography        45106
## 25123                          Demography       121206
## 25124                           Education       103706
## 25125                           Education        69706
## 25126                           Education       123306
## 25127                           Education       123406
## 25134                           Education       103006
## 25162                              Gender       175106
## 25164                              Gender       169706
## 25167                              Gender       169806
## 25170                              Health        58006
## 25171                              Health        64406
## 25172                              Health        64306
## 25173                              Health        69206
## 25174                              Health       120606
## 25175                              Health       121106
## 25176                              Health       103206
## 25178                              Health        57806
## 25179                              Health        57206
## 25180                              Health        57906
## 25181                              Health        57506
## 25194     Income/composition of resources       141706
## 25195     Income/composition of resources       103606
## 25226                             Poverty       153706
## 25237           Trade and financial flows       133206
## 25238           Trade and financial flows        53506
## 25239           Trade and financial flows        99106
## 25241           Trade and financial flows        52606
## 25243  Work, employment and vulnerability       150606
## 25244  Work, employment and vulnerability       150706
## 25245  Work, employment and vulnerability       148306
## 25250  Work, employment and vulnerability       140606
## 25251  Work, employment and vulnerability       110906
## 25252  Work, employment and vulnerability        43006
## 25256                          Demography       122006
## 25257                          Demography        63106
## 25258                          Demography       132706
## 25259                          Demography       132806
## 25261                          Demography        44206
## 25262                          Demography        45106
## 25263                          Demography       121206
## 25265                           Education        69706
## 25296                              Gender       175106
## 25298                              Gender       169706
## 25300                              Gender       169806
## 25303                              Health        58006
## 25304                              Health        64406
## 25305                              Health        64306
## 25306                              Health        69206
## 25307                              Health       120606
## 25308                              Health       121106
## 25309                              Health       103206
## 25311                              Health        57806
## 25312                              Health        57206
## 25313                              Health        57906
## 25314                              Health        57506
## 25326     Income/composition of resources       141706
## 25327     Income/composition of resources       103606
## 25357                             Poverty       153706
## 25368           Trade and financial flows       133206
## 25369           Trade and financial flows        53506
## 25370           Trade and financial flows        99106
## 25371           Trade and financial flows       111306
## 25372           Trade and financial flows        52606
## 25374  Work, employment and vulnerability       150606
## 25375  Work, employment and vulnerability       150706
## 25376  Work, employment and vulnerability       148306
## 25381  Work, employment and vulnerability       140606
## 25382  Work, employment and vulnerability       110906
## 25383  Work, employment and vulnerability        43006
## 25385                   Composite indices       137506
## 25387                          Demography       122006
## 25388                          Demography        63106
## 25389                          Demography       132706
## 25390                          Demography       132806
## 25392                          Demography        44206
## 25393                          Demography        45106
## 25394                          Demography       121206
## 25395                           Education       103706
## 25396                           Education        69706
## 25405                           Education       103006
## 25406                           Education        24106
## 25407                           Education        24206
## 25409                           Education        23906
## 25410                           Education        24006
## 25441                              Gender       175106
## 25443                              Gender       169706
## 25445                              Gender       169806
## 25448                              Health        58006
## 25449                              Health        64406
## 25450                              Health        64306
## 25451                              Health        69206
## 25452                              Health       120606
## 25453                              Health       121106
## 25454                              Health       103206
## 25456                              Health        57806
## 25457                              Health        57206
## 25458                              Health        57906
## 25459                              Health        57506
## 25472     Income/composition of resources       141706
## 25473     Income/composition of resources       103606
## 25499                             Poverty       153706
## 25509           Trade and financial flows       133206
## 25510           Trade and financial flows        53506
## 25511           Trade and financial flows        99106
## 25515  Work, employment and vulnerability       150606
## 25516  Work, employment and vulnerability       150706
## 25517  Work, employment and vulnerability       148306
## 25522  Work, employment and vulnerability       140606
## 25523  Work, employment and vulnerability       110906
## 25524  Work, employment and vulnerability        43006
## 25527                   Composite indices       137506
## 25529                          Demography       122006
## 25530                          Demography        63106
## 25531                          Demography       132706
## 25532                          Demography       132806
## 25534                          Demography        44206
## 25535                          Demography        45106
## 25536                          Demography       121206
## 25537                           Education       103706
## 25538                           Education        69706
## 25539                           Education       123306
## 25540                           Education       123406
## 25547                           Education       103006
## 25548                           Education        24106
## 25549                           Education        24206
## 25551                           Education        23906
## 25552                           Education        24006
## 25580                              Gender       175106
## 25582                              Gender       169706
## 25586                              Gender       169806
## 25589                              Health        58006
## 25590                              Health        64406
## 25591                              Health        64306
## 25592                              Health        69206
## 25593                              Health       120606
## 25594                              Health       121106
## 25595                              Health       103206
## 25597                              Health        57806
## 25598                              Health        57206
## 25599                              Health        57906
## 25600                              Health        57506
## 25613     Income/composition of resources       141706
## 25614     Income/composition of resources       103606
## 25645                             Poverty       153706
## 25658           Trade and financial flows       133206
## 25659           Trade and financial flows        53506
## 25660           Trade and financial flows        99106
## 25661           Trade and financial flows       111306
## 25662           Trade and financial flows        52606
## 25663  Work, employment and vulnerability       150606
## 25664  Work, employment and vulnerability       150706
## 25665  Work, employment and vulnerability       148306
## 25670  Work, employment and vulnerability       140606
## 25671  Work, employment and vulnerability       110906
## 25672  Work, employment and vulnerability        43006
## 25675                   Composite indices       137506
## 25677                          Demography       122006
## 25678                          Demography        63106
## 25679                          Demography       132706
## 25680                          Demography       132806
## 25682                          Demography        44206
## 25683                          Demography        45106
## 25684                          Demography       121206
## 25685                           Education       103706
## 25686                           Education        69706
## 25687                           Education       123306
## 25688                           Education       123406
## 25695                           Education       103006
## 25696                           Education        24106
## 25697                           Education        24206
## 25699                           Education        23906
## 25700                           Education        24006
## 25729                              Gender       175106
## 25731                              Gender       169706
## 25735                              Gender       169806
## 25738                              Health        58006
## 25739                              Health        64406
## 25740                              Health        64306
## 25741                              Health        69206
## 25742                              Health       120606
## 25743                              Health       121106
## 25744                              Health       103206
## 25746                              Health        57806
## 25747                              Health        57206
## 25748                              Health        57906
## 25749                              Health        57506
## 25762     Income/composition of resources       141706
## 25763     Income/composition of resources       103606
## 25794                             Poverty       153706
## 25806           Trade and financial flows       133206
## 25807           Trade and financial flows        53506
## 25808           Trade and financial flows        99106
## 25809           Trade and financial flows       111306
## 25810           Trade and financial flows        52606
## 25811  Work, employment and vulnerability       150606
## 25812  Work, employment and vulnerability       150706
## 25813  Work, employment and vulnerability       148306
## 25818  Work, employment and vulnerability       140606
## 25819  Work, employment and vulnerability       110906
## 25820  Work, employment and vulnerability        43006
## 25823                   Composite indices       137506
## 25825                          Demography       122006
## 25826                          Demography        63106
## 25827                          Demography       132706
## 25828                          Demography       132806
## 25830                          Demography        44206
## 25831                          Demography        45106
## 25832                          Demography       121206
## 25833                           Education       103706
## 25834                           Education        69706
## 25843                           Education       103006
## 25844                           Education        24106
## 25845                           Education        24206
## 25847                           Education        23906
## 25848                           Education        24006
## 25878                              Gender       175106
## 25880                              Gender       169706
## 25883                              Gender       169806
## 25886                              Health        58006
## 25887                              Health        64406
## 25888                              Health        64306
## 25889                              Health        69206
## 25890                              Health       120606
## 25891                              Health       121106
## 25892                              Health       103206
## 25894                              Health        57806
## 25895                              Health        57206
## 25896                              Health        57906
## 25897                              Health        57506
## 25910     Income/composition of resources       141706
## 25911     Income/composition of resources       103606
## 25930                             Poverty       153706
## 25941           Trade and financial flows       133206
## 25946  Work, employment and vulnerability       150606
## 25947  Work, employment and vulnerability       150706
## 25948  Work, employment and vulnerability       148306
## 25953  Work, employment and vulnerability       140606
## 25954  Work, employment and vulnerability       110906
## 25955  Work, employment and vulnerability        43006
## 25958                   Composite indices       137506
## 25960                          Demography       122006
## 25961                          Demography        63106
## 25962                          Demography       132706
## 25963                          Demography       132806
## 25965                          Demography        44206
## 25966                          Demography        45106
## 25967                          Demography       121206
## 25968                           Education       103706
## 25969                           Education        69706
## 25970                           Education       123306
## 25971                           Education       123406
## 25978                           Education       103006
## 25979                           Education        24106
## 25980                           Education        24206
## 25982                           Education        23906
## 25983                           Education        24006
## 26013                              Gender       175106
## 26015                              Gender       169706
## 26019                              Gender       169806
## 26021                              Health        58006
## 26022                              Health        64406
## 26023                              Health        64306
## 26024                              Health        69206
## 26025                              Health       120606
## 26026                              Health       121106
## 26027                              Health       103206
## 26028                              Health        57806
## 26029                              Health        57206
## 26030                              Health        57906
## 26031                              Health        57506
## 26044     Income/composition of resources       141706
## 26045     Income/composition of resources       103606
## 26075           Trade and financial flows       133206
## 26076           Trade and financial flows        53506
## 26077           Trade and financial flows       111306
## 26078           Trade and financial flows        52606
## 26079  Work, employment and vulnerability       150606
## 26080  Work, employment and vulnerability       150706
## 26081  Work, employment and vulnerability       148306
## 26086  Work, employment and vulnerability       140606
## 26087  Work, employment and vulnerability       110906
## 26088  Work, employment and vulnerability        43006
## 26091                   Composite indices       137506
## 26093                          Demography       122006
## 26094                          Demography        63106
## 26095                          Demography       132706
## 26096                          Demography       132806
## 26098                          Demography        44206
## 26099                          Demography        45106
## 26100                          Demography       121206
## 26101                           Education       103706
## 26102                           Education        69706
## 26103                           Education       123306
## 26104                           Education       123406
## 26111                           Education       103006
## 26112                           Education        24106
## 26113                           Education        24206
## 26115                           Education        23906
## 26116                           Education        24006
## 26149                              Gender       175106
## 26151                              Gender       169706
## 26155                              Gender       169806
## 26158                              Health        58006
## 26159                              Health        64406
## 26160                              Health        64306
## 26161                              Health        69206
## 26162                              Health       120606
## 26163                              Health       121106
## 26164                              Health       103206
## 26165                              Health        57806
## 26166                              Health        57206
## 26167                              Health        57906
## 26168                              Health        57506
## 26181     Income/composition of resources       141706
## 26182     Income/composition of resources       103606
## 26213                             Poverty       153706
## 26224           Trade and financial flows       133206
## 26225           Trade and financial flows        53506
## 26226           Trade and financial flows        99106
## 26227           Trade and financial flows       111306
## 26228           Trade and financial flows        52606
## 26230  Work, employment and vulnerability       150606
## 26231  Work, employment and vulnerability       150706
## 26232  Work, employment and vulnerability       148306
## 26237  Work, employment and vulnerability       140606
## 26238  Work, employment and vulnerability       110906
## 26239  Work, employment and vulnerability        43006
## 26241                   Composite indices       137506
## 26243                          Demography       122006
## 26244                          Demography        63106
## 26245                          Demography       132706
## 26246                          Demography       132806
## 26248                          Demography        44206
## 26249                          Demography        45106
## 26250                          Demography       121206
## 26251                           Education       103706
## 26252                           Education        69706
## 26261                           Education       103006
## 26262                           Education        24106
## 26263                           Education        24206
## 26265                           Education        23906
## 26266                           Education        24006
## 26294                              Gender       175106
## 26296                              Gender       169706
## 26300                              Gender       169806
## 26303                              Health        58006
## 26304                              Health        64406
## 26305                              Health        64306
## 26306                              Health        69206
## 26307                              Health       120606
## 26308                              Health       121106
## 26309                              Health       103206
## 26311                              Health        57806
## 26312                              Health        57206
## 26313                              Health        57906
## 26314                              Health        57506
## 26327     Income/composition of resources       141706
## 26328     Income/composition of resources       103606
## 26357                             Poverty       153706
## 26369           Trade and financial flows       133206
## 26370           Trade and financial flows        53506
## 26371           Trade and financial flows        99106
## 26372           Trade and financial flows       111306
## 26373           Trade and financial flows        52606
## 26374  Work, employment and vulnerability       150606
## 26375  Work, employment and vulnerability       150706
## 26376  Work, employment and vulnerability       148306
## 26381  Work, employment and vulnerability       140606
## 26382  Work, employment and vulnerability       110906
## 26383  Work, employment and vulnerability        43006
## 26387                          Demography       122006
## 26388                          Demography        63106
## 26389                          Demography       132706
## 26390                          Demography       132806
## 26392                          Demography        44206
## 26393                          Demography        45106
## 26394                          Demography       121206
## 26396                           Education        69706
## 26397                           Education       123306
## 26398                           Education       123406
## 26428                              Health        64406
## 26429                              Health        64306
## 26430                              Health        69206
## 26431                              Health       120606
## 26432                              Health       121106
## 26433                              Health       103206
## 26434                              Health        57806
## 26435                              Health        57206
## 26436                              Health        57906
## 26437                              Health        57506
## 26449     Income/composition of resources       141706
## 26450     Income/composition of resources       103606
## 26472           Trade and financial flows       133206
## 26473           Trade and financial flows        53506
## 26474           Trade and financial flows        99106
## 26475           Trade and financial flows       111306
## 26476           Trade and financial flows        52606
## 26478                   Composite indices       137506
## 26480                          Demography       122006
## 26481                          Demography        63106
## 26482                          Demography       132706
## 26483                          Demography       132806
## 26485                          Demography        44206
## 26486                          Demography        45106
## 26487                          Demography       121206
## 26488                           Education       103706
## 26489                           Education        69706
## 26498                           Education       103006
## 26499                           Education        24106
## 26500                           Education        24206
## 26502                           Education        23906
## 26503                           Education        24006
## 26533                              Gender       175106
## 26535                              Gender       169706
## 26540                              Gender       169806
## 26543                              Health        58006
## 26546                              Health        69206
## 26547                              Health       120606
## 26548                              Health       121106
## 26549                              Health       103206
## 26551                              Health        57806
## 26552                              Health        57206
## 26553                              Health        57906
## 26554                              Health        57506
## 26567     Income/composition of resources       141706
## 26568     Income/composition of resources       103606
## 26599                             Poverty       153706
## 26612           Trade and financial flows       133206
## 26618  Work, employment and vulnerability       150606
## 26619  Work, employment and vulnerability       150706
## 26620  Work, employment and vulnerability       148306
## 26625  Work, employment and vulnerability       140606
## 26626  Work, employment and vulnerability       110906
## 26627  Work, employment and vulnerability        43006
## 26630                   Composite indices       137506
## 26632                          Demography       122006
## 26633                          Demography        63106
## 26634                          Demography       132706
## 26635                          Demography       132806
## 26637                          Demography        44206
## 26638                          Demography        45106
## 26639                          Demography       121206
## 26640                           Education       103706
## 26641                           Education        69706
## 26642                           Education       123306
## 26643                           Education       123406
## 26650                           Education       103006
## 26651                           Education        24106
## 26652                           Education        24206
## 26654                           Education        23906
## 26655                           Education        24006
## 26683                              Gender       175106
## 26685                              Gender       169706
## 26690                              Gender       169806
## 26693                              Health        58006
## 26694                              Health        64406
## 26695                              Health        64306
## 26696                              Health        69206
## 26697                              Health       120606
## 26698                              Health       121106
## 26699                              Health       103206
## 26701                              Health        57806
## 26702                              Health        57206
## 26703                              Health        57906
## 26704                              Health        57506
## 26717     Income/composition of resources       141706
## 26718     Income/composition of resources       103606
## 26749                             Poverty       153706
## 26761           Trade and financial flows       133206
## 26762           Trade and financial flows        53506
## 26763           Trade and financial flows        99106
## 26764           Trade and financial flows       111306
## 26765           Trade and financial flows        52606
## 26767  Work, employment and vulnerability       150606
## 26768  Work, employment and vulnerability       150706
## 26769  Work, employment and vulnerability       148306
## 26774  Work, employment and vulnerability       140606
## 26775  Work, employment and vulnerability       110906
## 26776  Work, employment and vulnerability        43006
## 26779                   Composite indices       137506
## 26781                          Demography       122006
## 26782                          Demography        63106
## 26783                          Demography       132706
## 26784                          Demography       132806
## 26786                          Demography        44206
## 26787                          Demography        45106
## 26788                          Demography       121206
## 26789                           Education       103706
## 26790                           Education        69706
## 26791                           Education       123306
## 26792                           Education       123406
## 26799                           Education       103006
## 26800                           Education        24106
## 26801                           Education        24206
## 26803                           Education        23906
## 26804                           Education        24006
## 26834                              Gender       175106
## 26836                              Gender       169706
## 26839                              Gender       169806
## 26842                              Health        58006
## 26843                              Health        64406
## 26844                              Health        64306
## 26845                              Health        69206
## 26846                              Health       120606
## 26847                              Health       121106
## 26848                              Health       103206
## 26849                              Health        57806
## 26850                              Health        57206
## 26851                              Health        57906
## 26852                              Health        57506
## 26865     Income/composition of resources       141706
## 26866     Income/composition of resources       103606
## 26897                             Poverty       153706
## 26911           Trade and financial flows        53506
## 26912           Trade and financial flows        99106
## 26913           Trade and financial flows       111306
## 26914           Trade and financial flows        52606
## 26915  Work, employment and vulnerability       150606
## 26916  Work, employment and vulnerability       150706
## 26917  Work, employment and vulnerability       148306
## 26922  Work, employment and vulnerability       140606
## 26923  Work, employment and vulnerability       110906
## 26924  Work, employment and vulnerability        43006
## 26928                          Demography       122006
## 26929                          Demography        63106
## 26930                          Demography       132706
## 26931                          Demography       132806
## 26933                          Demography        44206
## 26934                          Demography        45106
## 26935                          Demography       121206
## 26946                           Education       103006
## 26947                           Education        24106
## 26948                           Education        24206
## 26950                           Education        23906
## 26951                           Education        24006
## 26979                              Gender       175106
## 26981                              Gender       169706
## 26986                              Gender       169806
## 26989                              Health        58006
## 26992                              Health        69206
## 26993                              Health       120606
## 26994                              Health       121106
## 26995                              Health       103206
## 26997                              Health        57806
## 26998                              Health        57206
## 26999                              Health        57906
## 27000                              Health        57506
## 27013     Income/composition of resources       141706
## 27014     Income/composition of resources       103606
## 27043                             Poverty       153706
## 27055           Trade and financial flows        53506
## 27060  Work, employment and vulnerability       150606
## 27061  Work, employment and vulnerability       150706
## 27062  Work, employment and vulnerability       148306
## 27066  Work, employment and vulnerability       140606
## 27067  Work, employment and vulnerability       110906
## 27068  Work, employment and vulnerability        43006
## 27073                          Demography       122006
## 27074                          Demography        63106
## 27075                          Demography       132706
## 27076                          Demography       132806
## 27078                          Demography        44206
## 27079                          Demography        45106
## 27080                          Demography       121206
## 27082                           Education        69706
## 27083                           Education       123306
## 27084                           Education       123406
## 27121                              Gender       175106
## 27123                              Gender       169706
## 27126                              Gender       169806
## 27129                              Health        58006
## 27130                              Health        64406
## 27131                              Health        64306
## 27132                              Health        69206
## 27133                              Health       120606
## 27134                              Health       121106
## 27135                              Health       103206
## 27137                              Health        57806
## 27138                              Health        57206
## 27139                              Health        57906
## 27140                              Health        57506
## 27153     Income/composition of resources       141706
## 27154     Income/composition of resources       103606
## 27185                             Poverty       153706
## 27198           Trade and financial flows       133206
## 27199           Trade and financial flows        53506
## 27200           Trade and financial flows        99106
## 27201           Trade and financial flows       111306
## 27202           Trade and financial flows        52606
## 27203  Work, employment and vulnerability       150606
## 27204  Work, employment and vulnerability       150706
## 27205  Work, employment and vulnerability       148306
## 27210  Work, employment and vulnerability       140606
## 27211  Work, employment and vulnerability       110906
## 27212  Work, employment and vulnerability        43006
## 27215                   Composite indices       137506
## 27217                          Demography       122006
## 27218                          Demography        63106
## 27219                          Demography       132706
## 27220                          Demography       132806
## 27222                          Demography        44206
## 27223                          Demography        45106
## 27224                          Demography       121206
## 27225                           Education       103706
## 27226                           Education        69706
## 27227                           Education       123306
## 27228                           Education       123406
## 27235                           Education       103006
## 27236                           Education        24106
## 27237                           Education        24206
## 27239                           Education        23906
## 27240                           Education        24006
## 27267                              Gender       175106
## 27269                              Gender       169706
## 27273                              Gender       169806
## 27276                              Health        58006
## 27277                              Health        64406
## 27278                              Health        64306
## 27279                              Health        69206
## 27280                              Health       120606
## 27281                              Health       121106
## 27282                              Health       103206
## 27284                              Health        57806
## 27285                              Health        57206
## 27286                              Health        57906
## 27287                              Health        57506
## 27300     Income/composition of resources       141706
## 27301     Income/composition of resources       103606
## 27332                             Poverty       153706
## 27344           Trade and financial flows       133206
## 27345           Trade and financial flows        53506
## 27346           Trade and financial flows        99106
## 27347           Trade and financial flows       111306
## 27350  Work, employment and vulnerability       150606
## 27351  Work, employment and vulnerability       150706
## 27352  Work, employment and vulnerability       148306
## 27357  Work, employment and vulnerability       140606
## 27358  Work, employment and vulnerability       110906
## 27359  Work, employment and vulnerability        43006
## 27361                   Composite indices       137506
## 27363                          Demography       122006
## 27364                          Demography        63106
## 27365                          Demography       132706
## 27366                          Demography       132806
## 27368                          Demography        44206
## 27369                          Demography        45106
## 27370                          Demography       121206
## 27371                           Education       103706
## 27372                           Education        69706
## 27381                           Education       103006
## 27382                           Education        24106
## 27383                           Education        24206
## 27385                           Education        23906
## 27386                           Education        24006
## 27416                              Gender       175106
## 27418                              Gender       169706
## 27420                              Gender       169806
## 27423                              Health        58006
## 27424                              Health        64406
## 27425                              Health        64306
## 27426                              Health        69206
## 27427                              Health       120606
## 27428                              Health       121106
## 27429                              Health       103206
## 27431                              Health        57806
## 27432                              Health        57206
## 27433                              Health        57906
## 27434                              Health        57506
## 27446     Income/composition of resources       141706
## 27447     Income/composition of resources       103606
## 27463                             Poverty       153706
## 27475           Trade and financial flows       133206
## 27476           Trade and financial flows        53506
## 27477           Trade and financial flows        99106
## 27478           Trade and financial flows       111306
## 27479           Trade and financial flows        52606
## 27480  Work, employment and vulnerability       150606
## 27481  Work, employment and vulnerability       150706
## 27482  Work, employment and vulnerability       148306
## 27487  Work, employment and vulnerability       140606
## 27488  Work, employment and vulnerability       110906
## 27489  Work, employment and vulnerability        43006
## 27492                   Composite indices       137506
## 27494                          Demography       122006
## 27495                          Demography        63106
## 27496                          Demography       132706
## 27497                          Demography       132806
## 27499                          Demography        44206
## 27500                          Demography        45106
## 27501                          Demography       121206
## 27502                           Education       103706
## 27503                           Education        69706
## 27504                           Education       123306
## 27505                           Education       123406
## 27512                           Education       103006
## 27513                           Education        24106
## 27514                           Education        24206
## 27516                           Education        23906
## 27517                           Education        24006
## 27545                              Gender       175106
## 27547                              Gender       169706
## 27551                              Gender       169806
## 27554                              Health        58006
## 27555                              Health        64406
## 27556                              Health        64306
## 27557                              Health        69206
## 27558                              Health       120606
## 27559                              Health       121106
## 27560                              Health       103206
## 27562                              Health        57806
## 27563                              Health        57206
## 27564                              Health        57906
## 27565                              Health        57506
## 27578     Income/composition of resources       141706
## 27579     Income/composition of resources       103606
## 27610                             Poverty       153706
## 27623           Trade and financial flows       133206
## 27624           Trade and financial flows        53506
## 27625           Trade and financial flows        99106
## 27626           Trade and financial flows       111306
## 27627           Trade and financial flows        52606
## 27629  Work, employment and vulnerability       150606
## 27630  Work, employment and vulnerability       150706
## 27631  Work, employment and vulnerability       148306
## 27636  Work, employment and vulnerability       140606
## 27637  Work, employment and vulnerability       110906
## 27638  Work, employment and vulnerability        43006
## 27641                   Composite indices       137506
## 27643                          Demography       122006
## 27644                          Demography        63106
## 27645                          Demography       132706
## 27646                          Demography       132806
## 27648                          Demography        44206
## 27649                          Demography        45106
## 27650                          Demography       121206
## 27651                           Education       103706
## 27652                           Education        69706
## 27653                           Education       123306
## 27654                           Education       123406
## 27661                           Education       103006
## 27662                           Education        24106
## 27663                           Education        24206
## 27665                           Education        23906
## 27666                           Education        24006
## 27696                              Gender       175106
## 27698                              Gender       169706
## 27702                              Gender       169806
## 27704                              Health        58006
## 27705                              Health        64406
## 27706                              Health        64306
## 27707                              Health        69206
## 27708                              Health       120606
## 27709                              Health       121106
## 27710                              Health       103206
## 27711                              Health        57806
## 27712                              Health        57206
## 27713                              Health        57906
## 27714                              Health        57506
## 27725     Income/composition of resources       141706
## 27726     Income/composition of resources       103606
## 27753           Trade and financial flows       133206
## 27754           Trade and financial flows        53506
## 27755           Trade and financial flows        99106
## 27756           Trade and financial flows       111306
## 27757           Trade and financial flows        52606
## 27758  Work, employment and vulnerability       150606
## 27759  Work, employment and vulnerability       150706
## 27760  Work, employment and vulnerability       148306
## 27765  Work, employment and vulnerability       140606
## 27766  Work, employment and vulnerability       110906
## 27767  Work, employment and vulnerability        43006
## 27770                   Composite indices       137506
## 27772                          Demography       122006
## 27773                          Demography        63106
## 27774                          Demography       132706
## 27775                          Demography       132806
## 27777                          Demography        44206
## 27778                          Demography        45106
## 27779                          Demography       121206
## 27780                           Education       103706
## 27781                           Education        69706
## 27782                           Education       123306
## 27783                           Education       123406
## 27790                           Education       103006
## 27791                           Education        24106
## 27792                           Education        24206
## 27794                           Education        23906
## 27795                           Education        24006
## 27823                              Gender       175106
## 27825                              Gender       169706
## 27828                              Gender       169806
## 27831                              Health        58006
## 27832                              Health        64406
## 27833                              Health        64306
## 27834                              Health        69206
## 27835                              Health       120606
## 27836                              Health       121106
## 27837                              Health       103206
## 27839                              Health        57806
## 27840                              Health        57206
## 27841                              Health        57906
## 27842                              Health        57506
## 27855     Income/composition of resources       141706
## 27856     Income/composition of resources       103606
## 27887                             Poverty       153706
## 27899           Trade and financial flows       133206
## 27900           Trade and financial flows        53506
## 27901           Trade and financial flows        99106
## 27902           Trade and financial flows       111306
## 27903           Trade and financial flows        52606
## 27905  Work, employment and vulnerability       150606
## 27906  Work, employment and vulnerability       150706
## 27907  Work, employment and vulnerability       148306
## 27912  Work, employment and vulnerability       140606
## 27913  Work, employment and vulnerability       110906
## 27914  Work, employment and vulnerability        43006
## 27917                   Composite indices       137506
## 27919                          Demography       122006
## 27920                          Demography        63106
## 27921                          Demography       132706
## 27922                          Demography       132806
## 27924                          Demography        44206
## 27925                          Demography        45106
## 27926                          Demography       121206
## 27927                           Education       103706
## 27928                           Education        69706
## 27929                           Education       123306
## 27930                           Education       123406
## 27937                           Education       103006
## 27938                           Education        24106
## 27939                           Education        24206
## 27941                           Education        23906
## 27942                           Education        24006
## 27970                              Gender       175106
## 27972                              Gender       169706
## 27975                              Gender       169806
## 27977                              Health        64406
## 27978                              Health        64306
## 27979                              Health        69206
## 27980                              Health       120606
## 27981                              Health       121106
## 27982                              Health       103206
## 27983                              Health        57806
## 27984                              Health        57206
## 27985                              Health        57906
## 27986                              Health        57506
## 27998     Income/composition of resources       141706
## 27999     Income/composition of resources       103606
## 28018                             Poverty       153706
## 28029           Trade and financial flows       133206
## 28030           Trade and financial flows        53506
## 28031           Trade and financial flows        99106
## 28032           Trade and financial flows       111306
## 28034  Work, employment and vulnerability       150606
## 28035  Work, employment and vulnerability       150706
## 28036  Work, employment and vulnerability       148306
## 28041  Work, employment and vulnerability       140606
## 28042  Work, employment and vulnerability       110906
## 28043  Work, employment and vulnerability        43006
## 28045                   Composite indices       137506
## 28047                          Demography       122006
## 28048                          Demography        63106
## 28049                          Demography       132706
## 28050                          Demography       132806
## 28052                          Demography        44206
## 28053                          Demography        45106
## 28054                          Demography       121206
## 28055                           Education       103706
## 28056                           Education        69706
## 28057                           Education       123306
## 28058                           Education       123406
## 28065                           Education       103006
## 28066                           Education        24106
## 28067                           Education        24206
## 28069                           Education        23906
## 28070                           Education        24006
## 28093                              Gender       123506
## 28094                              Gender       123606
## 28097                              Gender       137906
## 28099                              Gender       136906
## 28100                              Gender       137006
## 28104                              Gender       175106
## 28106                              Gender       169706
## 28110                              Gender       169806
## 28113                              Health        58006
## 28114                              Health        64406
## 28115                              Health        64306
## 28116                              Health        69206
## 28117                              Health       120606
## 28118                              Health       121106
## 28119                              Health       103206
## 28121                              Health        57806
## 28122                              Health        57206
## 28123                              Health        57906
## 28124                              Health        57506
## 28137     Income/composition of resources       141706
## 28138     Income/composition of resources       103606
## 28170                             Poverty       153706
## 28183           Trade and financial flows       133206
## 28184           Trade and financial flows        53506
## 28185           Trade and financial flows        99106
## 28186           Trade and financial flows       111306
## 28187           Trade and financial flows        52606
## 28189  Work, employment and vulnerability       150606
## 28190  Work, employment and vulnerability       150706
## 28191  Work, employment and vulnerability       148306
## 28196  Work, employment and vulnerability       140606
## 28197  Work, employment and vulnerability       110906
## 28198  Work, employment and vulnerability        43006
## 28201                   Composite indices       137506
## 28203                          Demography       122006
## 28204                          Demography        63106
## 28205                          Demography       132706
## 28206                          Demography       132806
## 28208                          Demography        44206
## 28209                          Demography        45106
## 28210                          Demography       121206
## 28211                           Education       103706
## 28212                           Education        69706
## 28221                           Education       103006
## 28222                           Education        24106
## 28223                           Education        24206
## 28225                           Education        23906
## 28226                           Education        24006
## 28257                              Gender       175106
## 28259                              Gender       169706
## 28262                              Gender       169806
## 28265                              Health        58006
## 28266                              Health        64406
## 28267                              Health        64306
## 28268                              Health        69206
## 28269                              Health       120606
## 28270                              Health       121106
## 28271                              Health       103206
## 28272                              Health        57806
## 28273                              Health        57206
## 28274                              Health        57906
## 28275                              Health        57506
## 28288     Income/composition of resources       141706
## 28289     Income/composition of resources       103606
## 28320                             Poverty       153706
## 28333           Trade and financial flows       133206
## 28334           Trade and financial flows        53506
## 28335           Trade and financial flows        99106
## 28339  Work, employment and vulnerability       150606
## 28340  Work, employment and vulnerability       150706
## 28341  Work, employment and vulnerability       148306
## 28346  Work, employment and vulnerability       140606
## 28347  Work, employment and vulnerability       110906
## 28348  Work, employment and vulnerability        43006
## 28351                   Composite indices       137506
## 28353                          Demography       122006
## 28354                          Demography        63106
## 28355                          Demography       132706
## 28356                          Demography       132806
## 28358                          Demography        44206
## 28359                          Demography        45106
## 28360                          Demography       121206
## 28361                           Education       103706
## 28362                           Education        69706
## 28363                           Education       123306
## 28364                           Education       123406
## 28371                           Education       103006
## 28372                           Education        24106
## 28373                           Education        24206
## 28375                           Education        23906
## 28376                           Education        24006
## 28406                              Gender       175106
## 28408                              Gender       169706
## 28411                              Gender       169806
## 28414                              Health        58006
## 28415                              Health        64406
## 28416                              Health        64306
## 28417                              Health        69206
## 28418                              Health       120606
## 28419                              Health       121106
## 28420                              Health       103206
## 28421                              Health        57806
## 28422                              Health        57206
## 28423                              Health        57906
## 28424                              Health        57506
## 28437     Income/composition of resources       141706
## 28438     Income/composition of resources       103606
## 28470                             Poverty       153706
## 28481           Trade and financial flows       133206
## 28482           Trade and financial flows        53506
## 28483           Trade and financial flows        99106
## 28484           Trade and financial flows       111306
## 28485           Trade and financial flows        52606
## 28486  Work, employment and vulnerability       150606
## 28487  Work, employment and vulnerability       150706
## 28488  Work, employment and vulnerability       148306
## 28493  Work, employment and vulnerability       140606
## 28494  Work, employment and vulnerability       110906
## 28495  Work, employment and vulnerability        43006
## 28497                   Composite indices       137506
## 28499                          Demography       122006
## 28500                          Demography        63106
## 28501                          Demography       132706
## 28502                          Demography       132806
## 28504                          Demography        44206
## 28505                          Demography        45106
## 28506                          Demography       121206
## 28507                           Education       103706
## 28508                           Education        69706
## 28509                           Education       123306
## 28510                           Education       123406
## 28517                           Education       103006
## 28518                           Education        24106
## 28519                           Education        24206
## 28552                              Gender       175106
## 28554                              Gender       169706
## 28558                              Gender       169806
## 28561                              Health        58006
## 28562                              Health        64406
## 28563                              Health        64306
## 28564                              Health        69206
## 28565                              Health       120606
## 28566                              Health       121106
## 28567                              Health       103206
## 28569                              Health        57806
## 28570                              Health        57206
## 28571                              Health        57906
## 28572                              Health        57506
## 28585     Income/composition of resources       141706
## 28586     Income/composition of resources       103606
## 28617                             Poverty       153706
## 28630           Trade and financial flows       133206
## 28631           Trade and financial flows        53506
## 28632           Trade and financial flows        99106
## 28634           Trade and financial flows        52606
## 28635  Work, employment and vulnerability       150606
## 28636  Work, employment and vulnerability       150706
## 28637  Work, employment and vulnerability       148306
## 28642  Work, employment and vulnerability       140606
## 28643  Work, employment and vulnerability       110906
## 28644  Work, employment and vulnerability        43006
## 28647                   Composite indices       137506
## 28649                          Demography       122006
## 28650                          Demography        63106
## 28651                          Demography       132706
## 28652                          Demography       132806
## 28654                          Demography        44206
## 28655                          Demography        45106
## 28656                          Demography       121206
## 28657                           Education       103706
## 28658                           Education        69706
## 28659                           Education       123306
## 28660                           Education       123406
## 28667                           Education       103006
## 28668                           Education        24106
## 28669                           Education        24206
## 28671                           Education        23906
## 28672                           Education        24006
## 28700                              Gender       175106
## 28702                              Gender       169706
## 28706                              Gender       169806
## 28709                              Health        58006
## 28710                              Health        64406
## 28711                              Health        64306
## 28712                              Health        69206
## 28713                              Health       120606
## 28714                              Health       121106
## 28715                              Health       103206
## 28717                              Health        57806
## 28718                              Health        57206
## 28719                              Health        57906
## 28720                              Health        57506
## 28733     Income/composition of resources       141706
## 28734     Income/composition of resources       103606
## 28765                             Poverty       153706
## 28777           Trade and financial flows       133206
## 28778           Trade and financial flows        53506
## 28779           Trade and financial flows        99106
## 28780           Trade and financial flows       111306
## 28781           Trade and financial flows        52606
## 28782  Work, employment and vulnerability       150606
## 28783  Work, employment and vulnerability       150706
## 28784  Work, employment and vulnerability       148306
## 28789  Work, employment and vulnerability       140606
## 28790  Work, employment and vulnerability       110906
## 28791  Work, employment and vulnerability        43006
## 28794                   Composite indices       137506
## 28796                          Demography       122006
## 28797                          Demography        63106
## 28798                          Demography       132706
## 28799                          Demography       132806
## 28801                          Demography        44206
## 28802                          Demography        45106
## 28803                          Demography       121206
## 28804                           Education       103706
## 28805                           Education        69706
## 28806                           Education       123306
## 28807                           Education       123406
## 28814                           Education       103006
## 28815                           Education        24106
## 28816                           Education        24206
## 28818                           Education        23906
## 28819                           Education        24006
## 28848                              Gender       175106
## 28850                              Gender       169706
## 28854                              Gender       169806
## 28857                              Health        58006
## 28858                              Health        64406
## 28859                              Health        64306
## 28860                              Health        69206
## 28861                              Health       120606
## 28862                              Health       121106
## 28863                              Health       103206
## 28865                              Health        57806
## 28866                              Health        57206
## 28867                              Health        57906
## 28868                              Health        57506
## 28881     Income/composition of resources       141706
## 28882     Income/composition of resources       103606
## 28913                             Poverty       153706
## 28926           Trade and financial flows       133206
## 28927           Trade and financial flows        53506
## 28928           Trade and financial flows        99106
## 28929           Trade and financial flows       111306
## 28932  Work, employment and vulnerability       150606
## 28933  Work, employment and vulnerability       150706
## 28934  Work, employment and vulnerability       148306
## 28939  Work, employment and vulnerability       140606
## 28940  Work, employment and vulnerability       110906
## 28941  Work, employment and vulnerability        43006
## 28944                   Composite indices       137506
## 28946                          Demography       122006
## 28947                          Demography        63106
## 28948                          Demography       132706
## 28949                          Demography       132806
## 28951                          Demography        44206
## 28952                          Demography        45106
## 28953                          Demography       121206
## 28954                           Education       103706
## 28955                           Education        69706
## 28956                           Education       123306
## 28957                           Education       123406
## 28963                           Education       103006
## 28964                           Education        24106
## 28965                           Education        24206
## 28967                           Education        23906
## 28968                           Education        24006
## 28997                              Gender       175106
## 28999                              Gender       169706
## 29003                              Gender       169806
## 29005                              Health        58006
## 29006                              Health        64406
## 29007                              Health        64306
## 29008                              Health        69206
## 29009                              Health       120606
## 29010                              Health       121106
## 29011                              Health       103206
## 29012                              Health        57806
## 29013                              Health        57206
## 29014                              Health        57906
## 29015                              Health        57506
## 29028     Income/composition of resources       141706
## 29029     Income/composition of resources       103606
## 29059           Trade and financial flows       133206
## 29060           Trade and financial flows        53506
## 29061           Trade and financial flows       111306
## 29062           Trade and financial flows        52606
## 29063  Work, employment and vulnerability       150606
## 29064  Work, employment and vulnerability       150706
## 29065  Work, employment and vulnerability       148306
## 29070  Work, employment and vulnerability       140606
## 29071  Work, employment and vulnerability       110906
## 29072  Work, employment and vulnerability        43006
## 29075                   Composite indices       137506
## 29077                          Demography       122006
## 29078                          Demography        63106
## 29079                          Demography       132706
## 29080                          Demography       132806
## 29082                          Demography        44206
## 29083                          Demography        45106
## 29084                          Demography       121206
## 29085                           Education       103706
## 29086                           Education        69706
## 29087                           Education       123306
## 29088                           Education       123406
## 29094                           Education       103006
## 29095                           Education        24106
## 29096                           Education        24206
## 29098                           Education        23906
## 29099                           Education        24006
## 29126                              Gender       175106
## 29128                              Gender       169706
## 29130                              Gender       169806
## 29132                              Health        64406
## 29133                              Health        64306
## 29134                              Health        69206
## 29135                              Health       120606
## 29136                              Health       121106
## 29137                              Health       103206
## 29138                              Health        57806
## 29139                              Health        57206
## 29140                              Health        57906
## 29141                              Health        57506
## 29154     Income/composition of resources       141706
## 29155     Income/composition of resources       103606
## 29179           Trade and financial flows       133206
## 29180           Trade and financial flows        53506
## 29182           Trade and financial flows        52606
## 29183  Work, employment and vulnerability       150606
## 29184  Work, employment and vulnerability       150706
## 29185  Work, employment and vulnerability       148306
## 29190  Work, employment and vulnerability       140606
## 29191  Work, employment and vulnerability       110906
## 29192  Work, employment and vulnerability        43006
## 29197                          Demography       122006
## 29198                          Demography        63106
## 29199                          Demography       132706
## 29200                          Demography       132806
## 29202                          Demography        44206
## 29203                          Demography        45106
## 29204                          Demography       121206
## 29206                           Education        69706
## 29242                              Gender       175106
## 29244                              Gender       169706
## 29249                              Gender       169806
## 29252                              Health        58006
## 29253                              Health        64406
## 29254                              Health        64306
## 29255                              Health        69206
## 29256                              Health       120606
## 29257                              Health       121106
## 29258                              Health       103206
## 29260                              Health        57806
## 29261                              Health        57206
## 29262                              Health        57906
## 29263                              Health        57506
## 29276     Income/composition of resources       141706
## 29277     Income/composition of resources       103606
## 29307                             Poverty       153706
## 29318           Trade and financial flows       133206
## 29319           Trade and financial flows        53506
## 29320           Trade and financial flows        99106
## 29321           Trade and financial flows       111306
## 29322           Trade and financial flows        52606
## 29324  Work, employment and vulnerability       150606
## 29325  Work, employment and vulnerability       150706
## 29326  Work, employment and vulnerability       148306
## 29331  Work, employment and vulnerability       140606
## 29332  Work, employment and vulnerability       110906
## 29333  Work, employment and vulnerability        43006
## 29336                   Composite indices       137506
## 29338                          Demography       122006
## 29339                          Demography        63106
## 29340                          Demography       132706
## 29341                          Demography       132806
## 29343                          Demography        44206
## 29344                          Demography        45106
## 29345                          Demography       121206
## 29346                           Education       103706
## 29347                           Education        69706
## 29348                           Education       123306
## 29349                           Education       123406
## 29355                           Education       103006
## 29356                           Education        24106
## 29357                           Education        24206
## 29359                           Education        23906
## 29360                           Education        24006
## 29390                              Gender       175106
## 29392                              Gender       169706
## 29395                              Gender       169806
## 29397                              Health        64406
## 29398                              Health        64306
## 29399                              Health        69206
## 29400                              Health       120606
## 29401                              Health       121106
## 29402                              Health       103206
## 29403                              Health        57806
## 29404                              Health        57206
## 29405                              Health        57906
## 29406                              Health        57506
## 29419     Income/composition of resources       141706
## 29420     Income/composition of resources       103606
## 29450           Trade and financial flows       133206
## 29451           Trade and financial flows        53506
## 29452           Trade and financial flows       111306
## 29453           Trade and financial flows        52606
## 29454  Work, employment and vulnerability       150606
## 29455  Work, employment and vulnerability       150706
## 29456  Work, employment and vulnerability       148306
## 29461  Work, employment and vulnerability       140606
## 29462  Work, employment and vulnerability       110906
## 29463  Work, employment and vulnerability        43006
## 29466                   Composite indices       137506
## 29468                          Demography       122006
## 29469                          Demography        63106
## 29470                          Demography       132706
## 29471                          Demography       132806
## 29473                          Demography        44206
## 29474                          Demography        45106
## 29475                          Demography       121206
## 29476                           Education       103706
## 29477                           Education        69706
## 29478                           Education       123306
## 29479                           Education       123406
## 29486                           Education       103006
## 29487                           Education        24106
## 29488                           Education        24206
## 29490                           Education        23906
## 29491                           Education        24006
## 29520                              Gender       175106
## 29522                              Gender       169706
## 29525                              Gender       169806
## 29528                              Health        58006
## 29529                              Health        64406
## 29530                              Health        64306
## 29531                              Health        69206
## 29532                              Health       120606
## 29533                              Health       121106
## 29534                              Health       103206
## 29536                              Health        57806
## 29537                              Health        57206
## 29538                              Health        57906
## 29539                              Health        57506
## 29552     Income/composition of resources       141706
## 29553     Income/composition of resources       103606
## 29585                             Poverty       153706
## 29598           Trade and financial flows       133206
## 29599           Trade and financial flows        53506
## 29600           Trade and financial flows        99106
## 29601           Trade and financial flows       111306
## 29602           Trade and financial flows        52606
## 29603  Work, employment and vulnerability       150606
## 29604  Work, employment and vulnerability       150706
## 29605  Work, employment and vulnerability       148306
## 29610  Work, employment and vulnerability       140606
## 29611  Work, employment and vulnerability       110906
## 29612  Work, employment and vulnerability        43006
## 29615                   Composite indices       137506
## 29617                          Demography       122006
## 29618                          Demography        63106
## 29619                          Demography       132706
## 29620                          Demography       132806
## 29622                          Demography        44206
## 29623                          Demography        45106
## 29624                          Demography       121206
## 29625                           Education       103706
## 29626                           Education        69706
## 29635                           Education       103006
## 29636                           Education        24106
## 29639                           Education        23906
## 29640                           Education        24006
## 29671                              Gender       175106
## 29673                              Gender       169706
## 29676                              Gender       169806
## 29679                              Health        58006
## 29680                              Health        64406
## 29681                              Health        64306
## 29682                              Health        69206
## 29683                              Health       120606
## 29684                              Health       121106
## 29685                              Health       103206
## 29687                              Health        57806
## 29688                              Health        57206
## 29689                              Health        57906
## 29690                              Health        57506
## 29703     Income/composition of resources       141706
## 29704     Income/composition of resources       103606
## 29722                             Poverty       153706
## 29734           Trade and financial flows       133206
## 29735           Trade and financial flows        53506
## 29736           Trade and financial flows        99106
## 29737           Trade and financial flows       111306
## 29738           Trade and financial flows        52606
## 29740  Work, employment and vulnerability       150606
## 29741  Work, employment and vulnerability       150706
## 29742  Work, employment and vulnerability       148306
## 29747  Work, employment and vulnerability       140606
## 29748  Work, employment and vulnerability       110906
## 29749  Work, employment and vulnerability        43006
## 29752                   Composite indices       137506
## 29754                          Demography       122006
## 29755                          Demography        63106
## 29756                          Demography       132706
## 29757                          Demography       132806
## 29759                          Demography        44206
## 29760                          Demography        45106
## 29761                          Demography       121206
## 29762                           Education       103706
## 29763                           Education        69706
## 29764                           Education       123306
## 29765                           Education       123406
## 29771                           Education       103006
## 29772                           Education        24106
## 29773                           Education        24206
## 29775                           Education        23906
## 29776                           Education        24006
## 29802                              Gender       175106
## 29804                              Gender       169706
## 29806                              Gender       169806
## 29809                              Health        58006
## 29810                              Health        64406
## 29811                              Health        64306
## 29812                              Health        69206
## 29813                              Health       120606
## 29814                              Health       121106
## 29815                              Health       103206
## 29817                              Health        57806
## 29818                              Health        57206
## 29819                              Health        57906
## 29820                              Health        57506
## 29832     Income/composition of resources       141706
## 29833     Income/composition of resources       103606
## 29846                             Poverty       153706
## 29855           Trade and financial flows       133206
## 29856           Trade and financial flows        53506
## 29857           Trade and financial flows        99106
## 29858           Trade and financial flows       111306
## 29859           Trade and financial flows        52606
## 29860  Work, employment and vulnerability       150606
## 29861  Work, employment and vulnerability       150706
## 29862  Work, employment and vulnerability       148306
## 29867  Work, employment and vulnerability       140606
## 29868  Work, employment and vulnerability       110906
## 29869  Work, employment and vulnerability        43006
## 29872                   Composite indices       137506
## 29874                          Demography       122006
## 29875                          Demography        63106
## 29876                          Demography       132706
## 29877                          Demography       132806
## 29879                          Demography        44206
## 29880                          Demography        45106
## 29881                          Demography       121206
## 29882                           Education       103706
## 29883                           Education        69706
## 29884                           Education       123306
## 29885                           Education       123406
## 29892                           Education       103006
## 29893                           Education        24106
## 29894                           Education        24206
## 29896                           Education        23906
## 29897                           Education        24006
## 29926                              Gender       175106
## 29928                              Gender       169706
## 29931                              Gender       169806
## 29934                              Health        58006
## 29935                              Health        64406
## 29936                              Health        64306
## 29937                              Health        69206
## 29938                              Health       120606
## 29939                              Health       121106
## 29940                              Health       103206
## 29942                              Health        57806
## 29943                              Health        57206
## 29944                              Health        57906
## 29945                              Health        57506
## 29958     Income/composition of resources       141706
## 29959     Income/composition of resources       103606
## 29990                             Poverty       153706
## 30003           Trade and financial flows       133206
## 30004           Trade and financial flows        53506
## 30006           Trade and financial flows       111306
## 30007           Trade and financial flows        52606
## 30009  Work, employment and vulnerability       150606
## 30010  Work, employment and vulnerability       150706
## 30011  Work, employment and vulnerability       148306
## 30016  Work, employment and vulnerability       140606
## 30017  Work, employment and vulnerability       110906
## 30018  Work, employment and vulnerability        43006
## 30021                   Composite indices       137506
## 30023                          Demography       122006
## 30024                          Demography        63106
## 30025                          Demography       132706
## 30026                          Demography       132806
## 30028                          Demography        44206
## 30029                          Demography        45106
## 30030                          Demography       121206
## 30031                           Education       103706
## 30032                           Education        69706
## 30041                           Education       103006
## 30042                           Education        24106
## 30043                           Education        24206
## 30045                           Education        23906
## 30046                           Education        24006
## 30076                              Gender       175106
## 30078                              Gender       169706
## 30082                              Gender       169806
## 30085                              Health        58006
## 30086                              Health        64406
## 30087                              Health        64306
## 30088                              Health        69206
## 30089                              Health       120606
## 30090                              Health       121106
## 30091                              Health       103206
## 30093                              Health        57806
## 30094                              Health        57206
## 30095                              Health        57906
## 30096                              Health        57506
## 30109     Income/composition of resources       141706
## 30110     Income/composition of resources       103606
## 30141                             Poverty       153706
## 30154           Trade and financial flows       133206
## 30155           Trade and financial flows        53506
## 30156           Trade and financial flows        99106
## 30157           Trade and financial flows       111306
## 30158           Trade and financial flows        52606
## 30160  Work, employment and vulnerability       150606
## 30161  Work, employment and vulnerability       150706
## 30162  Work, employment and vulnerability       148306
## 30167  Work, employment and vulnerability       140606
## 30168  Work, employment and vulnerability       110906
## 30169  Work, employment and vulnerability        43006
## 30172                   Composite indices       137506
## 30174                          Demography       122006
## 30175                          Demography        63106
## 30176                          Demography       132706
## 30177                          Demography       132806
## 30179                          Demography        44206
## 30180                          Demography        45106
## 30181                          Demography       121206
## 30182                           Education       103706
## 30183                           Education        69706
## 30192                           Education       103006
## 30193                           Education        24106
## 30194                           Education        24206
## 30196                           Education        23906
## 30197                           Education        24006
## 30228                              Gender       175106
## 30230                              Gender       169706
## 30234                              Gender       169806
## 30237                              Health        58006
## 30238                              Health        64406
## 30239                              Health        64306
## 30240                              Health        69206
## 30241                              Health       120606
## 30242                              Health       121106
## 30243                              Health       103206
## 30245                              Health        57806
## 30246                              Health        57206
## 30247                              Health        57906
## 30248                              Health        57506
## 30261     Income/composition of resources       141706
## 30262     Income/composition of resources       103606
## 30293                             Poverty       153706
## 30306           Trade and financial flows       133206
## 30307           Trade and financial flows        53506
## 30308           Trade and financial flows        99106
## 30309           Trade and financial flows       111306
## 30310           Trade and financial flows        52606
## 30311  Work, employment and vulnerability       150606
## 30312  Work, employment and vulnerability       150706
## 30313  Work, employment and vulnerability       148306
## 30318  Work, employment and vulnerability       140606
## 30319  Work, employment and vulnerability       110906
## 30320  Work, employment and vulnerability        43006
## 30324                   Composite indices       137506
## 30326                          Demography       122006
## 30327                          Demography        63106
## 30328                          Demography       132706
## 30329                          Demography       132806
## 30331                          Demography        44206
## 30332                          Demography        45106
## 30333                          Demography       121206
## 30334                           Education       103706
## 30335                           Education        69706
## 30336                           Education       123306
## 30337                           Education       123406
## 30344                           Education       103006
## 30345                           Education        24106
## 30346                           Education        24206
## 30348                           Education        23906
## 30349                           Education        24006
## 30380                              Gender       175106
## 30382                              Gender       169706
## 30386                              Gender       169806
## 30388                              Health        58006
## 30389                              Health        64406
## 30390                              Health        64306
## 30391                              Health        69206
## 30392                              Health       120606
## 30393                              Health       121106
## 30394                              Health       103206
## 30395                              Health        57806
## 30396                              Health        57206
## 30397                              Health        57906
## 30398                              Health        57506
## 30410     Income/composition of resources       141706
## 30411     Income/composition of resources       103606
## 30442           Trade and financial flows       133206
## 30443           Trade and financial flows        53506
## 30444           Trade and financial flows       111306
## 30446  Work, employment and vulnerability       150606
## 30447  Work, employment and vulnerability       150706
## 30448  Work, employment and vulnerability       148306
## 30453  Work, employment and vulnerability       140606
## 30454  Work, employment and vulnerability       110906
## 30455  Work, employment and vulnerability        43006
## 30458                   Composite indices       137506
## 30460                          Demography       122006
## 30461                          Demography        63106
## 30462                          Demography       132706
## 30463                          Demography       132806
## 30465                          Demography        44206
## 30466                          Demography        45106
## 30467                          Demography       121206
## 30468                           Education       103706
## 30469                           Education        69706
## 30478                           Education       103006
## 30479                           Education        24106
## 30480                           Education        24206
## 30482                           Education        23906
## 30483                           Education        24006
## 30513                              Gender       175106
## 30515                              Gender       169706
## 30518                              Gender       169806
## 30522                              Health        69206
## 30523                              Health       120606
## 30524                              Health       121106
## 30525                              Health       103206
## 30526                              Health        57806
## 30527                              Health        57206
## 30528                              Health        57906
## 30529                              Health        57506
## 30542     Income/composition of resources       141706
## 30543     Income/composition of resources       103606
## 30562                             Poverty       153706
## 30575           Trade and financial flows       133206
## 30579  Work, employment and vulnerability       150606
## 30580  Work, employment and vulnerability       150706
## 30581  Work, employment and vulnerability       148306
## 30586  Work, employment and vulnerability       140606
## 30587  Work, employment and vulnerability       110906
## 30588  Work, employment and vulnerability        43006
## 30592                          Demography        44206
## 30593                          Demography        45106
## 30595                           Education        69706
## 30596                           Education       123306
## 30597                           Education       123406
## 30618                              Health        64406
## 30619                              Health        64306
## 30620                              Health        69206
## 30621                              Health       103206
## 30623                              Health        57206
## 30625                              Health        57506
## 30634     Income/composition of resources       141706
## 30635     Income/composition of resources       103606
## 30644           Trade and financial flows       133206
## 30645           Trade and financial flows        53506
## 30646           Trade and financial flows        99106
## 30647           Trade and financial flows       111306
## 30648           Trade and financial flows        52606
## 30653                          Demography       122006
## 30654                          Demography        63106
## 30655                          Demography       132706
## 30656                          Demography       132806
## 30658                          Demography        44206
## 30659                          Demography        45106
## 30660                          Demography       121206
## 30662                           Education        69706
## 30663                           Education       123306
## 30664                           Education       123406
## 30704                              Gender       175106
## 30706                              Gender       169706
## 30708                              Gender       169806
## 30711                              Health        64406
## 30712                              Health        64306
## 30713                              Health        69206
## 30714                              Health       120606
## 30715                              Health       121106
## 30716                              Health       103206
## 30717                              Health        57806
## 30718                              Health        57206
## 30719                              Health        57906
## 30720                              Health        57506
## 30732     Income/composition of resources       141706
## 30733     Income/composition of resources       103606
## 30765           Trade and financial flows        53506
## 30766           Trade and financial flows        99106
## 30767           Trade and financial flows       111306
## 30768           Trade and financial flows        52606
## 30770  Work, employment and vulnerability       150606
## 30771  Work, employment and vulnerability       150706
## 30772  Work, employment and vulnerability       148306
## 30777  Work, employment and vulnerability       140606
## 30778  Work, employment and vulnerability       110906
## 30779  Work, employment and vulnerability        43006
## 30783                          Demography       122006
## 30784                          Demography        63106
## 30785                          Demography       132706
## 30786                          Demography       132806
## 30788                          Demography        44206
## 30789                          Demography        45106
## 30790                          Demography       121206
## 30792                           Education        69706
## 30823                              Gender       175106
## 30825                              Gender       169706
## 30826                              Gender       169806
## 30828                              Health        64406
## 30829                              Health        64306
## 30830                              Health        69206
## 30831                              Health       120606
## 30832                              Health       121106
## 30833                              Health       103206
## 30834                              Health        57806
## 30835                              Health        57206
## 30836                              Health        57906
## 30837                              Health        57506
## 30848     Income/composition of resources       141706
## 30849     Income/composition of resources       103606
## 30861           Trade and financial flows       133206
## 30862           Trade and financial flows        53506
## 30863           Trade and financial flows        99106
## 30864           Trade and financial flows       111306
## 30865           Trade and financial flows        52606
## 30866  Work, employment and vulnerability       150606
## 30867  Work, employment and vulnerability       150706
## 30868  Work, employment and vulnerability       148306
## 30873  Work, employment and vulnerability       140606
## 30874  Work, employment and vulnerability       110906
## 30875  Work, employment and vulnerability        43006
## 30877                   Composite indices       137506
## 30879                          Demography       122006
## 30880                          Demography        63106
## 30881                          Demography       132706
## 30882                          Demography       132806
## 30884                          Demography        44206
## 30885                          Demography        45106
## 30886                          Demography       121206
## 30887                           Education       103706
## 30888                           Education        69706
## 30897                           Education       103006
## 30898                           Education        24106
## 30899                           Education        24206
## 30901                           Education        23906
## 30902                           Education        24006
## 30930                              Gender       175106
## 30932                              Gender       169706
## 30934                              Gender       169806
## 30936                              Health        58006
## 30937                              Health        64406
## 30938                              Health        64306
## 30939                              Health        69206
## 30940                              Health       120606
## 30941                              Health       121106
## 30942                              Health       103206
## 30944                              Health        57806
## 30945                              Health        57206
## 30946                              Health        57906
## 30947                              Health        57506
## 30959     Income/composition of resources       141706
## 30960     Income/composition of resources       103606
## 30971                             Poverty       153706
## 30981           Trade and financial flows       133206
## 30982           Trade and financial flows        53506
## 30983           Trade and financial flows        99106
## 30984           Trade and financial flows       111306
## 30986  Work, employment and vulnerability       150606
## 30987  Work, employment and vulnerability       150706
## 30988  Work, employment and vulnerability       148306
## 30992  Work, employment and vulnerability       140606
## 30993  Work, employment and vulnerability       110906
## 30994  Work, employment and vulnerability        43006
## 30997                   Composite indices       137506
## 30999                          Demography       122006
## 31000                          Demography        63106
## 31001                          Demography       132706
## 31002                          Demography       132806
## 31004                          Demography        44206
## 31005                          Demography        45106
## 31006                          Demography       121206
## 31007                           Education       103706
## 31008                           Education        69706
## 31009                           Education       123306
## 31010                           Education       123406
## 31017                           Education       103006
## 31018                           Education        24106
## 31019                           Education        24206
## 31021                           Education        23906
## 31022                           Education        24006
## 31050                              Gender       175106
## 31052                              Gender       169706
## 31055                              Gender       169806
## 31058                              Health        58006
## 31059                              Health        64406
## 31060                              Health        64306
## 31061                              Health        69206
## 31062                              Health       120606
## 31063                              Health       121106
## 31064                              Health       103206
## 31066                              Health        57806
## 31067                              Health        57206
## 31068                              Health        57906
## 31069                              Health        57506
## 31082     Income/composition of resources       141706
## 31083     Income/composition of resources       103606
## 31114                             Poverty       153706
## 31127           Trade and financial flows       133206
## 31128           Trade and financial flows        53506
## 31129           Trade and financial flows        99106
## 31130           Trade and financial flows       111306
## 31131           Trade and financial flows        52606
## 31133  Work, employment and vulnerability       150606
## 31134  Work, employment and vulnerability       150706
## 31135  Work, employment and vulnerability       148306
## 31140  Work, employment and vulnerability       140606
## 31141  Work, employment and vulnerability       110906
## 31142  Work, employment and vulnerability        43006
## 31147                          Demography       122006
## 31148                          Demography        63106
## 31149                          Demography       132706
## 31150                          Demography       132806
## 31152                          Demography        44206
## 31153                          Demography        45106
## 31154                          Demography       121206
## 31156                           Education        69706
## 31157                           Education       123306
## 31158                           Education       123406
## 31187                              Health        64406
## 31188                              Health        64306
## 31189                              Health        69206
## 31190                              Health       120606
## 31191                              Health       121106
## 31192                              Health       103206
## 31193                              Health        57806
## 31194                              Health        57206
## 31195                              Health        57906
## 31196                              Health        57506
## 31208     Income/composition of resources       141706
## 31209     Income/composition of resources       103606
## 31231           Trade and financial flows       133206
## 31232           Trade and financial flows        53506
## 31233           Trade and financial flows        99106
## 31234           Trade and financial flows       111306
## 31235           Trade and financial flows        52606
## 31238                   Composite indices       137506
## 31240                          Demography       122006
## 31241                          Demography        63106
## 31242                          Demography       132706
## 31243                          Demography       132806
## 31245                          Demography        44206
## 31246                          Demography        45106
## 31247                          Demography       121206
## 31248                           Education       103706
## 31249                           Education        69706
## 31258                           Education       103006
## 31259                           Education        24106
## 31260                           Education        24206
## 31262                           Education        23906
## 31263                           Education        24006
## 31290                              Gender       175106
## 31292                              Gender       169706
## 31296                              Gender       169806
## 31299                              Health        58006
## 31302                              Health        69206
## 31303                              Health       120606
## 31304                              Health       121106
## 31305                              Health       103206
## 31307                              Health        57806
## 31308                              Health        57206
## 31309                              Health        57906
## 31310                              Health        57506
## 31323     Income/composition of resources       141706
## 31324     Income/composition of resources       103606
## 31354                             Poverty       153706
## 31366           Trade and financial flows       133206
## 31367           Trade and financial flows        53506
## 31368           Trade and financial flows        99106
## 31369           Trade and financial flows       111306
## 31370           Trade and financial flows        52606
## 31372  Work, employment and vulnerability       150606
## 31373  Work, employment and vulnerability       150706
## 31374  Work, employment and vulnerability       148306
## 31379  Work, employment and vulnerability       140606
## 31380  Work, employment and vulnerability       110906
## 31381  Work, employment and vulnerability        43006
## 31384                   Composite indices       137506
## 31386                          Demography       122006
## 31387                          Demography        63106
## 31388                          Demography       132706
## 31389                          Demography       132806
## 31391                          Demography        44206
## 31392                          Demography        45106
## 31393                          Demography       121206
## 31394                           Education       103706
## 31395                           Education        69706
## 31402                           Education       103006
## 31403                           Education        24106
## 31404                           Education        24206
## 31406                           Education        23906
## 31407                           Education        24006
## 31434                              Gender       175106
## 31436                              Gender       169706
## 31439                              Gender       169806
## 31441                              Health        64406
## 31442                              Health        64306
## 31443                              Health        69206
## 31444                              Health       120606
## 31445                              Health       121106
## 31446                              Health       103206
## 31447                              Health        57806
## 31448                              Health        57206
## 31449                              Health        57906
## 31450                              Health        57506
## 31462     Income/composition of resources       141706
## 31463     Income/composition of resources       103606
## 31479                             Poverty       153706
## 31488           Trade and financial flows       133206
## 31489           Trade and financial flows        53506
## 31490           Trade and financial flows        99106
## 31491           Trade and financial flows       111306
## 31492  Work, employment and vulnerability       150606
## 31493  Work, employment and vulnerability       150706
## 31494  Work, employment and vulnerability       148306
## 31499  Work, employment and vulnerability       140606
## 31500  Work, employment and vulnerability       110906
## 31501  Work, employment and vulnerability        43006
## 31506                          Demography       122006
## 31507                          Demography        63106
## 31508                          Demography       132706
## 31509                          Demography       132806
## 31511                          Demography        44206
## 31512                          Demography        45106
## 31513                          Demography       121206
## 31515                           Education        69706
## 31516                           Education       123306
## 31517                           Education       123406
## 31545                              Gender       175106
## 31547                              Gender       169706
## 31551                              Gender       169806
## 31554                              Health        64406
## 31555                              Health        64306
## 31556                              Health        69206
## 31557                              Health       120606
## 31558                              Health       121106
## 31559                              Health       103206
## 31561                              Health        57806
## 31562                              Health        57206
## 31563                              Health        57906
## 31564                              Health        57506
## 31577     Income/composition of resources       141706
## 31578     Income/composition of resources       103606
## 31595                             Poverty       153706
## 31604           Trade and financial flows       133206
## 31605           Trade and financial flows        53506
## 31606           Trade and financial flows        99106
## 31607           Trade and financial flows       111306
## 31610  Work, employment and vulnerability       150606
## 31611  Work, employment and vulnerability       150706
## 31612  Work, employment and vulnerability       148306
## 31617  Work, employment and vulnerability       140606
## 31618  Work, employment and vulnerability       110906
## 31619  Work, employment and vulnerability        43006
## 31621                   Composite indices       137506
## 31623                          Demography       122006
## 31624                          Demography        63106
## 31625                          Demography       132706
## 31626                          Demography       132806
## 31628                          Demography        44206
## 31629                          Demography        45106
## 31630                          Demography       121206
## 31631                           Education       103706
## 31632                           Education        69706
## 31633                           Education       123306
## 31634                           Education       123406
## 31641                           Education       103006
## 31642                           Education        24106
## 31643                           Education        24206
## 31645                           Education        23906
## 31646                           Education        24006
## 31676                              Gender       175106
## 31678                              Gender       169706
## 31681                              Gender       169806
## 31684                              Health        58006
## 31685                              Health        64406
## 31686                              Health        64306
## 31687                              Health        69206
## 31688                              Health       120606
## 31689                              Health       121106
## 31690                              Health       103206
## 31692                              Health        57806
## 31693                              Health        57206
## 31694                              Health        57906
## 31695                              Health        57506
## 31708     Income/composition of resources       141706
## 31709     Income/composition of resources       103606
## 31740                             Poverty       153706
## 31753           Trade and financial flows       133206
## 31754           Trade and financial flows        53506
## 31756           Trade and financial flows       111306
## 31757           Trade and financial flows        52606
## 31758  Work, employment and vulnerability       150606
## 31759  Work, employment and vulnerability       150706
## 31760  Work, employment and vulnerability       148306
## 31765  Work, employment and vulnerability       140606
## 31766  Work, employment and vulnerability       110906
## 31767  Work, employment and vulnerability        43006
## 31770                   Composite indices       137506
## 31772                          Demography       122006
## 31773                          Demography        63106
## 31774                          Demography       132706
## 31775                          Demography       132806
## 31777                          Demography        44206
## 31778                          Demography        45106
## 31779                          Demography       121206
## 31780                           Education       103706
## 31781                           Education        69706
## 31782                           Education       123306
## 31783                           Education       123406
## 31790                           Education       103006
## 31791                           Education        24106
## 31792                           Education        24206
## 31794                           Education        23906
## 31795                           Education        24006
## 31825                              Gender       175106
## 31827                              Gender       169706
## 31830                              Gender       169806
## 31833                              Health        58006
## 31834                              Health        64406
## 31835                              Health        64306
## 31836                              Health        69206
## 31837                              Health       120606
## 31838                              Health       121106
## 31839                              Health       103206
## 31841                              Health        57806
## 31842                              Health        57206
## 31843                              Health        57906
## 31844                              Health        57506
## 31857     Income/composition of resources       141706
## 31858     Income/composition of resources       103606
## 31876                             Poverty       153706
## 31889           Trade and financial flows       133206
## 31890           Trade and financial flows        53506
## 31891           Trade and financial flows        99106
## 31892           Trade and financial flows       111306
## 31893           Trade and financial flows        52606
## 31894  Work, employment and vulnerability       150606
## 31895  Work, employment and vulnerability       150706
## 31896  Work, employment and vulnerability       148306
## 31901  Work, employment and vulnerability       140606
## 31902  Work, employment and vulnerability       110906
## 31903  Work, employment and vulnerability        43006
## 31906                   Composite indices       137506
## 31908                          Demography       122006
## 31909                          Demography        63106
## 31910                          Demography       132706
## 31911                          Demography       132806
## 31913                          Demography        44206
## 31914                          Demography        45106
## 31915                          Demography       121206
## 31916                           Education       103706
## 31917                           Education        69706
## 31926                           Education       103006
## 31927                           Education        24106
## 31928                           Education        24206
## 31930                           Education        23906
## 31931                           Education        24006
## 31961                              Gender       175106
## 31963                              Gender       169706
## 31966                              Gender       169806
## 31969                              Health        58006
## 31970                              Health        64406
## 31971                              Health        64306
## 31972                              Health        69206
## 31973                              Health       120606
## 31974                              Health       121106
## 31975                              Health       103206
## 31977                              Health        57806
## 31978                              Health        57206
## 31979                              Health        57906
## 31980                              Health        57506
## 31993     Income/composition of resources       141706
## 31994     Income/composition of resources       103606
## 32025                             Poverty       153706
## 32035           Trade and financial flows       133206
## 32036           Trade and financial flows        53506
## 32037           Trade and financial flows        99106
## 32038           Trade and financial flows       111306
## 32039           Trade and financial flows        52606
## 32041  Work, employment and vulnerability       150606
## 32042  Work, employment and vulnerability       150706
## 32043  Work, employment and vulnerability       148306
## 32048  Work, employment and vulnerability       140606
## 32049  Work, employment and vulnerability       110906
## 32050  Work, employment and vulnerability        43006
## 32054                          Demography       122006
## 32055                          Demography        63106
## 32056                          Demography       132706
## 32057                          Demography       132806
## 32059                          Demography        44206
## 32060                          Demography        45106
## 32061                          Demography       121206
## 32063                           Education        69706
## 32064                           Education       123306
## 32065                           Education       123406
## 32104                              Gender       175106
## 32106                              Gender       169706
## 32108                              Gender       169806
## 32111                              Health        58006
## 32112                              Health        64406
## 32113                              Health        64306
## 32114                              Health        69206
## 32115                              Health       120606
## 32116                              Health       121106
## 32117                              Health       103206
## 32119                              Health        57806
## 32120                              Health        57206
## 32121                              Health        57906
## 32122                              Health        57506
## 32135     Income/composition of resources       141706
## 32136     Income/composition of resources       103606
## 32161                             Poverty       153706
## 32170           Trade and financial flows       133206
## 32171           Trade and financial flows        53506
## 32172           Trade and financial flows        99106
## 32174           Trade and financial flows        52606
## 32176  Work, employment and vulnerability       150606
## 32177  Work, employment and vulnerability       150706
## 32178  Work, employment and vulnerability       148306
## 32182  Work, employment and vulnerability       140606
## 32183  Work, employment and vulnerability       110906
## 32184  Work, employment and vulnerability        43006
## 32186                   Composite indices       137506
## 32188                          Demography       122006
## 32189                          Demography        63106
## 32190                          Demography       132706
## 32191                          Demography       132806
## 32193                          Demography        44206
## 32194                          Demography        45106
## 32195                          Demography       121206
## 32196                           Education       103706
## 32197                           Education        69706
## 32198                           Education       123306
## 32199                           Education       123406
## 32205                           Education       103006
## 32206                           Education        24106
## 32207                           Education        24206
## 32209                           Education        23906
## 32210                           Education        24006
## 32239                              Gender       175106
## 32241                              Gender       169706
## 32245                              Gender       169806
## 32247                              Health        58006
## 32248                              Health        64406
## 32249                              Health        64306
## 32250                              Health        69206
## 32251                              Health       120606
## 32252                              Health       121106
## 32253                              Health       103206
## 32254                              Health        57806
## 32255                              Health        57206
## 32256                              Health        57906
## 32257                              Health        57506
## 32270     Income/composition of resources       141706
## 32271     Income/composition of resources       103606
## 32301           Trade and financial flows       133206
## 32302           Trade and financial flows        53506
## 32303           Trade and financial flows       111306
## 32304           Trade and financial flows        52606
## 32305  Work, employment and vulnerability       150606
## 32306  Work, employment and vulnerability       150706
## 32307  Work, employment and vulnerability       148306
## 32312  Work, employment and vulnerability       140606
## 32313  Work, employment and vulnerability       110906
## 32314  Work, employment and vulnerability        43006
## 32317                   Composite indices       137506
## 32319                          Demography       122006
## 32320                          Demography        63106
## 32321                          Demography       132706
## 32322                          Demography       132806
## 32324                          Demography        44206
## 32325                          Demography        45106
## 32326                          Demography       121206
## 32327                           Education       103706
## 32328                           Education        69706
## 32329                           Education       123306
## 32330                           Education       123406
## 32336                           Education       103006
## 32337                           Education        24106
## 32338                           Education        24206
## 32340                           Education        23906
## 32341                           Education        24006
## 32370                              Gender       175106
## 32372                              Gender       169706
## 32374                              Gender       169806
## 32376                              Health        64406
## 32377                              Health        64306
## 32378                              Health        69206
## 32379                              Health       120606
## 32380                              Health       121106
## 32381                              Health       103206
## 32382                              Health        57806
## 32383                              Health        57206
## 32384                              Health        57906
## 32385                              Health        57506
## 32398     Income/composition of resources       141706
## 32399     Income/composition of resources       103606
## 32428           Trade and financial flows       133206
## 32429           Trade and financial flows        53506
## 32430           Trade and financial flows       111306
## 32431           Trade and financial flows        52606
## 32432  Work, employment and vulnerability       150606
## 32433  Work, employment and vulnerability       150706
## 32434  Work, employment and vulnerability       148306
## 32439  Work, employment and vulnerability       140606
## 32440  Work, employment and vulnerability       110906
## 32441  Work, employment and vulnerability        43006
## 32444                   Composite indices       137506
## 32446                          Demography       122006
## 32447                          Demography        63106
## 32448                          Demography       132706
## 32449                          Demography       132806
## 32451                          Demography        44206
## 32452                          Demography        45106
## 32453                          Demography       121206
## 32454                           Education       103706
## 32455                           Education        69706
## 32456                           Education       123306
## 32457                           Education       123406
## 32463                           Education       103006
## 32464                           Education        24106
## 32465                           Education        24206
## 32467                           Education        23906
## 32468                           Education        24006
## 32496                              Gender       175106
## 32498                              Gender       169706
## 32501                              Gender       169806
## 32504                              Health        64406
## 32505                              Health        64306
## 32506                              Health        69206
## 32507                              Health       120606
## 32508                              Health       121106
## 32509                              Health       103206
## 32510                              Health        57806
## 32511                              Health        57206
## 32512                              Health        57906
## 32513                              Health        57506
## 32524     Income/composition of resources       141706
## 32525     Income/composition of resources       103606
## 32551                             Poverty       153706
## 32558           Trade and financial flows       133206
## 32559           Trade and financial flows        53506
## 32560           Trade and financial flows        99106
## 32561           Trade and financial flows       111306
## 32562           Trade and financial flows        52606
## 32563  Work, employment and vulnerability       150606
## 32564  Work, employment and vulnerability       150706
## 32565  Work, employment and vulnerability       148306
## 32570  Work, employment and vulnerability       140606
## 32571  Work, employment and vulnerability       110906
## 32572  Work, employment and vulnerability        43006
## 32574                   Composite indices       137506
## 32576                          Demography       122006
## 32577                          Demography        63106
## 32578                          Demography       132706
## 32579                          Demography       132806
## 32581                          Demography        44206
## 32582                          Demography        45106
## 32583                          Demography       121206
## 32584                           Education       103706
## 32585                           Education        69706
## 32594                           Education       103006
## 32595                           Education        24106
## 32596                           Education        24206
## 32598                           Education        23906
## 32599                           Education        24006
## 32627                              Gender       175106
## 32629                              Gender       169706
## 32633                              Gender       169806
## 32636                              Health        58006
## 32639                              Health        69206
## 32640                              Health       120606
## 32641                              Health       121106
## 32642                              Health       103206
## 32644                              Health        57806
## 32645                              Health        57206
## 32646                              Health        57906
## 32647                              Health        57506
## 32660     Income/composition of resources       141706
## 32661     Income/composition of resources       103606
## 32692                             Poverty       153706
## 32705           Trade and financial flows       133206
## 32710  Work, employment and vulnerability       150606
## 32711  Work, employment and vulnerability       150706
## 32712  Work, employment and vulnerability       148306
## 32717  Work, employment and vulnerability       140606
## 32718  Work, employment and vulnerability       110906
## 32719  Work, employment and vulnerability        43006
## 32722                   Composite indices       137506
## 32724                          Demography       122006
## 32725                          Demography        63106
## 32726                          Demography       132706
## 32727                          Demography       132806
## 32729                          Demography        44206
## 32730                          Demography        45106
## 32731                          Demography       121206
## 32732                           Education       103706
## 32733                           Education        69706
## 32734                           Education       123306
## 32735                           Education       123406
## 32742                           Education       103006
## 32743                           Education        24106
## 32744                           Education        24206
## 32746                           Education        23906
## 32747                           Education        24006
## 32781                              Gender       175106
## 32783                              Gender       169706
## 32786                              Gender       169806
## 32789                              Health        58006
## 32790                              Health        64406
## 32791                              Health        64306
## 32792                              Health        69206
## 32793                              Health       120606
## 32794                              Health       121106
## 32795                              Health       103206
## 32797                              Health        57806
## 32798                              Health        57206
## 32799                              Health        57906
## 32800                              Health        57506
## 32813     Income/composition of resources       141706
## 32814     Income/composition of resources       103606
## 32846                             Poverty       153706
## 32859           Trade and financial flows       133206
## 32860           Trade and financial flows        53506
## 32861           Trade and financial flows        99106
## 32862           Trade and financial flows       111306
## 32863           Trade and financial flows        52606
## 32864  Work, employment and vulnerability       150606
## 32865  Work, employment and vulnerability       150706
## 32866  Work, employment and vulnerability       148306
## 32871  Work, employment and vulnerability       140606
## 32872  Work, employment and vulnerability       110906
## 32873  Work, employment and vulnerability        43006
## 32878                          Demography       122006
## 32879                          Demography        63106
## 32880                          Demography       132706
## 32881                          Demography       132806
## 32883                          Demography        44206
## 32884                          Demography        45106
## 32885                          Demography       121206
## 32887                           Education        69706
## 32888                           Education       123306
## 32889                           Education       123406
## 32932                              Gender       175106
## 32934                              Gender       169706
## 32937                              Gender       169806
## 32940                              Health        58006
## 32943                              Health        69206
## 32944                              Health       120606
## 32945                              Health       121106
## 32946                              Health       103206
## 32947                              Health        57806
## 32948                              Health        57206
## 32949                              Health        57906
## 32950                              Health        57506
## 32963     Income/composition of resources       141706
## 32964     Income/composition of resources       103606
## 32996                             Poverty       153706
## 33007           Trade and financial flows       133206
## 33013  Work, employment and vulnerability       150606
## 33014  Work, employment and vulnerability       150706
## 33015  Work, employment and vulnerability       148306
## 33020  Work, employment and vulnerability       140606
## 33021  Work, employment and vulnerability       110906
## 33022  Work, employment and vulnerability        43006
## 33025                   Composite indices       137506
## 33027                          Demography       122006
## 33028                          Demography        63106
## 33029                          Demography       132706
## 33030                          Demography       132806
## 33032                          Demography        44206
## 33033                          Demography        45106
## 33034                          Demography       121206
## 33035                           Education       103706
## 33036                           Education        69706
## 33037                           Education       123306
## 33038                           Education       123406
## 33045                           Education       103006
## 33046                           Education        24106
## 33047                           Education        24206
## 33049                           Education        23906
## 33050                           Education        24006
## 33077                              Gender       175106
## 33079                              Gender       169706
## 33083                              Gender       169806
## 33086                              Health        58006
## 33087                              Health        64406
## 33088                              Health        64306
## 33089                              Health        69206
## 33090                              Health       120606
## 33091                              Health       121106
## 33092                              Health       103206
## 33094                              Health        57806
## 33095                              Health        57206
## 33096                              Health        57906
## 33097                              Health        57506
## 33110     Income/composition of resources       141706
## 33111     Income/composition of resources       103606
## 33142                             Poverty       153706
## 33154           Trade and financial flows       133206
## 33155           Trade and financial flows        53506
## 33156           Trade and financial flows        99106
## 33157           Trade and financial flows       111306
## 33158           Trade and financial flows        52606
## 33160  Work, employment and vulnerability       150606
## 33161  Work, employment and vulnerability       150706
## 33162  Work, employment and vulnerability       148306
## 33167  Work, employment and vulnerability       140606
## 33168  Work, employment and vulnerability       110906
## 33169  Work, employment and vulnerability        43006
## 33172                   Composite indices       137506
## 33174                          Demography       122006
## 33175                          Demography        63106
## 33176                          Demography       132706
## 33177                          Demography       132806
## 33179                          Demography        44206
## 33180                          Demography        45106
## 33181                          Demography       121206
## 33182                           Education       103706
## 33183                           Education        69706
## 33192                           Education       103006
## 33193                           Education        24106
## 33194                           Education        24206
## 33196                           Education        23906
## 33197                           Education        24006
## 33222                              Gender       175106
## 33224                              Gender       169706
## 33228                              Gender       169806
## 33231                              Health        64406
## 33232                              Health        64306
## 33233                              Health        69206
## 33234                              Health       120606
## 33235                              Health       121106
## 33236                              Health       103206
## 33237                              Health        57806
## 33238                              Health        57206
## 33239                              Health        57906
## 33240                              Health        57506
## 33253     Income/composition of resources       141706
## 33254     Income/composition of resources       103606
## 33274           Trade and financial flows       133206
## 33275           Trade and financial flows        53506
## 33276           Trade and financial flows        99106
## 33277           Trade and financial flows       111306
## 33278           Trade and financial flows        52606
## 33279  Work, employment and vulnerability       150606
## 33280  Work, employment and vulnerability       150706
## 33281  Work, employment and vulnerability       148306
## 33286  Work, employment and vulnerability       140606
## 33287  Work, employment and vulnerability       110906
## 33288  Work, employment and vulnerability        43006
## 33290                   Composite indices       137506
## 33292                          Demography       122006
## 33293                          Demography        63106
## 33294                          Demography       132706
## 33295                          Demography       132806
## 33297                          Demography        44206
## 33298                          Demography        45106
## 33299                          Demography       121206
## 33300                           Education       103706
## 33301                           Education        69706
## 33302                           Education       123306
## 33303                           Education       123406
## 33310                           Education       103006
## 33311                           Education        24106
## 33312                           Education        24206
## 33314                           Education        23906
## 33315                           Education        24006
## 33347                              Gender       175106
## 33349                              Gender       169706
## 33354                              Gender       169806
## 33357                              Health        58006
## 33358                              Health        64406
## 33359                              Health        64306
## 33360                              Health        69206
## 33361                              Health       120606
## 33362                              Health       121106
## 33363                              Health       103206
## 33364                              Health        57806
## 33365                              Health        57206
## 33366                              Health        57906
## 33367                              Health        57506
## 33379     Income/composition of resources       141706
## 33380     Income/composition of resources       103606
## 33406                             Poverty       153706
## 33414           Trade and financial flows        53506
## 33415           Trade and financial flows        99106
## 33416           Trade and financial flows       111306
## 33417           Trade and financial flows        52606
## 33418  Work, employment and vulnerability       150606
## 33419  Work, employment and vulnerability       150706
## 33420  Work, employment and vulnerability       148306
## 33425  Work, employment and vulnerability       140606
## 33426  Work, employment and vulnerability       110906
## 33427  Work, employment and vulnerability        43006
## 33430                   Composite indices       137506
## 33432                          Demography       122006
## 33433                          Demography        63106
## 33434                          Demography       132706
## 33435                          Demography       132806
## 33437                          Demography        44206
## 33438                          Demography        45106
## 33439                          Demography       121206
## 33440                           Education       103706
## 33441                           Education        69706
## 33442                           Education       123306
## 33443                           Education       123406
## 33450                           Education       103006
## 33451                           Education        24106
## 33452                           Education        24206
## 33454                           Education        23906
## 33455                           Education        24006
## 33488                              Gender       175106
## 33490                              Gender       169706
## 33493                              Gender       169806
## 33496                              Health        58006
## 33497                              Health        64406
## 33498                              Health        64306
## 33499                              Health        69206
## 33500                              Health       120606
## 33501                              Health       121106
## 33502                              Health       103206
## 33503                              Health        57806
## 33504                              Health        57206
## 33505                              Health        57906
## 33506                              Health        57506
## 33519     Income/composition of resources       141706
## 33520     Income/composition of resources       103606
## 33551                             Poverty       153706
## 33564           Trade and financial flows       133206
## 33565           Trade and financial flows        53506
## 33566           Trade and financial flows        99106
## 33567           Trade and financial flows       111306
## 33568           Trade and financial flows        52606
## 33570  Work, employment and vulnerability       150606
## 33571  Work, employment and vulnerability       150706
## 33572  Work, employment and vulnerability       148306
## 33577  Work, employment and vulnerability       140606
## 33578  Work, employment and vulnerability       110906
## 33579  Work, employment and vulnerability        43006
## 33581                   Composite indices       137506
## 33583                          Demography       122006
## 33584                          Demography        63106
## 33585                          Demography       132706
## 33586                          Demography       132806
## 33588                          Demography        44206
## 33589                          Demography        45106
## 33590                          Demography       121206
## 33591                           Education       103706
## 33592                           Education        69706
## 33593                           Education       123306
## 33594                           Education       123406
## 33601                           Education       103006
## 33602                           Education        24106
## 33603                           Education        24206
## 33605                           Education        23906
## 33606                           Education        24006
## 33639                              Gender       175106
## 33641                              Gender       169706
## 33645                              Gender       169806
## 33648                              Health        64406
## 33649                              Health        64306
## 33650                              Health        69206
## 33651                              Health       120606
## 33652                              Health       121106
## 33653                              Health       103206
## 33655                              Health        57806
## 33656                              Health        57206
## 33657                              Health        57906
## 33658                              Health        57506
## 33671     Income/composition of resources       141706
## 33672     Income/composition of resources       103606
## 33691                             Poverty       153706
## 33704           Trade and financial flows       133206
## 33705           Trade and financial flows        53506
## 33706           Trade and financial flows        99106
## 33707           Trade and financial flows       111306
## 33708           Trade and financial flows        52606
## 33709  Work, employment and vulnerability       150606
## 33710  Work, employment and vulnerability       150706
## 33711  Work, employment and vulnerability       148306
## 33716  Work, employment and vulnerability       140606
## 33717  Work, employment and vulnerability       110906
## 33718  Work, employment and vulnerability        43006
## 33723                          Demography       122006
## 33724                          Demography        63106
## 33725                          Demography       132706
## 33726                          Demography       132806
## 33728                          Demography        44206
## 33729                          Demography        45106
## 33730                          Demography       121206
## 33761                              Gender       175106
## 33763                              Gender       169706
## 33766                              Gender       169806
## 33771                              Health        69206
## 33772                              Health       120606
## 33773                              Health       121106
## 33774                              Health       103206
## 33775                              Health        57806
## 33776                              Health        57206
## 33777                              Health        57906
## 33778                              Health        57506
## 33790     Income/composition of resources       141706
## 33791     Income/composition of resources       103606
## 33817                             Poverty       153706
## 33824           Trade and financial flows       133206
## 33829  Work, employment and vulnerability       150606
## 33830  Work, employment and vulnerability       150706
## 33831  Work, employment and vulnerability       148306
## 33835  Work, employment and vulnerability       140606
## 33836  Work, employment and vulnerability       110906
## 33837  Work, employment and vulnerability        43006
## 33839                   Composite indices       137506
## 33841                          Demography       122006
## 33842                          Demography        63106
## 33843                          Demography       132706
## 33844                          Demography       132806
## 33846                          Demography        44206
## 33847                          Demography        45106
## 33848                          Demography       121206
## 33849                           Education       103706
## 33850                           Education        69706
## 33851                           Education       123306
## 33852                           Education       123406
## 33859                           Education       103006
## 33860                           Education        24106
## 33861                           Education        24206
## 33863                           Education        23906
## 33864                           Education        24006
## 33891                              Gender       175106
## 33893                              Gender       169706
## 33897                              Gender       169806
## 33900                              Health        58006
## 33901                              Health        64406
## 33902                              Health        64306
## 33903                              Health        69206
## 33904                              Health       120606
## 33905                              Health       121106
## 33906                              Health       103206
## 33908                              Health        57806
## 33909                              Health        57206
## 33910                              Health        57906
## 33911                              Health        57506
## 33924     Income/composition of resources       141706
## 33925     Income/composition of resources       103606
## 33956                             Poverty       153706
## 33968           Trade and financial flows       133206
## 33969           Trade and financial flows        53506
## 33970           Trade and financial flows        99106
## 33971           Trade and financial flows       111306
## 33974  Work, employment and vulnerability       150606
## 33975  Work, employment and vulnerability       150706
## 33976  Work, employment and vulnerability       148306
## 33981  Work, employment and vulnerability       140606
## 33982  Work, employment and vulnerability       110906
## 33983  Work, employment and vulnerability        43006
## 33986                   Composite indices       137506
## 33988                          Demography       122006
## 33989                          Demography        63106
## 33990                          Demography       132706
## 33991                          Demography       132806
## 33993                          Demography        44206
## 33994                          Demography        45106
## 33995                          Demography       121206
## 33996                           Education       103706
## 33997                           Education        69706
## 33998                           Education       123306
## 33999                           Education       123406
## 34006                           Education       103006
## 34007                           Education        24106
## 34008                           Education        24206
## 34010                           Education        23906
## 34011                           Education        24006
## 34041                              Gender       175106
## 34043                              Gender       169706
## 34048                              Gender       169806
## 34050                              Health        58006
## 34053                              Health        69206
## 34054                              Health       120606
## 34055                              Health       121106
## 34056                              Health       103206
## 34057                              Health        57806
## 34058                              Health        57206
## 34059                              Health        57906
## 34060                              Health        57506
## 34073     Income/composition of resources       141706
## 34074     Income/composition of resources       103606
## 34106                             Poverty       153706
## 34119           Trade and financial flows       133206
## 34125  Work, employment and vulnerability       150606
## 34126  Work, employment and vulnerability       150706
## 34127  Work, employment and vulnerability       148306
## 34132  Work, employment and vulnerability       140606
## 34133  Work, employment and vulnerability       110906
## 34134  Work, employment and vulnerability        43006
## 34137                   Composite indices       137506
## 34139                          Demography       122006
## 34140                          Demography        63106
## 34141                          Demography       132706
## 34142                          Demography       132806
## 34144                          Demography        44206
## 34145                          Demography        45106
## 34146                          Demography       121206
## 34147                           Education       103706
## 34148                           Education        69706
## 34149                           Education       123306
## 34150                           Education       123406
## 34156                           Education       103006
## 34157                           Education        24106
## 34158                           Education        24206
## 34160                           Education        23906
## 34161                           Education        24006
## 34189                              Gender       175106
## 34191                              Gender       169706
## 34195                              Gender       169806
## 34197                              Health        64406
## 34198                              Health        64306
## 34199                              Health        69206
## 34200                              Health       120606
## 34201                              Health       121106
## 34202                              Health       103206
## 34203                              Health        57806
## 34204                              Health        57206
## 34205                              Health        57906
## 34206                              Health        57506
## 34219     Income/composition of resources       141706
## 34220     Income/composition of resources       103606
## 34250           Trade and financial flows       133206
## 34251           Trade and financial flows        53506
## 34252           Trade and financial flows       111306
## 34253           Trade and financial flows        52606
## 34254  Work, employment and vulnerability       150606
## 34255  Work, employment and vulnerability       150706
## 34256  Work, employment and vulnerability       148306
## 34261  Work, employment and vulnerability       140606
## 34262  Work, employment and vulnerability       110906
## 34263  Work, employment and vulnerability        43006
## 34267                   Composite indices       137506
## 34269                          Demography       122006
## 34270                          Demography        63106
## 34271                          Demography       132706
## 34272                          Demography       132806
## 34274                          Demography        44206
## 34275                          Demography        45106
## 34276                          Demography       121206
## 34277                           Education       103706
## 34278                           Education        69706
## 34287                           Education       103006
## 34288                           Education        24106
## 34289                           Education        24206
## 34291                           Education        23906
## 34292                           Education        24006
## 34326                              Gender       175106
## 34328                              Gender       169706
## 34330                              Gender       169806
## 34333                              Health        58006
## 34334                              Health        64406
## 34335                              Health        64306
## 34336                              Health        69206
## 34337                              Health       120606
## 34338                              Health       121106
## 34339                              Health       103206
## 34340                              Health        57806
## 34341                              Health        57206
## 34342                              Health        57906
## 34343                              Health        57506
## 34356     Income/composition of resources       141706
## 34357     Income/composition of resources       103606
## 34375                             Poverty       153706
## 34386           Trade and financial flows       133206
## 34387           Trade and financial flows        53506
## 34388           Trade and financial flows        99106
## 34389           Trade and financial flows       111306
## 34391  Work, employment and vulnerability       150606
## 34392  Work, employment and vulnerability       150706
## 34393  Work, employment and vulnerability       148306
## 34398  Work, employment and vulnerability       140606
## 34399  Work, employment and vulnerability       110906
## 34400  Work, employment and vulnerability        43006
## 34405                          Demography       122006
## 34406                          Demography        63106
## 34407                          Demography       132706
## 34408                          Demography       132806
## 34410                          Demography        44206
## 34411                          Demography        45106
## 34412                          Demography       121206
## 34414                           Education        69706
## 34455                              Gender       175106
## 34457                              Gender       169706
## 34459                              Gender       169806
## 34464                              Health        69206
## 34465                              Health       120606
## 34466                              Health       121106
## 34467                              Health       103206
## 34469                              Health        57806
## 34470                              Health        57206
## 34471                              Health        57906
## 34472                              Health        57506
## 34484     Income/composition of resources       141706
## 34485     Income/composition of resources       103606
## 34512                             Poverty       153706
## 34519           Trade and financial flows       133206
## 34523  Work, employment and vulnerability       150606
## 34524  Work, employment and vulnerability       150706
## 34525  Work, employment and vulnerability       148306
## 34530  Work, employment and vulnerability       140606
## 34531  Work, employment and vulnerability       110906
## 34532  Work, employment and vulnerability        43006
## 34536                          Demography       122006
## 34537                          Demography        63106
## 34538                          Demography       132706
## 34539                          Demography       132806
## 34541                          Demography        44206
## 34542                          Demography        45106
## 34543                          Demography       121206
## 34576                              Gender       175106
## 34578                              Gender       169706
## 34582                              Gender       169806
## 34585                              Health        64406
## 34586                              Health        64306
## 34587                              Health        69206
## 34588                              Health       120606
## 34589                              Health       121106
## 34590                              Health       103206
## 34592                              Health        57806
## 34593                              Health        57206
## 34594                              Health        57906
## 34595                              Health        57506
## 34608     Income/composition of resources       141706
## 34609     Income/composition of resources       103606
## 34646           Trade and financial flows       133206
## 34647           Trade and financial flows        53506
## 34648           Trade and financial flows        99106
## 34649           Trade and financial flows       111306
## 34650           Trade and financial flows        52606
## 34651  Work, employment and vulnerability       150606
## 34652  Work, employment and vulnerability       150706
## 34653  Work, employment and vulnerability       148306
## 34658  Work, employment and vulnerability       140606
## 34659  Work, employment and vulnerability       110906
## 34660  Work, employment and vulnerability        43006
## 34662                   Composite indices       137506
## 34664                          Demography       122006
## 34665                          Demography        63106
## 34666                          Demography       132706
## 34667                          Demography       132806
## 34669                          Demography        44206
## 34670                          Demography        45106
## 34671                          Demography       121206
## 34672                           Education       103706
## 34673                           Education        69706
## 34682                           Education       103006
## 34683                           Education        24106
## 34684                           Education        24206
## 34686                           Education        23906
## 34687                           Education        24006
## 34713                              Gender       175106
## 34715                              Gender       169706
## 34717                              Gender       169806
## 34720                              Health        58006
## 34721                              Health        64406
## 34722                              Health        64306
## 34723                              Health        69206
## 34724                              Health       120606
## 34725                              Health       121106
## 34726                              Health       103206
## 34728                              Health        57806
## 34729                              Health        57206
## 34730                              Health        57906
## 34731                              Health        57506
## 34744     Income/composition of resources       141706
## 34745     Income/composition of resources       103606
## 34763                             Poverty       153706
## 34774           Trade and financial flows       133206
## 34775           Trade and financial flows        53506
## 34776           Trade and financial flows        99106
## 34777           Trade and financial flows       111306
## 34778           Trade and financial flows        52606
## 34779  Work, employment and vulnerability       150606
## 34780  Work, employment and vulnerability       150706
## 34781  Work, employment and vulnerability       148306
## 34786  Work, employment and vulnerability       140606
## 34787  Work, employment and vulnerability       110906
## 34788  Work, employment and vulnerability        43006
## 34791                   Composite indices       137506
## 34793                          Demography       122006
## 34794                          Demography        63106
## 34795                          Demography       132706
## 34796                          Demography       132806
## 34798                          Demography        44206
## 34799                          Demography        45106
## 34800                          Demography       121206
## 34801                           Education       103706
## 34802                           Education        69706
## 34810                           Education       103006
## 34811                           Education        24106
## 34812                           Education        24206
## 34814                           Education        23906
## 34815                           Education        24006
## 34842                              Gender       175106
## 34844                              Gender       169706
## 34847                              Gender       169806
## 34850                              Health        58006
## 34851                              Health        64406
## 34852                              Health        64306
## 34853                              Health        69206
## 34854                              Health       120606
## 34855                              Health       121106
## 34856                              Health       103206
## 34858                              Health        57806
## 34859                              Health        57206
## 34860                              Health        57906
## 34861                              Health        57506
## 34874     Income/composition of resources       141706
## 34875     Income/composition of resources       103606
## 34906                             Poverty       153706
## 34918           Trade and financial flows       133206
## 34919           Trade and financial flows        53506
## 34920           Trade and financial flows        99106
## 34922           Trade and financial flows        52606
## 34923  Work, employment and vulnerability       150606
## 34924  Work, employment and vulnerability       150706
## 34925  Work, employment and vulnerability       148306
## 34930  Work, employment and vulnerability       140606
## 34931  Work, employment and vulnerability       110906
## 34932  Work, employment and vulnerability        43006
## 34935                   Composite indices       137506
## 34937                          Demography       122006
## 34938                          Demography        63106
## 34939                          Demography       132706
## 34940                          Demography       132806
## 34942                          Demography        44206
## 34943                          Demography        45106
## 34944                          Demography       121206
## 34945                           Education       103706
## 34946                           Education        69706
## 34954                           Education       103006
## 34955                           Education        24106
## 34956                           Education        24206
## 34958                           Education        23906
## 34959                           Education        24006
## 34987                              Gender       175106
## 34989                              Gender       169706
## 34993                              Gender       169806
## 34996                              Health        58006
## 34997                              Health        64406
## 34998                              Health        64306
## 34999                              Health        69206
## 35000                              Health       120606
## 35001                              Health       121106
## 35002                              Health       103206
## 35004                              Health        57806
## 35005                              Health        57206
## 35006                              Health        57906
## 35007                              Health        57506
## 35020     Income/composition of resources       141706
## 35021     Income/composition of resources       103606
## 35051                             Poverty       153706
## 35064           Trade and financial flows        53506
## 35065           Trade and financial flows        99106
## 35066           Trade and financial flows       111306
## 35068  Work, employment and vulnerability       150606
## 35069  Work, employment and vulnerability       150706
## 35070  Work, employment and vulnerability       148306
## 35075  Work, employment and vulnerability       140606
## 35076  Work, employment and vulnerability       110906
## 35077  Work, employment and vulnerability        43006
## 35080                   Composite indices       137506
## 35082                          Demography       122006
## 35083                          Demography        63106
## 35084                          Demography       132706
## 35085                          Demography       132806
## 35087                          Demography        44206
## 35088                          Demography        45106
## 35089                          Demography       121206
## 35090                           Education       103706
## 35091                           Education        69706
## 35092                           Education       123306
## 35093                           Education       123406
## 35100                           Education       103006
## 35101                           Education        24106
## 35102                           Education        24206
## 35104                           Education        23906
## 35105                           Education        24006
## 35134                              Gender       175106
## 35136                              Gender       169706
## 35140                              Gender       169806
## 35143                              Health        58006
## 35144                              Health        64406
## 35145                              Health        64306
## 35146                              Health        69206
## 35147                              Health       120606
## 35148                              Health       121106
## 35149                              Health       103206
## 35151                              Health        57806
## 35152                              Health        57206
## 35153                              Health        57906
## 35154                              Health        57506
## 35167     Income/composition of resources       141706
## 35168     Income/composition of resources       103606
## 35200                             Poverty       153706
## 35210           Trade and financial flows       133206
## 35211           Trade and financial flows        53506
## 35212           Trade and financial flows        99106
## 35213           Trade and financial flows       111306
## 35214           Trade and financial flows        52606
## 35215  Work, employment and vulnerability       150606
## 35216  Work, employment and vulnerability       150706
## 35217  Work, employment and vulnerability       148306
## 35222  Work, employment and vulnerability       140606
## 35223  Work, employment and vulnerability       110906
## 35224  Work, employment and vulnerability        43006
## 35227                   Composite indices       137506
## 35229                          Demography       122006
## 35230                          Demography        63106
## 35231                          Demography       132706
## 35232                          Demography       132806
## 35234                          Demography        44206
## 35235                          Demography        45106
## 35236                          Demography       121206
## 35237                           Education       103706
## 35238                           Education        69706
## 35239                           Education       123306
## 35240                           Education       123406
## 35247                           Education       103006
## 35248                           Education        24106
## 35249                           Education        24206
## 35251                           Education        23906
## 35252                           Education        24006
## 35294                              Health        58006
## 35295                              Health        64406
## 35296                              Health        64306
## 35297                              Health        69206
## 35298                              Health       120606
## 35299                              Health       121106
## 35300                              Health       103206
## 35301                              Health        57806
## 35302                              Health        57206
## 35303                              Health        57906
## 35304                              Health        57506
## 35317     Income/composition of resources       141706
## 35318     Income/composition of resources       103606
## 35362           Trade and financial flows       133206
## 35363           Trade and financial flows        53506
## 35364           Trade and financial flows        99106
## 35365           Trade and financial flows       111306
## 35366           Trade and financial flows        52606
## 35380                   Composite indices       137506
## 35382                          Demography       122006
## 35383                          Demography        63106
## 35384                          Demography       132706
## 35385                          Demography       132806
## 35387                          Demography        44206
## 35388                          Demography        45106
## 35389                          Demography       121206
## 35390                           Education       103706
## 35391                           Education        69706
## 35400                           Education       103006
## 35401                           Education        24106
## 35402                           Education        24206
## 35404                           Education        23906
## 35405                           Education        24006
## 35447                              Health        58006
## 35448                              Health        64406
## 35449                              Health        64306
## 35450                              Health        69206
## 35451                              Health       120606
## 35452                              Health       121106
## 35453                              Health       103206
## 35455                              Health        57806
## 35456                              Health        57206
## 35457                              Health        57906
## 35458                              Health        57506
## 35471     Income/composition of resources       141706
## 35472     Income/composition of resources       103606
## 35514           Trade and financial flows       133206
## 35515           Trade and financial flows        53506
## 35516           Trade and financial flows        99106
## 35518           Trade and financial flows        52606
## 35534                          Demography       122006
## 35535                          Demography        63106
## 35536                          Demography       132706
## 35537                          Demography       132806
## 35539                          Demography        44206
## 35540                          Demography        45106
## 35541                          Demography       121206
## 35543                           Education        69706
## 35585                              Health        58006
## 35586                              Health        64406
## 35587                              Health        64306
## 35588                              Health        69206
## 35589                              Health       120606
## 35590                              Health       121106
## 35591                              Health       103206
## 35593                              Health        57806
## 35594                              Health        57206
## 35595                              Health        57906
## 35596                              Health        57506
## 35609     Income/composition of resources       141706
## 35610     Income/composition of resources       103606
## 35652           Trade and financial flows       133206
## 35672                          Demography       122006
## 35673                          Demography        63106
## 35674                          Demography       132706
## 35675                          Demography       132806
## 35677                          Demography        44206
## 35678                          Demography        45106
## 35679                          Demography       121206
## 35710                              Health        64406
## 35711                              Health        64306
## 35712                              Health        69206
## 35713                              Health       120606
## 35714                              Health       121106
## 35715                              Health       103206
## 35716                              Health        57806
## 35717                              Health        57206
## 35718                              Health        57906
## 35719                              Health        57506
## 35730     Income/composition of resources       141706
## 35731     Income/composition of resources       103606
## 35743           Trade and financial flows       133206
## 35744           Trade and financial flows        53506
## 35745           Trade and financial flows        99106
## 35746           Trade and financial flows       111306
## 35747           Trade and financial flows        52606
## 35750                   Composite indices       137506
## 35752                          Demography       122006
## 35753                          Demography        63106
## 35754                          Demography       132706
## 35755                          Demography       132806
## 35757                          Demography        44206
## 35758                          Demography        45106
## 35759                          Demography       121206
## 35760                           Education       103706
## 35761                           Education        69706
## 35770                           Education       103006
## 35771                           Education        24106
## 35772                           Education        24206
## 35774                           Education        23906
## 35775                           Education        24006
## 35813                              Health        58006
## 35814                              Health        64406
## 35815                              Health        64306
## 35816                              Health        69206
## 35817                              Health       120606
## 35818                              Health       121106
## 35819                              Health       103206
## 35821                              Health        57806
## 35822                              Health        57206
## 35823                              Health        57906
## 35824                              Health        57506
## 35837     Income/composition of resources       141706
## 35838     Income/composition of resources       103606
## 35870           Trade and financial flows       133206
## 35871           Trade and financial flows        53506
## 35872           Trade and financial flows        99106
## 35873           Trade and financial flows       111306
## 35874           Trade and financial flows        52606
## 35887                   Composite indices       137506
## 35889                          Demography       122006
## 35890                          Demography        63106
## 35891                          Demography       132706
## 35892                          Demography       132806
## 35894                          Demography        44206
## 35895                          Demography        45106
## 35896                          Demography       121206
## 35897                           Education       103706
## 35898                           Education        69706
## 35907                           Education       103006
## 35908                           Education        24106
## 35909                           Education        24206
## 35911                           Education        23906
## 35912                           Education        24006
## 35951                              Health        58006
## 35952                              Health        64406
## 35953                              Health        64306
## 35954                              Health        69206
## 35955                              Health       120606
## 35956                              Health       121106
## 35957                              Health       103206
## 35958                              Health        57806
## 35959                              Health        57206
## 35960                              Health        57906
## 35961                              Health        57506
## 35974     Income/composition of resources       141706
## 35975     Income/composition of resources       103606
## 36020           Trade and financial flows       133206
## 36021           Trade and financial flows        53506
## 36022           Trade and financial flows        99106
## 36038                   Composite indices       137506
## 36040                          Demography       122006
## 36041                          Demography        63106
## 36042                          Demography       132706
## 36043                          Demography       132806
## 36045                          Demography        44206
## 36046                          Demography        45106
## 36047                          Demography       121206
## 36048                           Education       103706
## 36049                           Education        69706
## 36050                           Education       123306
## 36051                           Education       123406
## 36057                           Education       103006
## 36058                           Education        24106
## 36059                           Education        24206
## 36061                           Education        23906
## 36062                           Education        24006
## 36099                              Health        58006
## 36100                              Health        64406
## 36101                              Health        64306
## 36102                              Health        69206
## 36103                              Health       120606
## 36104                              Health       121106
## 36105                              Health       103206
## 36106                              Health        57806
## 36107                              Health        57206
## 36108                              Health        57906
## 36109                              Health        57506
## 36122     Income/composition of resources       141706
## 36123     Income/composition of resources       103606
## 36153           Trade and financial flows       133206
## 36154           Trade and financial flows        53506
## 36155           Trade and financial flows       111306
## 36156           Trade and financial flows        52606
## 36169                   Composite indices       137506
## 36171                          Demography       122006
## 36172                          Demography        63106
## 36173                          Demography       132706
## 36174                          Demography       132806
## 36176                          Demography        44206
## 36177                          Demography        45106
## 36178                          Demography       121206
## 36179                           Education       103706
## 36180                           Education        69706
## 36181                           Education       123306
## 36182                           Education       123406
## 36188                           Education       103006
## 36189                           Education        24106
## 36190                           Education        24206
## 36192                           Education        23906
## 36193                           Education        24006
## 36232                              Health        64406
## 36233                              Health        64306
## 36234                              Health        69206
## 36235                              Health       120606
## 36236                              Health       121106
## 36237                              Health       103206
## 36238                              Health        57806
## 36239                              Health        57206
## 36240                              Health        57906
## 36241                              Health        57506
## 36254     Income/composition of resources       141706
## 36255     Income/composition of resources       103606
## 36285           Trade and financial flows       133206
## 36286           Trade and financial flows        53506
## 36288           Trade and financial flows        52606
## 36303                          Demography       122006
## 36304                          Demography        63106
## 36305                          Demography       132706
## 36306                          Demography       132806
## 36308                          Demography        44206
## 36309                          Demography        45106
## 36310                          Demography       121206
## 36312                           Education        69706
## 36313                           Education       123306
## 36314                           Education       123406
## 36365                              Health        58006
## 36366                              Health        64406
## 36367                              Health        64306
## 36368                              Health        69206
## 36369                              Health       120606
## 36370                              Health       121106
## 36371                              Health       103206
## 36373                              Health        57806
## 36374                              Health        57206
## 36375                              Health        57906
## 36376                              Health        57506
## 36434           Trade and financial flows       133206
## 36452                          Demography       122006
## 36453                          Demography        63106
## 36454                          Demography       132706
## 36455                          Demography       132806
## 36457                          Demography        44206
## 36458                          Demography        45106
## 36459                          Demography       121206
## 36461                           Education        69706
## 36462                           Education       123306
## 36463                           Education       123406
## 36504                              Health        58006
## 36505                              Health        64406
## 36506                              Health        64306
## 36507                              Health        69206
## 36508                              Health       120606
## 36509                              Health       121106
## 36510                              Health       103206
## 36511                              Health        57806
## 36512                              Health        57206
## 36513                              Health        57906
## 36514                              Health        57506
## 36526     Income/composition of resources       141706
## 36527     Income/composition of resources       103606
## 36549           Trade and financial flows       133206
## 36550           Trade and financial flows        53506
## 36551           Trade and financial flows        99106
## 36564                   Composite indices       137506
## 36566                          Demography       122006
## 36567                          Demography        63106
## 36568                          Demography       132706
## 36569                          Demography       132806
## 36571                          Demography        44206
## 36572                          Demography        45106
## 36573                          Demography       121206
## 36574                           Education       103706
## 36575                           Education        69706
## 36576                           Education       123306
## 36577                           Education       123406
## 36584                           Education       103006
## 36585                           Education        24106
## 36586                           Education        24206
## 36588                           Education        23906
## 36589                           Education        24006
## 36628                              Health        58006
## 36629                              Health        64406
## 36630                              Health        64306
## 36631                              Health        69206
## 36632                              Health       120606
## 36633                              Health       121106
## 36634                              Health       103206
## 36636                              Health        57806
## 36637                              Health        57206
## 36638                              Health        57906
## 36639                              Health        57506
## 36652     Income/composition of resources       141706
## 36653     Income/composition of resources       103606
## 36697           Trade and financial flows       133206
## 36698           Trade and financial flows        53506
## 36699           Trade and financial flows        99106
## 36700           Trade and financial flows       111306
## 36701           Trade and financial flows        52606
## 36714                   Composite indices       137506
## 36716                          Demography       122006
## 36717                          Demography        63106
## 36718                          Demography       132706
## 36719                          Demography       132806
## 36721                          Demography        44206
## 36722                          Demography        45106
## 36723                          Demography       121206
## 36724                           Education       103706
## 36725                           Education        69706
## 36726                           Education       123306
## 36727                           Education       123406
## 36733                           Education       103006
## 36734                           Education        24106
## 36735                           Education        24206
## 36737                           Education        23906
## 36738                           Education        24006
## 36774                              Health        58006
## 36775                              Health        64406
## 36776                              Health        64306
## 36777                              Health        69206
## 36778                              Health       120606
## 36779                              Health       121106
## 36780                              Health       103206
## 36781                              Health        57806
## 36782                              Health        57206
## 36783                              Health        57906
## 36784                              Health        57506
## 36797     Income/composition of resources       141706
## 36798     Income/composition of resources       103606
## 36831           Trade and financial flows       133206
## 36832           Trade and financial flows        53506
## 36833           Trade and financial flows        99106
## 36834           Trade and financial flows       111306
## 36835           Trade and financial flows        52606
## 36850                          Demography       122006
## 36851                          Demography        63106
## 36852                          Demography       132706
## 36853                          Demography       132806
## 36855                          Demography        44206
## 36856                          Demography        45106
## 36857                          Demography       121206
## 36859                           Education        69706
## 36911                              Health        58006
## 36912                              Health        64406
## 36913                              Health        64306
## 36914                              Health        69206
## 36915                              Health       120606
## 36916                              Health       121106
## 36917                              Health       103206
## 36918                              Health        57806
## 36919                              Health        57206
## 36920                              Health        57906
## 36921                              Health        57506
## 36934     Income/composition of resources       141706
## 36935     Income/composition of resources       103606
## 36967           Trade and financial flows       133206
## 36985                   Composite indices       137506
## 36987                          Demography       122006
## 36988                          Demography        63106
## 36989                          Demography       132706
## 36990                          Demography       132806
## 36992                          Demography        44206
## 36993                          Demography        45106
## 36994                          Demography       121206
## 36995                           Education       103706
## 36996                           Education        69706
## 37004                           Education       103006
## 37005                           Education        24106
## 37006                           Education        24206
## 37008                           Education        23906
## 37009                           Education        24006
## 37047                              Health        58006
## 37048                              Health        64406
## 37049                              Health        64306
## 37050                              Health        69206
## 37051                              Health       120606
## 37052                              Health       121106
## 37053                              Health       103206
## 37055                              Health        57806
## 37056                              Health        57206
## 37057                              Health        57906
## 37058                              Health        57506
## 37071     Income/composition of resources       141706
## 37072     Income/composition of resources       103606
## 37108           Trade and financial flows       133206
## 37109           Trade and financial flows        53506
## 37110           Trade and financial flows        99106
## 37111           Trade and financial flows       111306
## 37112           Trade and financial flows        52606
## 37126                   Composite indices       137506
## 37128                          Demography       122006
## 37129                          Demography        63106
## 37130                          Demography       132706
## 37131                          Demography       132806
## 37133                          Demography        44206
## 37134                          Demography        45106
## 37135                          Demography       121206
## 37136                           Education       103706
## 37137                           Education        69706
## 37146                           Education       103006
## 37147                           Education        24106
## 37148                           Education        24206
## 37150                           Education        23906
## 37151                           Education        24006
## 37188                              Health        58006
## 37189                              Health        64406
## 37190                              Health        64306
## 37191                              Health        69206
## 37192                              Health       120606
## 37193                              Health       121106
## 37194                              Health       103206
## 37196                              Health        57806
## 37197                              Health        57206
## 37198                              Health        57906
## 37199                              Health        57506
## 37212     Income/composition of resources       141706
## 37213     Income/composition of resources       103606
## 37256           Trade and financial flows       133206
## 37257           Trade and financial flows        53506
## 37258           Trade and financial flows        99106
## 37259           Trade and financial flows       111306
## 37260           Trade and financial flows        52606
## 37276                          Demography       122006
## 37277                          Demography        63106
## 37278                          Demography       132706
## 37279                          Demography       132806
## 37281                          Demography        44206
## 37282                          Demography        45106
## 37283                          Demography       121206
## 37285                           Education        69706
## 37338                              Health        64406
## 37339                              Health        64306
## 37340                              Health        69206
## 37341                              Health       120606
## 37342                              Health       121106
## 37343                              Health       103206
## 37345                              Health        57806
## 37346                              Health        57206
## 37347                              Health        57906
## 37348                              Health        57506
## 37361     Income/composition of resources       141706
## 37362     Income/composition of resources       103606
## 37403           Trade and financial flows       133206
## 37404           Trade and financial flows        53506
## 37405           Trade and financial flows        99106
## 37420                   Composite indices       137506
## 37422                          Demography       122006
## 37423                          Demography        63106
## 37424                          Demography       132706
## 37425                          Demography       132806
## 37427                          Demography        44206
## 37428                          Demography        45106
## 37429                          Demography       121206
## 37430                           Education       103706
## 37431                           Education        69706
## 37439                           Education       103006
## 37440                           Education        24106
## 37441                           Education        24206
## 37443                           Education        23906
## 37444                           Education        24006
## 37481                              Health        58006
## 37482                              Health        64406
## 37483                              Health        64306
## 37484                              Health        69206
## 37485                              Health       120606
## 37486                              Health       121106
## 37487                              Health       103206
## 37489                              Health        57806
## 37490                              Health        57206
## 37491                              Health        57906
## 37492                              Health        57506
## 37505     Income/composition of resources       141706
## 37506     Income/composition of resources       103606
## 37549           Trade and financial flows       133206
## 37550           Trade and financial flows        53506
## 37551           Trade and financial flows        99106
## 37552           Trade and financial flows       111306
## 37553           Trade and financial flows        52606
## 37566                   Composite indices       137506
## 37568                          Demography       122006
## 37569                          Demography        63106
## 37570                          Demography       132706
## 37571                          Demography       132806
## 37573                          Demography        44206
## 37574                          Demography        45106
## 37575                          Demography       121206
## 37576                           Education       103706
## 37577                           Education        69706
## 37578                           Education       123306
## 37579                           Education       123406
## 37585                           Education       103006
## 37586                           Education        24106
## 37587                           Education        24206
## 37589                           Education        23906
## 37590                           Education        24006
## 37626                              Health        58006
## 37627                              Health        64406
## 37628                              Health        64306
## 37629                              Health        69206
## 37630                              Health       120606
## 37631                              Health       121106
## 37632                              Health       103206
## 37634                              Health        57806
## 37635                              Health        57206
## 37636                              Health        57906
## 37637                              Health        57506
## 37650     Income/composition of resources       141706
## 37651     Income/composition of resources       103606
## 37681           Trade and financial flows       133206
## 37682           Trade and financial flows        53506
## 37683           Trade and financial flows        99106
## 37684           Trade and financial flows       111306
## 37685           Trade and financial flows        52606
## 37698                   Composite indices       137506
## 37700                          Demography       122006
## 37701                          Demography        63106
## 37702                          Demography       132706
## 37703                          Demography       132806
## 37705                          Demography        44206
## 37706                          Demography        45106
## 37707                          Demography       121206
## 37708                           Education       103706
## 37709                           Education        69706
## 37718                           Education       103006
## 37719                           Education        24106
## 37720                           Education        24206
## 37722                           Education        23906
## 37723                           Education        24006
## 37764                              Health        58006
## 37765                              Health        64406
## 37766                              Health        64306
## 37767                              Health        69206
## 37768                              Health       120606
## 37769                              Health       121106
## 37770                              Health       103206
## 37772                              Health        57806
## 37773                              Health        57206
## 37774                              Health        57906
## 37775                              Health        57506
## 37788     Income/composition of resources       141706
## 37789     Income/composition of resources       103606
## 37834           Trade and financial flows       133206
## 37835           Trade and financial flows        53506
## 37836           Trade and financial flows        99106
## 37837           Trade and financial flows       111306
## 37838           Trade and financial flows        52606
## 37852                   Composite indices       137506
## 37854                          Demography       122006
## 37855                          Demography        63106
## 37856                          Demography       132706
## 37857                          Demography       132806
## 37859                          Demography        44206
## 37860                          Demography        45106
## 37861                          Demography       121206
## 37862                           Education       103706
## 37863                           Education        69706
## 37864                           Education       123306
## 37865                           Education       123406
## 37872                           Education       103006
## 37873                           Education        24106
## 37874                           Education        24206
## 37876                           Education        23906
## 37877                           Education        24006
## 37911                              Health        64406
## 37912                              Health        64306
## 37913                              Health        69206
## 37914                              Health       120606
## 37915                              Health       121106
## 37916                              Health       103206
## 37917                              Health        57806
## 37918                              Health        57206
## 37919                              Health        57906
## 37920                              Health        57506
## 37932     Income/composition of resources       141706
## 37933     Income/composition of resources       103606
## 37951           Trade and financial flows       133206
## 37953           Trade and financial flows        99106
## 37967                   Composite indices       137506
## 37969                          Demography       122006
## 37970                          Demography        63106
## 37971                          Demography       132706
## 37972                          Demography       132806
## 37974                          Demography        44206
## 37975                          Demography        45106
## 37976                          Demography       121206
## 37977                           Education       103706
## 37978                           Education        69706
## 37979                           Education       123306
## 37980                           Education       123406
## 37987                           Education       103006
## 37988                           Education        24106
## 37989                           Education        24206
## 37991                           Education        23906
## 37992                           Education        24006
## 38030                              Health        58006
## 38031                              Health        64406
## 38032                              Health        64306
## 38033                              Health        69206
## 38034                              Health       120606
## 38035                              Health       121106
## 38036                              Health       103206
## 38037                              Health        57806
## 38038                              Health        57206
## 38039                              Health        57906
## 38040                              Health        57506
## 38053     Income/composition of resources       141706
## 38054     Income/composition of resources       103606
## 38084           Trade and financial flows       133206
## 38085           Trade and financial flows        53506
## 38086           Trade and financial flows       111306
## 38102                          Demography       122006
## 38103                          Demography        63106
## 38104                          Demography       132706
## 38105                          Demography       132806
## 38107                          Demography        44206
## 38108                          Demography        45106
## 38109                          Demography       121206
## 38111                           Education        69706
## 38112                           Education       123306
## 38113                           Education       123406
## 38162                              Health        58006
## 38163                              Health        64406
## 38164                              Health        64306
## 38165                              Health        69206
## 38166                              Health       120606
## 38167                              Health       121106
## 38168                              Health       103206
## 38170                              Health        57806
## 38171                              Health        57206
## 38172                              Health        57906
## 38173                              Health        57506
## 38186     Income/composition of resources       141706
## 38187     Income/composition of resources       103606
## 38231           Trade and financial flows       133206
## 38232           Trade and financial flows        53506
## 38233           Trade and financial flows        99106
## 38235           Trade and financial flows        52606
## 38248                   Composite indices       137506
## 38250                          Demography       122006
## 38251                          Demography        63106
## 38252                          Demography       132706
## 38253                          Demography       132806
## 38255                          Demography        44206
## 38256                          Demography        45106
## 38257                          Demography       121206
## 38258                           Education       103706
## 38259                           Education        69706
## 38260                           Education       123306
## 38261                           Education       123406
## 38268                           Education       103006
## 38269                           Education        24106
## 38270                           Education        24206
## 38272                           Education        23906
## 38273                           Education        24006
## 38309                              Health        58006
## 38310                              Health        64406
## 38311                              Health        64306
## 38312                              Health        69206
## 38313                              Health       120606
## 38314                              Health       121106
## 38315                              Health       103206
## 38317                              Health        57806
## 38318                              Health        57206
## 38319                              Health        57906
## 38320                              Health        57506
## 38333     Income/composition of resources       141706
## 38334     Income/composition of resources       103606
## 38377           Trade and financial flows       133206
## 38378           Trade and financial flows        53506
## 38379           Trade and financial flows        99106
## 38380           Trade and financial flows       111306
## 38395                   Composite indices       137506
## 38397                          Demography       122006
## 38398                          Demography        63106
## 38399                          Demography       132706
## 38400                          Demography       132806
## 38402                          Demography        44206
## 38403                          Demography        45106
## 38404                          Demography       121206
## 38405                           Education       103706
## 38406                           Education        69706
## 38407                           Education       123306
## 38415                           Education       103006
## 38416                           Education        24106
## 38417                           Education        24206
## 38419                           Education        23906
## 38420                           Education        24006
## 38458                              Health        58006
## 38459                              Health        64406
## 38460                              Health        64306
## 38461                              Health        69206
## 38462                              Health       120606
## 38463                              Health       121106
## 38464                              Health       103206
## 38466                              Health        57806
## 38467                              Health        57206
## 38468                              Health        57906
## 38469                              Health        57506
## 38482     Income/composition of resources       141706
## 38483     Income/composition of resources       103606
## 38526           Trade and financial flows       133206
## 38527           Trade and financial flows        53506
## 38528           Trade and financial flows        99106
## 38529           Trade and financial flows       111306
## 38530           Trade and financial flows        52606
## 38544                   Composite indices       137506
## 38546                          Demography       122006
## 38547                          Demography        63106
## 38548                          Demography       132706
## 38549                          Demography       132806
## 38551                          Demography        44206
## 38552                          Demography        45106
## 38553                          Demography       121206
## 38554                           Education       103706
## 38555                           Education        69706
## 38556                           Education       123306
## 38557                           Education       123406
## 38564                           Education       103006
## 38565                           Education        24106
## 38566                           Education        24206
## 38568                           Education        23906
## 38569                           Education        24006
## 38605                              Health        58006
## 38606                              Health        64406
## 38607                              Health        64306
## 38608                              Health        69206
## 38609                              Health       120606
## 38610                              Health       121106
## 38611                              Health       103206
## 38613                              Health        57806
## 38614                              Health        57206
## 38615                              Health        57906
## 38616                              Health        57506
## 38629     Income/composition of resources       141706
## 38630     Income/composition of resources       103606
## 38672           Trade and financial flows       133206
## 38673           Trade and financial flows        53506
## 38674           Trade and financial flows        99106
## 38675           Trade and financial flows       111306
## 38676           Trade and financial flows        52606
## 38690                          Demography       122006
## 38691                          Demography        63106
## 38692                          Demography       132706
## 38693                          Demography       132806
## 38695                          Demography        44206
## 38696                          Demography        45106
## 38697                          Demography       121206
## 38699                           Education        69706
## 38749                              Health        58006
## 38750                              Health        64406
## 38751                              Health        64306
## 38752                              Health        69206
## 38753                              Health       120606
## 38754                              Health       121106
## 38755                              Health       103206
## 38757                              Health        57806
## 38758                              Health        57206
## 38759                              Health        57906
## 38760                              Health        57506
## 38773     Income/composition of resources       141706
## 38774     Income/composition of resources       103606
## 38816           Trade and financial flows       133206
## 38817           Trade and financial flows        53506
## 38818           Trade and financial flows        99106
## 38819           Trade and financial flows       111306
## 38820           Trade and financial flows        52606
## 38833                   Composite indices       137506
## 38835                          Demography       122006
## 38836                          Demography        63106
## 38837                          Demography       132706
## 38838                          Demography       132806
## 38840                          Demography        44206
## 38841                          Demography        45106
## 38842                          Demography       121206
## 38843                           Education       103706
## 38844                           Education        69706
## 38845                           Education       123306
## 38846                           Education       123406
## 38853                           Education       103006
## 38854                           Education        24106
## 38855                           Education        24206
## 38857                           Education        23906
## 38858                           Education        24006
## 38878                              Gender       123506
## 38879                              Gender       123606
## 38881                              Gender       137906
## 38883                              Gender       136906
## 38884                              Gender       137006
## 38895                              Health        58006
## 38896                              Health        64406
## 38897                              Health        64306
## 38898                              Health        69206
## 38899                              Health       120606
## 38900                              Health       121106
## 38901                              Health       103206
## 38902                              Health        57806
## 38903                              Health        57206
## 38904                              Health        57906
## 38905                              Health        57506
## 38918     Income/composition of resources       141706
## 38919     Income/composition of resources       103606
## 38949           Trade and financial flows       133206
## 38950           Trade and financial flows        53506
## 38951           Trade and financial flows        99106
## 38952           Trade and financial flows       111306
## 38967                   Composite indices       137506
## 38969                          Demography       122006
## 38970                          Demography        63106
## 38971                          Demography       132706
## 38972                          Demography       132806
## 38974                          Demography        44206
## 38975                          Demography        45106
## 38976                          Demography       121206
## 38977                           Education       103706
## 38978                           Education        69706
## 38979                           Education       123306
## 38980                           Education       123406
## 38987                           Education       103006
## 38988                           Education        24106
## 38989                           Education        24206
## 38991                           Education        23906
## 38992                           Education        24006
## 39028                              Health        64406
## 39029                              Health        64306
## 39030                              Health        69206
## 39031                              Health       120606
## 39032                              Health       121106
## 39033                              Health       103206
## 39035                              Health        57806
## 39036                              Health        57206
## 39037                              Health        57906
## 39038                              Health        57506
## 39050     Income/composition of resources       141706
## 39051     Income/composition of resources       103606
## 39093           Trade and financial flows       133206
## 39094           Trade and financial flows        53506
## 39095           Trade and financial flows        99106
## 39096           Trade and financial flows       111306
## 39097           Trade and financial flows        52606
## 39109                   Composite indices       137506
## 39111                          Demography       122006
## 39112                          Demography        63106
## 39113                          Demography       132706
## 39114                          Demography       132806
## 39116                          Demography        44206
## 39117                          Demography        45106
## 39118                          Demography       121206
## 39119                           Education       103706
## 39120                           Education        69706
## 39121                           Education       123306
## 39122                           Education       123406
## 39129                           Education       103006
## 39130                           Education        24106
## 39131                           Education        24206
## 39133                           Education        23906
## 39134                           Education        24006
## 39175                              Health        58006
## 39176                              Health        64406
## 39177                              Health        64306
## 39178                              Health        69206
## 39179                              Health       120606
## 39180                              Health       121106
## 39181                              Health       103206
## 39183                              Health        57806
## 39184                              Health        57206
## 39185                              Health        57906
## 39186                              Health        57506
## 39199     Income/composition of resources       141706
## 39200     Income/composition of resources       103606
## 39245           Trade and financial flows       133206
## 39246           Trade and financial flows        53506
## 39247           Trade and financial flows        99106
## 39248           Trade and financial flows       111306
## 39249           Trade and financial flows        52606
## 39263                   Composite indices       137506
## 39265                          Demography       122006
## 39266                          Demography        63106
## 39267                          Demography       132706
## 39268                          Demography       132806
## 39270                          Demography        44206
## 39271                          Demography        45106
## 39272                          Demography       121206
## 39273                           Education       103706
## 39274                           Education        69706
## 39275                           Education       123306
## 39276                           Education       123406
## 39283                           Education       103006
## 39284                           Education        24106
## 39285                           Education        24206
## 39287                           Education        23906
## 39288                           Education        24006
## 39323                              Health        58006
## 39324                              Health        64406
## 39325                              Health        64306
## 39326                              Health        69206
## 39327                              Health       120606
## 39328                              Health       121106
##                                                                                                                      indicator_name
## 2229                                                                                                  Human Development Index (HDI)
## 2230                                                                                                             Median age (years)
## 2231                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 2232                                                                                               Population ages 15–64 (millions)
## 2233                                                                                        Population ages 65 and older (millions)
## 2234                                                                                              Population under age 5 (millions)
## 2235                                                                                     Sex ratio at birth (male to female births)
## 2236                                                                                                    Total population (millions)
## 2237                                                                                                           Urban population (%)
## 2238                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 2239                                                                                                                Education index
## 2240                                                                                            Expected years of schooling (years)
## 2241                                                                                    Expected years of schooling, female (years)
## 2242                                                                                      Expected years of schooling, male (years)
## 2244                                                               Gross enrolment ratio, pre-primary (% of preschool-age children)
## 2245                                                            Gross enrolment ratio, primary (% of primary school-age population)
## 2246                                                        Gross enrolment ratio, secondary (% of secondary school-age population)
## 2247                                                          Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 2249                                                                                                Mean years of schooling (years)
## 2250                                                                                        Mean years of schooling, female (years)
## 2251                                                                                          Mean years of schooling, male (years)
## 2252                                                        Population with at least some secondary education (% ages 25 and older)
## 2253                                                Population with at least some secondary education, female (% ages 25 and older)
## 2254                                                  Population with at least some secondary education, male (% ages 25 and older)
## 2262                                                                            Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 2263                                                                                  Carbon dioxide emissions, per capita (tonnes)
## 2264                                                                                             Forest area (% of total land area)
## 2266                                                                 Fossil fuel energy consumption (% of total energy consumption)
## 2267                                                                 Fresh water withdrawals (% of total renewable water resources)
## 2271                                                             Renewable energy consumption (% of total final energy consumption)
## 2272                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 2285                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 2286                                                                  Proportion of births attended by skilled health personnel (%)
## 2296                                                                                           HIV prevalence, adult (% ages 15-49)
## 2297                                                                         Infants lacking immunization, DPT (% of one-year-olds)
## 2298                                                                     Infants lacking immunization, measles (% of one-year-olds)
## 2299                                                                                               Life expectancy at birth (years)
## 2300                                                                                       Life expectancy at birth, female (years)
## 2301                                                                                         Life expectancy at birth, male (years)
## 2302                                                                                                          Life expectancy index
## 2303                                                                                Mortality rate, female adult (per 1,000 people)
## 2304                                                                                 Mortality rate, infant (per 1,000 live births)
## 2305                                                                                  Mortality rate, male adult (per 1,000 people)
## 2306                                                                             Mortality rate, under-five (per 1,000 live births)
## 2316                                                                                                    GDP per capita (2011 PPP $)
## 2317                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 2318                                                                                       Gross fixed capital formation (% of GDP)
## 2319                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 2320                                                                                                                   Income index
## 2337                                                                                          Net migration rate (per 1,000 people)
## 2352                                                                                                Adjusted net savings (% of GNI)
## 2354                                                                                             Gross capital formation (% of GDP)
## 2361                                                                                Rural population with access to electricity (%)
## 2364                                                                                                 Exports and imports (% of GDP)
## 2366                                                                        Net official development assistance received (% of GNI)
## 2367                                                                                               Private capital flows (% of GDP)
## 2373                                                                          Labour force participation rate (% ages 15 and older)
## 2374                                                                  Labour force participation rate (% ages 15 and older), female
## 2375                                                                    Labour force participation rate (% ages 15 and older), male
## 2382                                                                                                  Human Development Index (HDI)
## 2383                                                                                                             Median age (years)
## 2384                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 2385                                                                                               Population ages 15–64 (millions)
## 2386                                                                                        Population ages 65 and older (millions)
## 2387                                                                                              Population under age 5 (millions)
## 2388                                                                                     Sex ratio at birth (male to female births)
## 2389                                                                                                    Total population (millions)
## 2390                                                                                                           Urban population (%)
## 2391                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 2392                                                                                                                Education index
## 2393                                                                                            Expected years of schooling (years)
## 2398                                                            Gross enrolment ratio, primary (% of primary school-age population)
## 2399                                                        Gross enrolment ratio, secondary (% of secondary school-age population)
## 2400                                                          Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 2402                                                                                                Mean years of schooling (years)
## 2403                                                                                        Mean years of schooling, female (years)
## 2404                                                                                          Mean years of schooling, male (years)
## 2405                                                        Population with at least some secondary education (% ages 25 and older)
## 2406                                                Population with at least some secondary education, female (% ages 25 and older)
## 2407                                                  Population with at least some secondary education, male (% ages 25 and older)
## 2408                                                                       Primary school dropout rate (% of primary school cohort)
## 2414                                                                       Pupil-teacher ratio, primary school (pupils per teacher)
## 2415                                                       Survival rate to the last grade of lower secondary general education (%)
## 2416                                                                            Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 2417                                                                                  Carbon dioxide emissions, per capita (tonnes)
## 2418                                                                                             Forest area (% of total land area)
## 2420                                                                 Fossil fuel energy consumption (% of total energy consumption)
## 2421                                                                 Fresh water withdrawals (% of total renewable water resources)
## 2425                                                             Renewable energy consumption (% of total final energy consumption)
## 2426                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 2439                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 2449                                                                                           HIV prevalence, adult (% ages 15-49)
## 2450                                                                         Infants lacking immunization, DPT (% of one-year-olds)
## 2451                                                                     Infants lacking immunization, measles (% of one-year-olds)
## 2452                                                                                               Life expectancy at birth (years)
## 2453                                                                                       Life expectancy at birth, female (years)
## 2454                                                                                         Life expectancy at birth, male (years)
## 2455                                                                                                          Life expectancy index
## 2457                                                                                Mortality rate, female adult (per 1,000 people)
## 2458                                                                                 Mortality rate, infant (per 1,000 live births)
## 2459                                                                                  Mortality rate, male adult (per 1,000 people)
## 2460                                                                             Mortality rate, under-five (per 1,000 live births)
## 2469                                                                        Domestic credit provided by financial sector (% of GDP)
## 2470                                                                                                    GDP per capita (2011 PPP $)
## 2471                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 2472                                                                                       Gross fixed capital formation (% of GDP)
## 2473                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 2474                                                                                                                   Income index
## 2491                                                                                          Net migration rate (per 1,000 people)
## 2506                                                                                                Adjusted net savings (% of GNI)
## 2508                                                                                             Gross capital formation (% of GDP)
## 2513                                                                                Rural population with access to electricity (%)
## 2515                                                        Total debt service (% of exports of goods, services and primary income)
## 2516                                                                                                 Exports and imports (% of GDP)
## 2517                                                                              Foreign direct investment, net inflows (% of GDP)
## 2518                                                                        Net official development assistance received (% of GNI)
## 2519                                                                                               Private capital flows (% of GDP)
## 2520                                                                                                Remittances, inflows (% of GDP)
## 2525                                                                          Labour force participation rate (% ages 15 and older)
## 2526                                                                  Labour force participation rate (% ages 15 and older), female
## 2527                                                                    Labour force participation rate (% ages 15 and older), male
## 2535                                                                                                             Median age (years)
## 2536                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 2537                                                                                               Population ages 15–64 (millions)
## 2538                                                                                        Population ages 65 and older (millions)
## 2539                                                                                              Population under age 5 (millions)
## 2540                                                                                     Sex ratio at birth (male to female births)
## 2541                                                                                                    Total population (millions)
## 2542                                                                                                           Urban population (%)
## 2543                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 2545                                                                                            Expected years of schooling (years)
## 2549                                                               Gross enrolment ratio, pre-primary (% of preschool-age children)
## 2550                                                            Gross enrolment ratio, primary (% of primary school-age population)
## 2551                                                        Gross enrolment ratio, secondary (% of secondary school-age population)
## 2552                                                          Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 2555                                                                       Primary school dropout rate (% of primary school cohort)
## 2558                                                                            Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 2559                                                                                  Carbon dioxide emissions, per capita (tonnes)
## 2560                                                                                             Forest area (% of total land area)
## 2562                                                                 Fossil fuel energy consumption (% of total energy consumption)
## 2567                                                             Renewable energy consumption (% of total final energy consumption)
## 2568                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 2576                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 2587                                                                                           HIV prevalence, adult (% ages 15-49)
## 2588                                                                         Infants lacking immunization, DPT (% of one-year-olds)
## 2589                                                                     Infants lacking immunization, measles (% of one-year-olds)
## 2590                                                                                               Life expectancy at birth (years)
## 2591                                                                                       Life expectancy at birth, female (years)
## 2592                                                                                         Life expectancy at birth, male (years)
## 2593                                                                                                          Life expectancy index
## 2595                                                                                Mortality rate, female adult (per 1,000 people)
## 2596                                                                                 Mortality rate, infant (per 1,000 live births)
## 2597                                                                                  Mortality rate, male adult (per 1,000 people)
## 2598                                                                             Mortality rate, under-five (per 1,000 live births)
## 2608                                                                                                    GDP per capita (2011 PPP $)
## 2609                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 2610                                                                                       Gross fixed capital formation (% of GDP)
## 2611                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 2612                                                                                                                   Income index
## 2629                                                                                          Net migration rate (per 1,000 people)
## 2644                                                                                                Adjusted net savings (% of GNI)
## 2646                                                                                             Gross capital formation (% of GDP)
## 2651                                                                                Rural population with access to electricity (%)
## 2653                                                        Total debt service (% of exports of goods, services and primary income)
## 2654                                                                                                 Exports and imports (% of GDP)
## 2655                                                                              Foreign direct investment, net inflows (% of GDP)
## 2656                                                                        Net official development assistance received (% of GNI)
## 2657                                                                                               Private capital flows (% of GDP)
## 2663                                                                          Labour force participation rate (% ages 15 and older)
## 2664                                                                  Labour force participation rate (% ages 15 and older), female
## 2665                                                                    Labour force participation rate (% ages 15 and older), male
## 2673                                                                                                             Median age (years)
## 2674                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 2675                                                                                               Population ages 15–64 (millions)
## 2676                                                                                        Population ages 65 and older (millions)
## 2677                                                                                              Population under age 5 (millions)
## 2678                                                                                     Sex ratio at birth (male to female births)
## 2679                                                                                                    Total population (millions)
## 2680                                                                                                           Urban population (%)
## 2681                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 2696                                                                            Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 2697                                                                                  Carbon dioxide emissions, per capita (tonnes)
## 2698                                                                                             Forest area (% of total land area)
## 2700                                                                 Fossil fuel energy consumption (% of total energy consumption)
## 2701                                                                 Fresh water withdrawals (% of total renewable water resources)
## 2705                                                             Renewable energy consumption (% of total final energy consumption)
## 2706                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 2712                                                                         Infants lacking immunization, DPT (% of one-year-olds)
## 2713                                                                     Infants lacking immunization, measles (% of one-year-olds)
## 2714                                                                                               Life expectancy at birth (years)
## 2715                                                                                       Life expectancy at birth, female (years)
## 2716                                                                                         Life expectancy at birth, male (years)
## 2717                                                                                                          Life expectancy index
## 2718                                                                                Mortality rate, female adult (per 1,000 people)
## 2719                                                                                 Mortality rate, infant (per 1,000 live births)
## 2720                                                                                  Mortality rate, male adult (per 1,000 people)
## 2721                                                                             Mortality rate, under-five (per 1,000 live births)
## 2729                                                                        Domestic credit provided by financial sector (% of GDP)
## 2730                                                                                                    GDP per capita (2011 PPP $)
## 2731                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 2732                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 2733                                                                                                                   Income index
## 2740                                                                                          Net migration rate (per 1,000 people)
## 2744                                                                                Rural population with access to electricity (%)
## 2745                                                                                                 Exports and imports (% of GDP)
## 2746                                                                              Foreign direct investment, net inflows (% of GDP)
## 2747                                                                        Net official development assistance received (% of GNI)
## 2748                                                                                               Private capital flows (% of GDP)
## 2749                                                                                                Remittances, inflows (% of GDP)
## 2752                                                                                                  Human Development Index (HDI)
## 2753                                                                                                             Median age (years)
## 2754                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 2755                                                                                               Population ages 15–64 (millions)
## 2756                                                                                        Population ages 65 and older (millions)
## 2757                                                                                              Population under age 5 (millions)
## 2758                                                                                     Sex ratio at birth (male to female births)
## 2759                                                                                                    Total population (millions)
## 2760                                                                                                           Urban population (%)
## 2761                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 2762                                                                                                                Education index
## 2763                                                                                            Expected years of schooling (years)
## 2766                                                                                 Government expenditure on education (% of GDP)
## 2768                                                            Gross enrolment ratio, primary (% of primary school-age population)
## 2769                                                        Gross enrolment ratio, secondary (% of secondary school-age population)
## 2772                                                                                                Mean years of schooling (years)
## 2773                                                                                        Mean years of schooling, female (years)
## 2774                                                                                          Mean years of schooling, male (years)
## 2775                                                        Population with at least some secondary education (% ages 25 and older)
## 2776                                                Population with at least some secondary education, female (% ages 25 and older)
## 2777                                                  Population with at least some secondary education, male (% ages 25 and older)
## 2785                                                                            Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 2786                                                                                  Carbon dioxide emissions, per capita (tonnes)
## 2787                                                                                             Forest area (% of total land area)
## 2789                                                                 Fossil fuel energy consumption (% of total energy consumption)
## 2794                                                             Renewable energy consumption (% of total final energy consumption)
## 2795                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 2807                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 2808                                                                  Proportion of births attended by skilled health personnel (%)
## 2815                                                                                           HIV prevalence, adult (% ages 15-49)
## 2816                                                                         Infants lacking immunization, DPT (% of one-year-olds)
## 2817                                                                     Infants lacking immunization, measles (% of one-year-olds)
## 2818                                                                                               Life expectancy at birth (years)
## 2819                                                                                       Life expectancy at birth, female (years)
## 2820                                                                                         Life expectancy at birth, male (years)
## 2821                                                                                                          Life expectancy index
## 2823                                                                                Mortality rate, female adult (per 1,000 people)
## 2824                                                                                 Mortality rate, infant (per 1,000 live births)
## 2825                                                                                  Mortality rate, male adult (per 1,000 people)
## 2826                                                                             Mortality rate, under-five (per 1,000 live births)
## 2835                                                                        Domestic credit provided by financial sector (% of GDP)
## 2836                                                                                                    GDP per capita (2011 PPP $)
## 2837                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 2838                                                                                       Gross fixed capital formation (% of GDP)
## 2839                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 2840                                                                                                                   Income index
## 2858                                                                                          Net migration rate (per 1,000 people)
## 2860                                                                                                Adjusted net savings (% of GNI)
## 2862                                                                                             Gross capital formation (% of GDP)
## 2869                                                                                Rural population with access to electricity (%)
## 2871                                                        Total debt service (% of exports of goods, services and primary income)
## 2872                                                                                                 Exports and imports (% of GDP)
## 2873                                                                              Foreign direct investment, net inflows (% of GDP)
## 2874                                                                        Net official development assistance received (% of GNI)
## 2875                                                                                               Private capital flows (% of GDP)
## 2876                                                                                                Remittances, inflows (% of GDP)
## 2880                                                                          Labour force participation rate (% ages 15 and older)
## 2881                                                                  Labour force participation rate (% ages 15 and older), female
## 2882                                                                    Labour force participation rate (% ages 15 and older), male
## 2889                                                                                                  Human Development Index (HDI)
## 2890                                                                                                             Median age (years)
## 2891                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 2892                                                                                               Population ages 15–64 (millions)
## 2893                                                                                        Population ages 65 and older (millions)
## 2894                                                                                              Population under age 5 (millions)
## 2895                                                                                     Sex ratio at birth (male to female births)
## 2896                                                                                                    Total population (millions)
## 2897                                                                                                           Urban population (%)
## 2898                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 2899                                                                                                                Education index
## 2900                                                                                            Expected years of schooling (years)
## 2904                                                               Gross enrolment ratio, pre-primary (% of preschool-age children)
## 2907                                                          Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 2909                                                                                                Mean years of schooling (years)
## 2910                                                                                        Mean years of schooling, female (years)
## 2911                                                                                          Mean years of schooling, male (years)
## 2912                                                        Population with at least some secondary education (% ages 25 and older)
## 2913                                                Population with at least some secondary education, female (% ages 25 and older)
## 2914                                                  Population with at least some secondary education, male (% ages 25 and older)
## 2922                                                                                             Forest area (% of total land area)
## 2924                                                                 Fossil fuel energy consumption (% of total energy consumption)
## 2929                                                             Renewable energy consumption (% of total final energy consumption)
## 2930                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 2942                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 2943                                                                  Proportion of births attended by skilled health personnel (%)
## 2953                                                                                           HIV prevalence, adult (% ages 15-49)
## 2956                                                                                               Life expectancy at birth (years)
## 2957                                                                                       Life expectancy at birth, female (years)
## 2958                                                                                         Life expectancy at birth, male (years)
## 2959                                                                                                          Life expectancy index
## 2960                                                                                Mortality rate, female adult (per 1,000 people)
## 2961                                                                                 Mortality rate, infant (per 1,000 live births)
## 2962                                                                                  Mortality rate, male adult (per 1,000 people)
## 2963                                                                             Mortality rate, under-five (per 1,000 live births)
## 2973                                                                                                    GDP per capita (2011 PPP $)
## 2974                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 2975                                                                                       Gross fixed capital formation (% of GDP)
## 2976                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 2977                                                                                                                   Income index
## 2995                                                                                          Net migration rate (per 1,000 people)
## 3012                                                                                             Gross capital formation (% of GDP)
## 3019                                                                                Rural population with access to electricity (%)
## 3022                                                                                                 Exports and imports (% of GDP)
## 3031                                                                          Labour force participation rate (% ages 15 and older)
## 3032                                                                  Labour force participation rate (% ages 15 and older), female
## 3033                                                                    Labour force participation rate (% ages 15 and older), male
## 3040                                                                                                  Human Development Index (HDI)
## 3041                                                                                                             Median age (years)
## 3042                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 3043                                                                                               Population ages 15–64 (millions)
## 3044                                                                                        Population ages 65 and older (millions)
## 3045                                                                                              Population under age 5 (millions)
## 3046                                                                                     Sex ratio at birth (male to female births)
## 3047                                                                                                    Total population (millions)
## 3048                                                                                                           Urban population (%)
## 3049                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 3050                                                                                                                Education index
## 3051                                                                                            Expected years of schooling (years)
## 3052                                                                                    Expected years of schooling, female (years)
## 3053                                                                                      Expected years of schooling, male (years)
## 3054                                                                                 Government expenditure on education (% of GDP)
## 3055                                                               Gross enrolment ratio, pre-primary (% of preschool-age children)
## 3056                                                            Gross enrolment ratio, primary (% of primary school-age population)
## 3058                                                          Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 3059                                                                                                Mean years of schooling (years)
## 3060                                                                                        Mean years of schooling, female (years)
## 3061                                                                                          Mean years of schooling, male (years)
## 3062                                                        Population with at least some secondary education (% ages 25 and older)
## 3063                                                Population with at least some secondary education, female (% ages 25 and older)
## 3064                                                  Population with at least some secondary education, male (% ages 25 and older)
## 3069                                                                            Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 3070                                                                                  Carbon dioxide emissions, per capita (tonnes)
## 3071                                                                                             Forest area (% of total land area)
## 3073                                                                 Fossil fuel energy consumption (% of total energy consumption)
## 3078                                                             Renewable energy consumption (% of total final energy consumption)
## 3079                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 3091                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 3101                                                                                           HIV prevalence, adult (% ages 15-49)
## 3102                                                                         Infants lacking immunization, DPT (% of one-year-olds)
## 3103                                                                     Infants lacking immunization, measles (% of one-year-olds)
## 3104                                                                                               Life expectancy at birth (years)
## 3105                                                                                       Life expectancy at birth, female (years)
## 3106                                                                                         Life expectancy at birth, male (years)
## 3107                                                                                                          Life expectancy index
## 3108                                                                                Mortality rate, female adult (per 1,000 people)
## 3109                                                                                 Mortality rate, infant (per 1,000 live births)
## 3110                                                                                  Mortality rate, male adult (per 1,000 people)
## 3111                                                                             Mortality rate, under-five (per 1,000 live births)
## 3120                                                                        Domestic credit provided by financial sector (% of GDP)
## 3121                                                                                                    GDP per capita (2011 PPP $)
## 3122                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 3123                                                                                       Gross fixed capital formation (% of GDP)
## 3124                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 3125                                                                                                                   Income index
## 3143                                                                                          Net migration rate (per 1,000 people)
## 3144                                                                                                Adjusted net savings (% of GNI)
## 3146                                                                                             Gross capital formation (% of GDP)
## 3153                                                                                Rural population with access to electricity (%)
## 3155                                                                                                 Exports and imports (% of GDP)
## 3156                                                                              Foreign direct investment, net inflows (% of GDP)
## 3157                                                                                               Private capital flows (% of GDP)
## 3158                                                                                                Remittances, inflows (% of GDP)
## 3162                                                                          Labour force participation rate (% ages 15 and older)
## 3163                                                                  Labour force participation rate (% ages 15 and older), female
## 3164                                                                    Labour force participation rate (% ages 15 and older), male
## 3171                                                                                                  Human Development Index (HDI)
## 3172                                                                                                             Median age (years)
## 3173                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 3174                                                                                               Population ages 15–64 (millions)
## 3175                                                                                        Population ages 65 and older (millions)
## 3176                                                                                              Population under age 5 (millions)
## 3177                                                                                     Sex ratio at birth (male to female births)
## 3178                                                                                                    Total population (millions)
## 3179                                                                                                           Urban population (%)
## 3180                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 3181                                                                                                                Education index
## 3182                                                                                            Expected years of schooling (years)
## 3183                                                                                    Expected years of schooling, female (years)
## 3184                                                                                      Expected years of schooling, male (years)
## 3185                                                                                 Government expenditure on education (% of GDP)
## 3186                                                               Gross enrolment ratio, pre-primary (% of preschool-age children)
## 3187                                                            Gross enrolment ratio, primary (% of primary school-age population)
## 3188                                                        Gross enrolment ratio, secondary (% of secondary school-age population)
## 3189                                                          Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 3190                                                                                                Mean years of schooling (years)
## 3191                                                                                        Mean years of schooling, female (years)
## 3192                                                                                          Mean years of schooling, male (years)
## 3193                                                        Population with at least some secondary education (% ages 25 and older)
## 3194                                                Population with at least some secondary education, female (% ages 25 and older)
## 3195                                                  Population with at least some secondary education, male (% ages 25 and older)
## 3201                                                                       Pupil-teacher ratio, primary school (pupils per teacher)
## 3203                                                                            Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 3204                                                                                  Carbon dioxide emissions, per capita (tonnes)
## 3205                                                                                             Forest area (% of total land area)
## 3207                                                                 Fossil fuel energy consumption (% of total energy consumption)
## 3208                                                                 Fresh water withdrawals (% of total renewable water resources)
## 3212                                                             Renewable energy consumption (% of total final energy consumption)
## 3213                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 3224                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 3234                                                                         Infants lacking immunization, DPT (% of one-year-olds)
## 3235                                                                     Infants lacking immunization, measles (% of one-year-olds)
## 3236                                                                                               Life expectancy at birth (years)
## 3237                                                                                       Life expectancy at birth, female (years)
## 3238                                                                                         Life expectancy at birth, male (years)
## 3239                                                                                                          Life expectancy index
## 3240                                                                                Mortality rate, female adult (per 1,000 people)
## 3241                                                                                 Mortality rate, infant (per 1,000 live births)
## 3242                                                                                  Mortality rate, male adult (per 1,000 people)
## 3243                                                                             Mortality rate, under-five (per 1,000 live births)
## 3253                                                                                                    GDP per capita (2011 PPP $)
## 3254                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 3255                                                                                       Gross fixed capital formation (% of GDP)
## 3256                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 3257                                                                                                                   Income index
## 3275                                                                                          Net migration rate (per 1,000 people)
## 3278                                                                                             Gross capital formation (% of GDP)
## 3285                                                                                Rural population with access to electricity (%)
## 3287                                                                                                 Exports and imports (% of GDP)
## 3288                                                                              Foreign direct investment, net inflows (% of GDP)
## 3290                                                                                                Remittances, inflows (% of GDP)
## 3294                                                                          Labour force participation rate (% ages 15 and older)
## 3295                                                                  Labour force participation rate (% ages 15 and older), female
## 3296                                                                    Labour force participation rate (% ages 15 and older), male
## 3304                                                                                                             Median age (years)
## 3305                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 3306                                                                                               Population ages 15–64 (millions)
## 3307                                                                                        Population ages 65 and older (millions)
## 3308                                                                                              Population under age 5 (millions)
## 3309                                                                                     Sex ratio at birth (male to female births)
## 3310                                                                                                    Total population (millions)
## 3311                                                                                                           Urban population (%)
## 3312                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 3314                                                                                            Expected years of schooling (years)
## 3315                                                                                    Expected years of schooling, female (years)
## 3316                                                                                      Expected years of schooling, male (years)
## 3318                                                               Gross enrolment ratio, pre-primary (% of preschool-age children)
## 3319                                                            Gross enrolment ratio, primary (% of primary school-age population)
## 3320                                                        Gross enrolment ratio, secondary (% of secondary school-age population)
## 3321                                                          Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 3336                                                                                             Forest area (% of total land area)
## 3338                                                                 Fossil fuel energy consumption (% of total energy consumption)
## 3343                                                             Renewable energy consumption (% of total final energy consumption)
## 3344                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 3356                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 3357                                                                  Proportion of births attended by skilled health personnel (%)
## 3367                                                                                           HIV prevalence, adult (% ages 15-49)
## 3370                                                                                               Life expectancy at birth (years)
## 3371                                                                                       Life expectancy at birth, female (years)
## 3372                                                                                         Life expectancy at birth, male (years)
## 3373                                                                                                          Life expectancy index
## 3375                                                                                Mortality rate, female adult (per 1,000 people)
## 3376                                                                                 Mortality rate, infant (per 1,000 live births)
## 3377                                                                                  Mortality rate, male adult (per 1,000 people)
## 3378                                                                             Mortality rate, under-five (per 1,000 live births)
## 3388                                                                                                    GDP per capita (2011 PPP $)
## 3389                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 3390                                                                                       Gross fixed capital formation (% of GDP)
## 3391                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 3392                                                                                                                   Income index
## 3410                                                                                          Net migration rate (per 1,000 people)
## 3426                                                                                             Gross capital formation (% of GDP)
## 3433                                                                                Rural population with access to electricity (%)
## 3436                                                                                                 Exports and imports (% of GDP)
## 3444                                                                          Labour force participation rate (% ages 15 and older)
## 3445                                                                  Labour force participation rate (% ages 15 and older), female
## 3446                                                                    Labour force participation rate (% ages 15 and older), male
## 3453                                                                                                             Median age (years)
## 3454                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 3455                                                                                               Population ages 15–64 (millions)
## 3456                                                                                        Population ages 65 and older (millions)
## 3457                                                                                              Population under age 5 (millions)
## 3458                                                                                     Sex ratio at birth (male to female births)
## 3459                                                                                                    Total population (millions)
## 3460                                                                                                           Urban population (%)
## 3461                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 3463                                                                                            Expected years of schooling (years)
## 3464                                                                                    Expected years of schooling, female (years)
## 3465                                                                                      Expected years of schooling, male (years)
## 3468                                                            Gross enrolment ratio, primary (% of primary school-age population)
## 3469                                                        Gross enrolment ratio, secondary (% of secondary school-age population)
## 3481                                                                            Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 3482                                                                                  Carbon dioxide emissions, per capita (tonnes)
## 3483                                                                                             Forest area (% of total land area)
## 3485                                                                 Fossil fuel energy consumption (% of total energy consumption)
## 3489                                                             Renewable energy consumption (% of total final energy consumption)
## 3490                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 3499                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 3500                                                                  Proportion of births attended by skilled health personnel (%)
## 3506                                                                                           HIV prevalence, adult (% ages 15-49)
## 3507                                                                         Infants lacking immunization, DPT (% of one-year-olds)
## 3508                                                                     Infants lacking immunization, measles (% of one-year-olds)
## 3509                                                                                               Life expectancy at birth (years)
## 3510                                                                                       Life expectancy at birth, female (years)
## 3511                                                                                         Life expectancy at birth, male (years)
## 3512                                                                                                          Life expectancy index
## 3513                                                                                Mortality rate, female adult (per 1,000 people)
## 3514                                                                                 Mortality rate, infant (per 1,000 live births)
## 3515                                                                                  Mortality rate, male adult (per 1,000 people)
## 3516                                                                             Mortality rate, under-five (per 1,000 live births)
## 3524                                                                        Domestic credit provided by financial sector (% of GDP)
## 3525                                                                                                    GDP per capita (2011 PPP $)
## 3526                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 3527                                                                                       Gross fixed capital formation (% of GDP)
## 3528                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 3529                                                                                                                   Income index
## 3542                                                                                          Net migration rate (per 1,000 people)
## 3546                                                                                             Gross capital formation (% of GDP)
## 3549                                                                                Rural population with access to electricity (%)
## 3551                                                                                                 Exports and imports (% of GDP)
## 3552                                                                              Foreign direct investment, net inflows (% of GDP)
## 3553                                                                        Net official development assistance received (% of GNI)
## 3558                                                                          Labour force participation rate (% ages 15 and older)
## 3559                                                                  Labour force participation rate (% ages 15 and older), female
## 3560                                                                    Labour force participation rate (% ages 15 and older), male
## 3566                                                                                                  Human Development Index (HDI)
## 3567                                                                                                             Median age (years)
## 3568                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 3569                                                                                               Population ages 15–64 (millions)
## 3570                                                                                        Population ages 65 and older (millions)
## 3571                                                                                              Population under age 5 (millions)
## 3572                                                                                     Sex ratio at birth (male to female births)
## 3573                                                                                                    Total population (millions)
## 3574                                                                                                           Urban population (%)
## 3575                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 3576                                                                                                                Education index
## 3577                                                                                            Expected years of schooling (years)
## 3578                                                                                    Expected years of schooling, female (years)
## 3579                                                                                      Expected years of schooling, male (years)
## 3580                                                                                 Government expenditure on education (% of GDP)
## 3582                                                            Gross enrolment ratio, primary (% of primary school-age population)
## 3583                                                        Gross enrolment ratio, secondary (% of secondary school-age population)
## 3584                                                          Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 3586                                                                                                Mean years of schooling (years)
## 3587                                                                                        Mean years of schooling, female (years)
## 3588                                                                                          Mean years of schooling, male (years)
## 3589                                                        Population with at least some secondary education (% ages 25 and older)
## 3590                                                Population with at least some secondary education, female (% ages 25 and older)
## 3591                                                  Population with at least some secondary education, male (% ages 25 and older)
## 3595                                                                       Pupil-teacher ratio, primary school (pupils per teacher)
## 3597                                                                            Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 3598                                                                                  Carbon dioxide emissions, per capita (tonnes)
## 3599                                                                                             Forest area (% of total land area)
## 3601                                                                 Fossil fuel energy consumption (% of total energy consumption)
## 3606                                                             Renewable energy consumption (% of total final energy consumption)
## 3607                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 3619                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 3630                                                                                           HIV prevalence, adult (% ages 15-49)
## 3631                                                                         Infants lacking immunization, DPT (% of one-year-olds)
## 3632                                                                     Infants lacking immunization, measles (% of one-year-olds)
## 3633                                                                                               Life expectancy at birth (years)
## 3634                                                                                       Life expectancy at birth, female (years)
## 3635                                                                                         Life expectancy at birth, male (years)
## 3636                                                                                                          Life expectancy index
## 3638                                                                                Mortality rate, female adult (per 1,000 people)
## 3639                                                                                 Mortality rate, infant (per 1,000 live births)
## 3640                                                                                  Mortality rate, male adult (per 1,000 people)
## 3641                                                                             Mortality rate, under-five (per 1,000 live births)
## 3650                                                                        Domestic credit provided by financial sector (% of GDP)
## 3651                                                                                                    GDP per capita (2011 PPP $)
## 3652                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 3653                                                                                       Gross fixed capital formation (% of GDP)
## 3654                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 3655                                                                                                                   Income index
## 3673                                                                                          Net migration rate (per 1,000 people)
## 3688                                                                                                Adjusted net savings (% of GNI)
## 3690                                                                                             Gross capital formation (% of GDP)
## 3698                                                        Total debt service (% of exports of goods, services and primary income)
## 3699                                                                                                 Exports and imports (% of GDP)
## 3700                                                                              Foreign direct investment, net inflows (% of GDP)
## 3701                                                                        Net official development assistance received (% of GNI)
## 3702                                                                                               Private capital flows (% of GDP)
## 3703                                                                                                Remittances, inflows (% of GDP)
## 3707                                                                          Labour force participation rate (% ages 15 and older)
## 3708                                                                  Labour force participation rate (% ages 15 and older), female
## 3709                                                                    Labour force participation rate (% ages 15 and older), male
## 3716                                                                                                  Human Development Index (HDI)
## 3717                                                                                                             Median age (years)
## 3718                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 3719                                                                                               Population ages 15–64 (millions)
## 3720                                                                                        Population ages 65 and older (millions)
## 3721                                                                                              Population under age 5 (millions)
## 3722                                                                                     Sex ratio at birth (male to female births)
## 3723                                                                                                    Total population (millions)
## 3724                                                                                                           Urban population (%)
## 3725                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 3726                                                                                                                Education index
## 3727                                                                                            Expected years of schooling (years)
## 3728                                                                                    Expected years of schooling, female (years)
## 3729                                                                                      Expected years of schooling, male (years)
## 3732                                                            Gross enrolment ratio, primary (% of primary school-age population)
## 3733                                                        Gross enrolment ratio, secondary (% of secondary school-age population)
## 3734                                                          Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 3735                                                                                                Mean years of schooling (years)
## 3736                                                                                        Mean years of schooling, female (years)
## 3737                                                                                          Mean years of schooling, male (years)
## 3738                                                        Population with at least some secondary education (% ages 25 and older)
## 3739                                                Population with at least some secondary education, female (% ages 25 and older)
## 3740                                                  Population with at least some secondary education, male (% ages 25 and older)
## 3744                                                                       Pupil-teacher ratio, primary school (pupils per teacher)
## 3746                                                                            Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 3747                                                                                  Carbon dioxide emissions, per capita (tonnes)
## 3748                                                                                             Forest area (% of total land area)
## 3750                                                                 Fossil fuel energy consumption (% of total energy consumption)
## 3755                                                             Renewable energy consumption (% of total final energy consumption)
## 3756                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 3757                                                                                Antenatal care coverage, at least one visit (%)
## 3767                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 3776                                                                                           HIV prevalence, adult (% ages 15-49)
## 3777                                                                         Infants lacking immunization, DPT (% of one-year-olds)
## 3778                                                                     Infants lacking immunization, measles (% of one-year-olds)
## 3779                                                                                               Life expectancy at birth (years)
## 3780                                                                                       Life expectancy at birth, female (years)
## 3781                                                                                         Life expectancy at birth, male (years)
## 3782                                                                                                          Life expectancy index
## 3783                                                                                Mortality rate, female adult (per 1,000 people)
## 3784                                                                                 Mortality rate, infant (per 1,000 live births)
## 3785                                                                                  Mortality rate, male adult (per 1,000 people)
## 3786                                                                             Mortality rate, under-five (per 1,000 live births)
## 3795                                                                        Domestic credit provided by financial sector (% of GDP)
## 3796                                                                                                    GDP per capita (2011 PPP $)
## 3797                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 3798                                                                                       Gross fixed capital formation (% of GDP)
## 3799                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 3800                                                                                                                   Income index
## 3814                                                                                          Net migration rate (per 1,000 people)
## 3827                                                                                                Adjusted net savings (% of GNI)
## 3829                                                                                             Gross capital formation (% of GDP)
## 3833                                                                                                 Exports and imports (% of GDP)
## 3834                                                                              Foreign direct investment, net inflows (% of GDP)
## 3835                                                                        Net official development assistance received (% of GNI)
## 3836                                                                                               Private capital flows (% of GDP)
## 3837                                                                                                Remittances, inflows (% of GDP)
## 3842                                                                          Labour force participation rate (% ages 15 and older)
## 3843                                                                  Labour force participation rate (% ages 15 and older), female
## 3844                                                                    Labour force participation rate (% ages 15 and older), male
## 3851                                                                                                             Median age (years)
## 3852                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 3853                                                                                               Population ages 15–64 (millions)
## 3854                                                                                        Population ages 65 and older (millions)
## 3855                                                                                              Population under age 5 (millions)
## 3856                                                                                     Sex ratio at birth (male to female births)
## 3857                                                                                                    Total population (millions)
## 3858                                                                                                           Urban population (%)
## 3859                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 3861                                                                                            Expected years of schooling (years)
## 3865                                                               Gross enrolment ratio, pre-primary (% of preschool-age children)
## 3866                                                            Gross enrolment ratio, primary (% of primary school-age population)
## 3867                                                        Gross enrolment ratio, secondary (% of secondary school-age population)
## 3868                                                          Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 3880                                                       Survival rate to the last grade of lower secondary general education (%)
## 3883                                                                                             Forest area (% of total land area)
## 3885                                                                 Fossil fuel energy consumption (% of total energy consumption)
## 3890                                                             Renewable energy consumption (% of total final energy consumption)
## 3891                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 3904                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 3905                                                                  Proportion of births attended by skilled health personnel (%)
## 3913                                                                                           HIV prevalence, adult (% ages 15-49)
## 3916                                                                                               Life expectancy at birth (years)
## 3917                                                                                       Life expectancy at birth, female (years)
## 3918                                                                                         Life expectancy at birth, male (years)
## 3919                                                                                                          Life expectancy index
## 3920                                                                                Mortality rate, female adult (per 1,000 people)
## 3921                                                                                 Mortality rate, infant (per 1,000 live births)
## 3922                                                                                  Mortality rate, male adult (per 1,000 people)
## 3923                                                                             Mortality rate, under-five (per 1,000 live births)
## 3933                                                                                                    GDP per capita (2011 PPP $)
## 3934                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 3935                                                                                       Gross fixed capital formation (% of GDP)
## 3936                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 3937                                                                                                                   Income index
## 3955                                                                                          Net migration rate (per 1,000 people)
## 3959                                                                                             Gross capital formation (% of GDP)
## 3966                                                                                Rural population with access to electricity (%)
## 3969                                                                                                 Exports and imports (% of GDP)
## 3978                                                                          Labour force participation rate (% ages 15 and older)
## 3979                                                                  Labour force participation rate (% ages 15 and older), female
## 3980                                                                    Labour force participation rate (% ages 15 and older), male
## 3987                                                                                                  Human Development Index (HDI)
## 3988                                                                                                             Median age (years)
## 3989                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 3990                                                                                               Population ages 15–64 (millions)
## 3991                                                                                        Population ages 65 and older (millions)
## 3992                                                                                              Population under age 5 (millions)
## 3993                                                                                     Sex ratio at birth (male to female births)
## 3994                                                                                                    Total population (millions)
## 3995                                                                                                           Urban population (%)
## 3996                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 3997                                                                                                                Education index
## 3998                                                                                            Expected years of schooling (years)
## 4002                                                               Gross enrolment ratio, pre-primary (% of preschool-age children)
## 4003                                                            Gross enrolment ratio, primary (% of primary school-age population)
## 4006                                                                                                Mean years of schooling (years)
## 4007                                                                                        Mean years of schooling, female (years)
## 4008                                                                                          Mean years of schooling, male (years)
## 4009                                                        Population with at least some secondary education (% ages 25 and older)
## 4010                                                Population with at least some secondary education, female (% ages 25 and older)
## 4011                                                  Population with at least some secondary education, male (% ages 25 and older)
## 4016                                                                            Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 4017                                                                                  Carbon dioxide emissions, per capita (tonnes)
## 4018                                                                                             Forest area (% of total land area)
## 4020                                                                 Fossil fuel energy consumption (% of total energy consumption)
## 4025                                                             Renewable energy consumption (% of total final energy consumption)
## 4026                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 4039                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 4049                                                                                           HIV prevalence, adult (% ages 15-49)
## 4050                                                                         Infants lacking immunization, DPT (% of one-year-olds)
## 4051                                                                     Infants lacking immunization, measles (% of one-year-olds)
## 4052                                                                                               Life expectancy at birth (years)
## 4053                                                                                       Life expectancy at birth, female (years)
## 4054                                                                                         Life expectancy at birth, male (years)
## 4055                                                                                                          Life expectancy index
## 4057                                                                                Mortality rate, female adult (per 1,000 people)
## 4058                                                                                 Mortality rate, infant (per 1,000 live births)
## 4059                                                                                  Mortality rate, male adult (per 1,000 people)
## 4060                                                                             Mortality rate, under-five (per 1,000 live births)
## 4069                                                                        Domestic credit provided by financial sector (% of GDP)
## 4070                                                                                                    GDP per capita (2011 PPP $)
## 4071                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 4072                                                                                       Gross fixed capital formation (% of GDP)
## 4073                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 4074                                                                                                                   Income index
## 4087                                                                                          Net migration rate (per 1,000 people)
## 4100                                                                                                Adjusted net savings (% of GNI)
## 4102                                                                                             Gross capital formation (% of GDP)
## 4107                                                                                Rural population with access to electricity (%)
## 4109                                                        Total debt service (% of exports of goods, services and primary income)
## 4110                                                                                                 Exports and imports (% of GDP)
## 4111                                                                              Foreign direct investment, net inflows (% of GDP)
## 4112                                                                        Net official development assistance received (% of GNI)
## 4113                                                                                               Private capital flows (% of GDP)
## 4114                                                                                                Remittances, inflows (% of GDP)
## 4119                                                                          Labour force participation rate (% ages 15 and older)
## 4120                                                                  Labour force participation rate (% ages 15 and older), female
## 4121                                                                    Labour force participation rate (% ages 15 and older), male
## 4128                                                                                                  Human Development Index (HDI)
## 4129                                                                                                             Median age (years)
## 4130                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 4131                                                                                               Population ages 15–64 (millions)
## 4132                                                                                        Population ages 65 and older (millions)
## 4133                                                                                              Population under age 5 (millions)
## 4134                                                                                     Sex ratio at birth (male to female births)
## 4135                                                                                                    Total population (millions)
## 4136                                                                                                           Urban population (%)
## 4137                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 4138                                                                                                                Education index
## 4139                                                                                            Expected years of schooling (years)
## 4143                                                               Gross enrolment ratio, pre-primary (% of preschool-age children)
## 4144                                                            Gross enrolment ratio, primary (% of primary school-age population)
## 4146                                                          Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 4148                                                                                                Mean years of schooling (years)
## 4149                                                                                        Mean years of schooling, female (years)
## 4150                                                                                          Mean years of schooling, male (years)
## 4151                                                        Population with at least some secondary education (% ages 25 and older)
## 4152                                                Population with at least some secondary education, female (% ages 25 and older)
## 4153                                                  Population with at least some secondary education, male (% ages 25 and older)
## 4154                                                                       Primary school dropout rate (% of primary school cohort)
## 4156                                                                       Pupil-teacher ratio, primary school (pupils per teacher)
## 4158                                                                            Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 4159                                                                                  Carbon dioxide emissions, per capita (tonnes)
## 4160                                                                                             Forest area (% of total land area)
## 4162                                                                 Fossil fuel energy consumption (% of total energy consumption)
## 4167                                                             Renewable energy consumption (% of total final energy consumption)
## 4168                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 4180                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 4190                                                                                           HIV prevalence, adult (% ages 15-49)
## 4191                                                                         Infants lacking immunization, DPT (% of one-year-olds)
## 4192                                                                     Infants lacking immunization, measles (% of one-year-olds)
## 4193                                                                                               Life expectancy at birth (years)
## 4194                                                                                       Life expectancy at birth, female (years)
## 4195                                                                                         Life expectancy at birth, male (years)
## 4196                                                                                                          Life expectancy index
## 4198                                                                                Mortality rate, female adult (per 1,000 people)
## 4199                                                                                 Mortality rate, infant (per 1,000 live births)
## 4200                                                                                  Mortality rate, male adult (per 1,000 people)
## 4201                                                                             Mortality rate, under-five (per 1,000 live births)
## 4210                                                                        Domestic credit provided by financial sector (% of GDP)
## 4211                                                                                                    GDP per capita (2011 PPP $)
## 4212                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 4213                                                                                       Gross fixed capital formation (% of GDP)
## 4214                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 4215                                                                                                                   Income index
## 4232                                                                                          Net migration rate (per 1,000 people)
## 4247                                                                                                Adjusted net savings (% of GNI)
## 4249                                                                                             Gross capital formation (% of GDP)
## 4257                                                        Total debt service (% of exports of goods, services and primary income)
## 4258                                                                                                 Exports and imports (% of GDP)
## 4259                                                                              Foreign direct investment, net inflows (% of GDP)
## 4260                                                                        Net official development assistance received (% of GNI)
## 4261                                                                                               Private capital flows (% of GDP)
## 4262                                                                                                Remittances, inflows (% of GDP)
## 4267                                                                          Labour force participation rate (% ages 15 and older)
## 4268                                                                  Labour force participation rate (% ages 15 and older), female
## 4269                                                                    Labour force participation rate (% ages 15 and older), male
## 4277                                                                                                             Median age (years)
## 4278                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 4279                                                                                               Population ages 15–64 (millions)
## 4280                                                                                        Population ages 65 and older (millions)
## 4281                                                                                              Population under age 5 (millions)
## 4282                                                                                     Sex ratio at birth (male to female births)
## 4283                                                                                                    Total population (millions)
## 4284                                                                                                           Urban population (%)
## 4285                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 4287                                                                                            Expected years of schooling (years)
## 4307                                                                            Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 4308                                                                                  Carbon dioxide emissions, per capita (tonnes)
## 4309                                                                                             Forest area (% of total land area)
## 4311                                                                 Fossil fuel energy consumption (% of total energy consumption)
## 4316                                                             Renewable energy consumption (% of total final energy consumption)
## 4317                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 4328                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 4340                                                                         Infants lacking immunization, DPT (% of one-year-olds)
## 4341                                                                     Infants lacking immunization, measles (% of one-year-olds)
## 4342                                                                                               Life expectancy at birth (years)
## 4343                                                                                       Life expectancy at birth, female (years)
## 4344                                                                                         Life expectancy at birth, male (years)
## 4345                                                                                                          Life expectancy index
## 4347                                                                                Mortality rate, female adult (per 1,000 people)
## 4348                                                                                 Mortality rate, infant (per 1,000 live births)
## 4349                                                                                  Mortality rate, male adult (per 1,000 people)
## 4350                                                                             Mortality rate, under-five (per 1,000 live births)
## 4359                                                                        Domestic credit provided by financial sector (% of GDP)
## 4360                                                                                                    GDP per capita (2011 PPP $)
## 4361                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 4362                                                                                       Gross fixed capital formation (% of GDP)
## 4363                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 4364                                                                                                                   Income index
## 4381                                                                                          Net migration rate (per 1,000 people)
## 4398                                                                                             Gross capital formation (% of GDP)
## 4405                                                                                                 Exports and imports (% of GDP)
## 4406                                                                              Foreign direct investment, net inflows (% of GDP)
## 4407                                                                        Net official development assistance received (% of GNI)
## 4414                                                                          Labour force participation rate (% ages 15 and older)
## 4415                                                                  Labour force participation rate (% ages 15 and older), female
## 4416                                                                    Labour force participation rate (% ages 15 and older), male
## 4422                                                                                                  Human Development Index (HDI)
## 4423                                                                                                             Median age (years)
## 4424                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 4425                                                                                               Population ages 15–64 (millions)
## 4426                                                                                        Population ages 65 and older (millions)
## 4427                                                                                              Population under age 5 (millions)
## 4428                                                                                     Sex ratio at birth (male to female births)
## 4429                                                                                                    Total population (millions)
## 4430                                                                                                           Urban population (%)
## 4431                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 4432                                                                                                                Education index
## 4433                                                                                            Expected years of schooling (years)
## 4437                                                               Gross enrolment ratio, pre-primary (% of preschool-age children)
## 4438                                                            Gross enrolment ratio, primary (% of primary school-age population)
## 4441                                                                                                Mean years of schooling (years)
## 4442                                                                                        Mean years of schooling, female (years)
## 4443                                                                                          Mean years of schooling, male (years)
## 4444                                                        Population with at least some secondary education (% ages 25 and older)
## 4445                                                Population with at least some secondary education, female (% ages 25 and older)
## 4446                                                  Population with at least some secondary education, male (% ages 25 and older)
## 4450                                                       Survival rate to the last grade of lower secondary general education (%)
## 4451                                                                            Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 4452                                                                                  Carbon dioxide emissions, per capita (tonnes)
## 4453                                                                                             Forest area (% of total land area)
## 4455                                                                 Fossil fuel energy consumption (% of total energy consumption)
## 4460                                                             Renewable energy consumption (% of total final energy consumption)
## 4461                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 4472                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 4483                                                                                           HIV prevalence, adult (% ages 15-49)
## 4484                                                                         Infants lacking immunization, DPT (% of one-year-olds)
## 4485                                                                     Infants lacking immunization, measles (% of one-year-olds)
## 4486                                                                                               Life expectancy at birth (years)
## 4487                                                                                       Life expectancy at birth, female (years)
## 4488                                                                                         Life expectancy at birth, male (years)
## 4489                                                                                                          Life expectancy index
## 4491                                                                                Mortality rate, female adult (per 1,000 people)
## 4492                                                                                 Mortality rate, infant (per 1,000 live births)
## 4493                                                                                  Mortality rate, male adult (per 1,000 people)
## 4494                                                                             Mortality rate, under-five (per 1,000 live births)
## 4503                                                                        Domestic credit provided by financial sector (% of GDP)
## 4504                                                                                                    GDP per capita (2011 PPP $)
## 4505                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 4506                                                                                       Gross fixed capital formation (% of GDP)
## 4507                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 4508                                                                                                                   Income index
## 4525                                                                                          Net migration rate (per 1,000 people)
## 4541                                                                                             Gross capital formation (% of GDP)
## 4548                                                                                Rural population with access to electricity (%)
## 4550                                                        Total debt service (% of exports of goods, services and primary income)
## 4551                                                                                                 Exports and imports (% of GDP)
## 4552                                                                              Foreign direct investment, net inflows (% of GDP)
## 4553                                                                        Net official development assistance received (% of GNI)
## 4554                                                                                               Private capital flows (% of GDP)
## 4555                                                                                                Remittances, inflows (% of GDP)
## 4559                                                                          Labour force participation rate (% ages 15 and older)
## 4560                                                                  Labour force participation rate (% ages 15 and older), female
## 4561                                                                    Labour force participation rate (% ages 15 and older), male
## 4568                                                                                                  Human Development Index (HDI)
## 4569                                                                                                             Median age (years)
## 4570                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 4571                                                                                               Population ages 15–64 (millions)
## 4572                                                                                        Population ages 65 and older (millions)
## 4573                                                                                              Population under age 5 (millions)
## 4574                                                                                     Sex ratio at birth (male to female births)
## 4575                                                                                                    Total population (millions)
## 4576                                                                                                           Urban population (%)
## 4577                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 4578                                                                                                                Education index
## 4579                                                                                            Expected years of schooling (years)
## 4580                                                                                    Expected years of schooling, female (years)
## 4581                                                                                      Expected years of schooling, male (years)
## 4582                                                                                 Government expenditure on education (% of GDP)
## 4584                                                            Gross enrolment ratio, primary (% of primary school-age population)
## 4585                                                        Gross enrolment ratio, secondary (% of secondary school-age population)
## 4587                                                                                                Mean years of schooling (years)
## 4588                                                                                        Mean years of schooling, female (years)
## 4589                                                                                          Mean years of schooling, male (years)
## 4590                                                        Population with at least some secondary education (% ages 25 and older)
## 4591                                                Population with at least some secondary education, female (% ages 25 and older)
## 4592                                                  Population with at least some secondary education, male (% ages 25 and older)
## 4596                                                                       Pupil-teacher ratio, primary school (pupils per teacher)
## 4598                                                                            Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 4599                                                                                  Carbon dioxide emissions, per capita (tonnes)
## 4600                                                                                             Forest area (% of total land area)
## 4602                                                                 Fossil fuel energy consumption (% of total energy consumption)
## 4607                                                             Renewable energy consumption (% of total final energy consumption)
## 4608                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 4618                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 4628                                                                                           HIV prevalence, adult (% ages 15-49)
## 4629                                                                         Infants lacking immunization, DPT (% of one-year-olds)
## 4630                                                                     Infants lacking immunization, measles (% of one-year-olds)
## 4631                                                                                               Life expectancy at birth (years)
## 4632                                                                                       Life expectancy at birth, female (years)
## 4633                                                                                         Life expectancy at birth, male (years)
## 4634                                                                                                          Life expectancy index
## 4636                                                                                Mortality rate, female adult (per 1,000 people)
## 4637                                                                                 Mortality rate, infant (per 1,000 live births)
## 4638                                                                                  Mortality rate, male adult (per 1,000 people)
## 4639                                                                             Mortality rate, under-five (per 1,000 live births)
## 4648                                                                        Domestic credit provided by financial sector (% of GDP)
## 4649                                                                                                    GDP per capita (2011 PPP $)
## 4650                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 4651                                                                                       Gross fixed capital formation (% of GDP)
## 4652                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 4653                                                                                                                   Income index
## 4671                                                                                          Net migration rate (per 1,000 people)
## 4673                                                                                                Adjusted net savings (% of GNI)
## 4675                                                                                             Gross capital formation (% of GDP)
## 4681                                                                                Rural population with access to electricity (%)
## 4682                                                        Total debt service (% of exports of goods, services and primary income)
## 4683                                                                                                 Exports and imports (% of GDP)
## 4684                                                                              Foreign direct investment, net inflows (% of GDP)
## 4685                                                                        Net official development assistance received (% of GNI)
## 4686                                                                                               Private capital flows (% of GDP)
## 4687                                                                                                Remittances, inflows (% of GDP)
## 4691                                                                          Labour force participation rate (% ages 15 and older)
## 4692                                                                  Labour force participation rate (% ages 15 and older), female
## 4693                                                                    Labour force participation rate (% ages 15 and older), male
## 4700                                                                                                  Human Development Index (HDI)
## 4701                                                                                                             Median age (years)
## 4702                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 4703                                                                                               Population ages 15–64 (millions)
## 4704                                                                                        Population ages 65 and older (millions)
## 4705                                                                                              Population under age 5 (millions)
## 4706                                                                                     Sex ratio at birth (male to female births)
## 4707                                                                                                    Total population (millions)
## 4708                                                                                                           Urban population (%)
## 4709                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 4710                                                                                                                Education index
## 4711                                                                                            Expected years of schooling (years)
## 4720                                                                                                Mean years of schooling (years)
## 4721                                                                                        Mean years of schooling, female (years)
## 4722                                                                                          Mean years of schooling, male (years)
## 4723                                                        Population with at least some secondary education (% ages 25 and older)
## 4724                                                Population with at least some secondary education, female (% ages 25 and older)
## 4725                                                  Population with at least some secondary education, male (% ages 25 and older)
## 4733                                                                            Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 4734                                                                                  Carbon dioxide emissions, per capita (tonnes)
## 4735                                                                                             Forest area (% of total land area)
## 4737                                                                 Fossil fuel energy consumption (% of total energy consumption)
## 4742                                                             Renewable energy consumption (% of total final energy consumption)
## 4743                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 4756                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 4766                                                                                           HIV prevalence, adult (% ages 15-49)
## 4767                                                                         Infants lacking immunization, DPT (% of one-year-olds)
## 4768                                                                     Infants lacking immunization, measles (% of one-year-olds)
## 4769                                                                                               Life expectancy at birth (years)
## 4770                                                                                       Life expectancy at birth, female (years)
## 4771                                                                                         Life expectancy at birth, male (years)
## 4772                                                                                                          Life expectancy index
## 4774                                                                                Mortality rate, female adult (per 1,000 people)
## 4775                                                                                 Mortality rate, infant (per 1,000 live births)
## 4776                                                                                  Mortality rate, male adult (per 1,000 people)
## 4777                                                                             Mortality rate, under-five (per 1,000 live births)
## 4786                                                                        Domestic credit provided by financial sector (% of GDP)
## 4787                                                                                                    GDP per capita (2011 PPP $)
## 4788                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 4789                                                                                       Gross fixed capital formation (% of GDP)
## 4790                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 4791                                                                                                                   Income index
## 4809                                                                                          Net migration rate (per 1,000 people)
## 4824                                                                                                Adjusted net savings (% of GNI)
## 4826                                                                                             Gross capital formation (% of GDP)
## 4833                                                                                Rural population with access to electricity (%)
## 4835                                                        Total debt service (% of exports of goods, services and primary income)
## 4836                                                                                                 Exports and imports (% of GDP)
## 4837                                                                              Foreign direct investment, net inflows (% of GDP)
## 4838                                                                        Net official development assistance received (% of GNI)
## 4839                                                                                               Private capital flows (% of GDP)
## 4840                                                                                                Remittances, inflows (% of GDP)
## 4845                                                                          Labour force participation rate (% ages 15 and older)
## 4846                                                                  Labour force participation rate (% ages 15 and older), female
## 4847                                                                    Labour force participation rate (% ages 15 and older), male
## 4854                                                                                                  Human Development Index (HDI)
## 4855                                                                                                             Median age (years)
## 4856                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 4857                                                                                               Population ages 15–64 (millions)
## 4858                                                                                        Population ages 65 and older (millions)
## 4859                                                                                              Population under age 5 (millions)
## 4860                                                                                     Sex ratio at birth (male to female births)
## 4861                                                                                                    Total population (millions)
## 4862                                                                                                           Urban population (%)
## 4863                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 4864                                                                                                                Education index
## 4865                                                                                            Expected years of schooling (years)
## 4866                                                                                    Expected years of schooling, female (years)
## 4867                                                                                      Expected years of schooling, male (years)
## 4868                                                                                 Government expenditure on education (% of GDP)
## 4874                                                                                                Mean years of schooling (years)
## 4875                                                                                        Mean years of schooling, female (years)
## 4876                                                                                          Mean years of schooling, male (years)
## 4877                                                        Population with at least some secondary education (% ages 25 and older)
## 4878                                                Population with at least some secondary education, female (% ages 25 and older)
## 4879                                                  Population with at least some secondary education, male (% ages 25 and older)
## 4885                                                                            Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 4886                                                                                  Carbon dioxide emissions, per capita (tonnes)
## 4887                                                                                             Forest area (% of total land area)
## 4889                                                                 Fossil fuel energy consumption (% of total energy consumption)
## 4893                                                             Renewable energy consumption (% of total final energy consumption)
## 4894                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 4905                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 4913                                                                         Infants lacking immunization, DPT (% of one-year-olds)
## 4914                                                                     Infants lacking immunization, measles (% of one-year-olds)
## 4915                                                                                               Life expectancy at birth (years)
## 4916                                                                                       Life expectancy at birth, female (years)
## 4917                                                                                         Life expectancy at birth, male (years)
## 4918                                                                                                          Life expectancy index
## 4919                                                                                Mortality rate, female adult (per 1,000 people)
## 4920                                                                                 Mortality rate, infant (per 1,000 live births)
## 4921                                                                                  Mortality rate, male adult (per 1,000 people)
## 4922                                                                             Mortality rate, under-five (per 1,000 live births)
## 4931                                                                                                    GDP per capita (2011 PPP $)
## 4932                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 4933                                                                                       Gross fixed capital formation (% of GDP)
## 4934                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 4935                                                                                                                   Income index
## 4943                                                                                          Net migration rate (per 1,000 people)
## 4947                                                                                             Gross capital formation (% of GDP)
## 4951                                                                                Rural population with access to electricity (%)
## 4953                                                                                                 Exports and imports (% of GDP)
## 4955                                                                        Net official development assistance received (% of GNI)
## 4960                                                                          Labour force participation rate (% ages 15 and older)
## 4961                                                                  Labour force participation rate (% ages 15 and older), female
## 4962                                                                    Labour force participation rate (% ages 15 and older), male
## 4969                                                                                                  Human Development Index (HDI)
## 4970                                                                                                             Median age (years)
## 4971                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 4972                                                                                               Population ages 15–64 (millions)
## 4973                                                                                        Population ages 65 and older (millions)
## 4974                                                                                              Population under age 5 (millions)
## 4975                                                                                     Sex ratio at birth (male to female births)
## 4976                                                                                                    Total population (millions)
## 4977                                                                                                           Urban population (%)
## 4978                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 4979                                                                                                                Education index
## 4980                                                                                            Expected years of schooling (years)
## 4981                                                                                    Expected years of schooling, female (years)
## 4982                                                                                      Expected years of schooling, male (years)
## 4983                                                                                 Government expenditure on education (% of GDP)
## 4984                                                               Gross enrolment ratio, pre-primary (% of preschool-age children)
## 4985                                                            Gross enrolment ratio, primary (% of primary school-age population)
## 4986                                                        Gross enrolment ratio, secondary (% of secondary school-age population)
## 4987                                                          Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 4989                                                                                                Mean years of schooling (years)
## 4990                                                                                        Mean years of schooling, female (years)
## 4991                                                                                          Mean years of schooling, male (years)
## 4992                                                        Population with at least some secondary education (% ages 25 and older)
## 4993                                                Population with at least some secondary education, female (% ages 25 and older)
## 4994                                                  Population with at least some secondary education, male (% ages 25 and older)
## 4995                                                                       Primary school dropout rate (% of primary school cohort)
## 5000                                                       Survival rate to the last grade of lower secondary general education (%)
## 5001                                                                            Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 5002                                                                                  Carbon dioxide emissions, per capita (tonnes)
## 5003                                                                                             Forest area (% of total land area)
## 5005                                                                 Fossil fuel energy consumption (% of total energy consumption)
## 5006                                                                 Fresh water withdrawals (% of total renewable water resources)
## 5010                                                             Renewable energy consumption (% of total final energy consumption)
## 5011                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 5022                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 5023                                                                  Proportion of births attended by skilled health personnel (%)
## 5032                                                                                           HIV prevalence, adult (% ages 15-49)
## 5033                                                                         Infants lacking immunization, DPT (% of one-year-olds)
## 5034                                                                     Infants lacking immunization, measles (% of one-year-olds)
## 5035                                                                                               Life expectancy at birth (years)
## 5036                                                                                       Life expectancy at birth, female (years)
## 5037                                                                                         Life expectancy at birth, male (years)
## 5038                                                                                                          Life expectancy index
## 5039                                                                                Mortality rate, female adult (per 1,000 people)
## 5040                                                                                 Mortality rate, infant (per 1,000 live births)
## 5041                                                                                  Mortality rate, male adult (per 1,000 people)
## 5042                                                                             Mortality rate, under-five (per 1,000 live births)
## 5052                                                                                                    GDP per capita (2011 PPP $)
## 5053                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 5054                                                                                       Gross fixed capital formation (% of GDP)
## 5055                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 5056                                                                                                                   Income index
## 5074                                                                                          Net migration rate (per 1,000 people)
## 5075                                                                                                Adjusted net savings (% of GNI)
## 5077                                                                                             Gross capital formation (% of GDP)
## 5083                                                                                Rural population with access to electricity (%)
## 5085                                                        Total debt service (% of exports of goods, services and primary income)
## 5086                                                                                                 Exports and imports (% of GDP)
## 5087                                                                              Foreign direct investment, net inflows (% of GDP)
## 5088                                                                                               Private capital flows (% of GDP)
## 5093                                                                          Labour force participation rate (% ages 15 and older)
## 5094                                                                  Labour force participation rate (% ages 15 and older), female
## 5095                                                                    Labour force participation rate (% ages 15 and older), male
## 5103                                                                                                             Median age (years)
## 5104                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 5105                                                                                               Population ages 15–64 (millions)
## 5106                                                                                        Population ages 65 and older (millions)
## 5107                                                                                              Population under age 5 (millions)
## 5108                                                                                     Sex ratio at birth (male to female births)
## 5109                                                                                                    Total population (millions)
## 5110                                                                                                           Urban population (%)
## 5111                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 5113                                                                                            Expected years of schooling (years)
## 5114                                                                                    Expected years of schooling, female (years)
## 5115                                                                                      Expected years of schooling, male (years)
## 5117                                                               Gross enrolment ratio, pre-primary (% of preschool-age children)
## 5118                                                            Gross enrolment ratio, primary (% of primary school-age population)
## 5119                                                        Gross enrolment ratio, secondary (% of secondary school-age population)
## 5120                                                          Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 5128                                                                       Primary school dropout rate (% of primary school cohort)
## 5130                                                                       Pupil-teacher ratio, primary school (pupils per teacher)
## 5131                                                       Survival rate to the last grade of lower secondary general education (%)
## 5132                                                                            Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 5133                                                                                  Carbon dioxide emissions, per capita (tonnes)
## 5134                                                                                             Forest area (% of total land area)
## 5140                                                             Renewable energy consumption (% of total final energy consumption)
## 5141                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 5153                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 5164                                                                                           HIV prevalence, adult (% ages 15-49)
## 5165                                                                         Infants lacking immunization, DPT (% of one-year-olds)
## 5166                                                                     Infants lacking immunization, measles (% of one-year-olds)
## 5167                                                                                               Life expectancy at birth (years)
## 5168                                                                                       Life expectancy at birth, female (years)
## 5169                                                                                         Life expectancy at birth, male (years)
## 5170                                                                                                          Life expectancy index
## 5172                                                                                Mortality rate, female adult (per 1,000 people)
## 5173                                                                                 Mortality rate, infant (per 1,000 live births)
## 5174                                                                                  Mortality rate, male adult (per 1,000 people)
## 5175                                                                             Mortality rate, under-five (per 1,000 live births)
## 5184                                                                        Domestic credit provided by financial sector (% of GDP)
## 5185                                                                                                    GDP per capita (2011 PPP $)
## 5186                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 5187                                                                                       Gross fixed capital formation (% of GDP)
## 5188                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 5189                                                                                                                   Income index
## 5206                                                                                          Net migration rate (per 1,000 people)
## 5223                                                                                             Gross capital formation (% of GDP)
## 5232                                                        Total debt service (% of exports of goods, services and primary income)
## 5233                                                                                                 Exports and imports (% of GDP)
## 5234                                                                              Foreign direct investment, net inflows (% of GDP)
## 5235                                                                        Net official development assistance received (% of GNI)
## 5237                                                                                                Remittances, inflows (% of GDP)
## 5242                                                                          Labour force participation rate (% ages 15 and older)
## 5243                                                                  Labour force participation rate (% ages 15 and older), female
## 5244                                                                    Labour force participation rate (% ages 15 and older), male
## 5250                                                                                                  Human Development Index (HDI)
## 5251                                                                                                             Median age (years)
## 5252                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 5253                                                                                               Population ages 15–64 (millions)
## 5254                                                                                        Population ages 65 and older (millions)
## 5255                                                                                              Population under age 5 (millions)
## 5256                                                                                     Sex ratio at birth (male to female births)
## 5257                                                                                                    Total population (millions)
## 5258                                                                                                           Urban population (%)
## 5259                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 5260                                                                                                                Education index
## 5261                                                                                            Expected years of schooling (years)
## 5262                                                                                    Expected years of schooling, female (years)
## 5263                                                                                      Expected years of schooling, male (years)
## 5264                                                                                 Government expenditure on education (% of GDP)
## 5266                                                            Gross enrolment ratio, primary (% of primary school-age population)
## 5267                                                        Gross enrolment ratio, secondary (% of secondary school-age population)
## 5268                                                          Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 5269                                                                                     Literacy rate, adult (% ages 15 and older)
## 5270                                                                                                Mean years of schooling (years)
## 5271                                                                                        Mean years of schooling, female (years)
## 5272                                                                                          Mean years of schooling, male (years)
## 5273                                                        Population with at least some secondary education (% ages 25 and older)
## 5274                                                Population with at least some secondary education, female (% ages 25 and older)
## 5275                                                  Population with at least some secondary education, male (% ages 25 and older)
## 5278                                                                       Pupil-teacher ratio, primary school (pupils per teacher)
## 5280                                                                            Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 5281                                                                                  Carbon dioxide emissions, per capita (tonnes)
## 5282                                                                                             Forest area (% of total land area)
## 5288                                                             Renewable energy consumption (% of total final energy consumption)
## 5289                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 5301                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 5311                                                                                           HIV prevalence, adult (% ages 15-49)
## 5312                                                                         Infants lacking immunization, DPT (% of one-year-olds)
## 5313                                                                     Infants lacking immunization, measles (% of one-year-olds)
## 5314                                                                                               Life expectancy at birth (years)
## 5315                                                                                       Life expectancy at birth, female (years)
## 5316                                                                                         Life expectancy at birth, male (years)
## 5317                                                                                                          Life expectancy index
## 5319                                                                                Mortality rate, female adult (per 1,000 people)
## 5320                                                                                 Mortality rate, infant (per 1,000 live births)
## 5321                                                                                  Mortality rate, male adult (per 1,000 people)
## 5322                                                                             Mortality rate, under-five (per 1,000 live births)
## 5331                                                                        Domestic credit provided by financial sector (% of GDP)
## 5332                                                                                                    GDP per capita (2011 PPP $)
## 5333                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 5334                                                                                       Gross fixed capital formation (% of GDP)
## 5335                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 5336                                                                                                                   Income index
## 5354                                                                                          Net migration rate (per 1,000 people)
## 5369                                                                                                Adjusted net savings (% of GNI)
## 5371                                                                                             Gross capital formation (% of GDP)
## 5378                                                        Total debt service (% of exports of goods, services and primary income)
## 5379                                                                                                 Exports and imports (% of GDP)
## 5380                                                                              Foreign direct investment, net inflows (% of GDP)
## 5381                                                                        Net official development assistance received (% of GNI)
## 5382                                                                                               Private capital flows (% of GDP)
## 5388                                                                          Labour force participation rate (% ages 15 and older)
## 5389                                                                  Labour force participation rate (% ages 15 and older), female
## 5390                                                                    Labour force participation rate (% ages 15 and older), male
## 5397                                                                                                  Human Development Index (HDI)
## 5398                                                                                                             Median age (years)
## 5399                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 5400                                                                                               Population ages 15–64 (millions)
## 5401                                                                                        Population ages 65 and older (millions)
## 5402                                                                                              Population under age 5 (millions)
## 5403                                                                                     Sex ratio at birth (male to female births)
## 5404                                                                                                    Total population (millions)
## 5405                                                                                                           Urban population (%)
## 5406                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 5407                                                                                                                Education index
## 5408                                                                                            Expected years of schooling (years)
## 5409                                                                                    Expected years of schooling, female (years)
## 5411                                                                                 Government expenditure on education (% of GDP)
## 5412                                                               Gross enrolment ratio, pre-primary (% of preschool-age children)
## 5413                                                            Gross enrolment ratio, primary (% of primary school-age population)
## 5414                                                        Gross enrolment ratio, secondary (% of secondary school-age population)
## 5415                                                          Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 5417                                                                                                Mean years of schooling (years)
## 5418                                                                                        Mean years of schooling, female (years)
## 5419                                                                                          Mean years of schooling, male (years)
## 5420                                                        Population with at least some secondary education (% ages 25 and older)
## 5421                                                Population with at least some secondary education, female (% ages 25 and older)
## 5422                                                  Population with at least some secondary education, male (% ages 25 and older)
## 5423                                                                       Primary school dropout rate (% of primary school cohort)
## 5425                                                                       Pupil-teacher ratio, primary school (pupils per teacher)
## 5426                                                       Survival rate to the last grade of lower secondary general education (%)
## 5427                                                                            Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 5428                                                                                  Carbon dioxide emissions, per capita (tonnes)
## 5429                                                                                             Forest area (% of total land area)
## 5431                                                                 Fossil fuel energy consumption (% of total energy consumption)
## 5436                                                             Renewable energy consumption (% of total final energy consumption)
## 5437                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 5448                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 5460                                                                                           HIV prevalence, adult (% ages 15-49)
## 5461                                                                         Infants lacking immunization, DPT (% of one-year-olds)
## 5462                                                                     Infants lacking immunization, measles (% of one-year-olds)
## 5463                                                                                               Life expectancy at birth (years)
## 5464                                                                                       Life expectancy at birth, female (years)
## 5465                                                                                         Life expectancy at birth, male (years)
## 5466                                                                                                          Life expectancy index
## 5468                                                                                Mortality rate, female adult (per 1,000 people)
## 5469                                                                                 Mortality rate, infant (per 1,000 live births)
## 5470                                                                                  Mortality rate, male adult (per 1,000 people)
## 5471                                                                             Mortality rate, under-five (per 1,000 live births)
## 5480                                                                        Domestic credit provided by financial sector (% of GDP)
## 5481                                                                                                    GDP per capita (2011 PPP $)
## 5482                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 5483                                                                                       Gross fixed capital formation (% of GDP)
## 5484                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 5485                                                                                                                   Income index
## 5502                                                                                          Net migration rate (per 1,000 people)
## 5517                                                                                                Adjusted net savings (% of GNI)
## 5519                                                                                             Gross capital formation (% of GDP)
## 5525                                                                                Rural population with access to electricity (%)
## 5527                                                        Total debt service (% of exports of goods, services and primary income)
## 5528                                                                                                 Exports and imports (% of GDP)
## 5529                                                                              Foreign direct investment, net inflows (% of GDP)
## 5530                                                                        Net official development assistance received (% of GNI)
## 5531                                                                                               Private capital flows (% of GDP)
## 5532                                                                                                Remittances, inflows (% of GDP)
## 5537                                                                          Labour force participation rate (% ages 15 and older)
## 5538                                                                  Labour force participation rate (% ages 15 and older), female
## 5539                                                                    Labour force participation rate (% ages 15 and older), male
## 5546                                                                                                  Human Development Index (HDI)
## 5547                                                                                                             Median age (years)
## 5548                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 5549                                                                                               Population ages 15–64 (millions)
## 5550                                                                                        Population ages 65 and older (millions)
## 5551                                                                                              Population under age 5 (millions)
## 5552                                                                                     Sex ratio at birth (male to female births)
## 5553                                                                                                    Total population (millions)
## 5554                                                                                                           Urban population (%)
## 5555                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 5556                                                                                                                Education index
## 5557                                                                                            Expected years of schooling (years)
## 5558                                                                                    Expected years of schooling, female (years)
## 5559                                                                                      Expected years of schooling, male (years)
## 5560                                                                                 Government expenditure on education (% of GDP)
## 5562                                                            Gross enrolment ratio, primary (% of primary school-age population)
## 5563                                                        Gross enrolment ratio, secondary (% of secondary school-age population)
## 5564                                                          Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 5566                                                                                                Mean years of schooling (years)
## 5567                                                                                        Mean years of schooling, female (years)
## 5568                                                                                          Mean years of schooling, male (years)
## 5569                                                        Population with at least some secondary education (% ages 25 and older)
## 5570                                                Population with at least some secondary education, female (% ages 25 and older)
## 5571                                                  Population with at least some secondary education, male (% ages 25 and older)
## 5572                                                                       Primary school dropout rate (% of primary school cohort)
## 5574                                                                       Pupil-teacher ratio, primary school (pupils per teacher)
## 5575                                                       Survival rate to the last grade of lower secondary general education (%)
## 5576                                                                            Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 5577                                                                                  Carbon dioxide emissions, per capita (tonnes)
## 5578                                                                                             Forest area (% of total land area)
## 5584                                                             Renewable energy consumption (% of total final energy consumption)
## 5585                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 5596                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 5607                                                                                           HIV prevalence, adult (% ages 15-49)
## 5608                                                                         Infants lacking immunization, DPT (% of one-year-olds)
## 5609                                                                     Infants lacking immunization, measles (% of one-year-olds)
## 5610                                                                                               Life expectancy at birth (years)
## 5611                                                                                       Life expectancy at birth, female (years)
## 5612                                                                                         Life expectancy at birth, male (years)
## 5613                                                                                                          Life expectancy index
## 5615                                                                                Mortality rate, female adult (per 1,000 people)
## 5616                                                                                 Mortality rate, infant (per 1,000 live births)
## 5617                                                                                  Mortality rate, male adult (per 1,000 people)
## 5618                                                                             Mortality rate, under-five (per 1,000 live births)
## 5627                                                                        Domestic credit provided by financial sector (% of GDP)
## 5628                                                                                                    GDP per capita (2011 PPP $)
## 5629                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 5630                                                                                       Gross fixed capital formation (% of GDP)
## 5631                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 5632                                                                                                                   Income index
## 5649                                                                                          Net migration rate (per 1,000 people)
## 5664                                                                                                Adjusted net savings (% of GNI)
## 5666                                                                                             Gross capital formation (% of GDP)
## 5673                                                        Total debt service (% of exports of goods, services and primary income)
## 5674                                                                                                 Exports and imports (% of GDP)
## 5675                                                                              Foreign direct investment, net inflows (% of GDP)
## 5676                                                                        Net official development assistance received (% of GNI)
## 5677                                                                                               Private capital flows (% of GDP)
## 5678                                                                                                Remittances, inflows (% of GDP)
## 5683                                                                          Labour force participation rate (% ages 15 and older)
## 5684                                                                  Labour force participation rate (% ages 15 and older), female
## 5685                                                                    Labour force participation rate (% ages 15 and older), male
## 5691                                                                                                             Median age (years)
## 5692                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 5693                                                                                               Population ages 15–64 (millions)
## 5694                                                                                        Population ages 65 and older (millions)
## 5695                                                                                              Population under age 5 (millions)
## 5696                                                                                     Sex ratio at birth (male to female births)
## 5697                                                                                                    Total population (millions)
## 5698                                                                                                           Urban population (%)
## 5699                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 5701                                                                                            Expected years of schooling (years)
## 5706                                                            Gross enrolment ratio, primary (% of primary school-age population)
## 5707                                                        Gross enrolment ratio, secondary (% of secondary school-age population)
## 5716                                                                       Primary school dropout rate (% of primary school cohort)
## 5718                                                                       Pupil-teacher ratio, primary school (pupils per teacher)
## 5719                                                       Survival rate to the last grade of lower secondary general education (%)
## 5720                                                                            Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 5721                                                                                  Carbon dioxide emissions, per capita (tonnes)
## 5722                                                                                             Forest area (% of total land area)
## 5728                                                             Renewable energy consumption (% of total final energy consumption)
## 5729                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 5740                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 5751                                                                                           HIV prevalence, adult (% ages 15-49)
## 5752                                                                         Infants lacking immunization, DPT (% of one-year-olds)
## 5753                                                                     Infants lacking immunization, measles (% of one-year-olds)
## 5754                                                                                               Life expectancy at birth (years)
## 5755                                                                                       Life expectancy at birth, female (years)
## 5756                                                                                         Life expectancy at birth, male (years)
## 5757                                                                                                          Life expectancy index
## 5759                                                                                Mortality rate, female adult (per 1,000 people)
## 5760                                                                                 Mortality rate, infant (per 1,000 live births)
## 5761                                                                                  Mortality rate, male adult (per 1,000 people)
## 5762                                                                             Mortality rate, under-five (per 1,000 live births)
## 5771                                                                        Domestic credit provided by financial sector (% of GDP)
## 5772                                                                                                    GDP per capita (2011 PPP $)
## 5773                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 5774                                                                                       Gross fixed capital formation (% of GDP)
## 5775                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 5776                                                                                                                   Income index
## 5793                                                                                          Net migration rate (per 1,000 people)
## 5808                                                                                                Adjusted net savings (% of GNI)
## 5810                                                                                             Gross capital formation (% of GDP)
## 5816                                                                                Rural population with access to electricity (%)
## 5817                                                        Total debt service (% of exports of goods, services and primary income)
## 5818                                                                                                 Exports and imports (% of GDP)
## 5819                                                                              Foreign direct investment, net inflows (% of GDP)
## 5820                                                                        Net official development assistance received (% of GNI)
## 5821                                                                                               Private capital flows (% of GDP)
## 5827                                                                          Labour force participation rate (% ages 15 and older)
## 5828                                                                  Labour force participation rate (% ages 15 and older), female
## 5829                                                                    Labour force participation rate (% ages 15 and older), male
## 5835                                                                                                  Human Development Index (HDI)
## 5836                                                                                                             Median age (years)
## 5837                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 5838                                                                                               Population ages 15–64 (millions)
## 5839                                                                                        Population ages 65 and older (millions)
## 5840                                                                                              Population under age 5 (millions)
## 5841                                                                                     Sex ratio at birth (male to female births)
## 5842                                                                                                    Total population (millions)
## 5843                                                                                                           Urban population (%)
## 5844                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 5845                                                                                                                Education index
## 5846                                                                                            Expected years of schooling (years)
## 5847                                                                                    Expected years of schooling, female (years)
## 5848                                                                                      Expected years of schooling, male (years)
## 5849                                                                                 Government expenditure on education (% of GDP)
## 5850                                                               Gross enrolment ratio, pre-primary (% of preschool-age children)
## 5851                                                            Gross enrolment ratio, primary (% of primary school-age population)
## 5852                                                        Gross enrolment ratio, secondary (% of secondary school-age population)
## 5855                                                                                                Mean years of schooling (years)
## 5856                                                                                        Mean years of schooling, female (years)
## 5857                                                                                          Mean years of schooling, male (years)
## 5858                                                        Population with at least some secondary education (% ages 25 and older)
## 5859                                                Population with at least some secondary education, female (% ages 25 and older)
## 5860                                                  Population with at least some secondary education, male (% ages 25 and older)
## 5868                                                                            Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 5869                                                                                  Carbon dioxide emissions, per capita (tonnes)
## 5870                                                                                             Forest area (% of total land area)
## 5872                                                                 Fossil fuel energy consumption (% of total energy consumption)
## 5877                                                             Renewable energy consumption (% of total final energy consumption)
## 5878                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 5880                                                                Estimated gross national income per capita, female (2011 PPP $)
## 5881                                                                  Estimated gross national income per capita, male (2011 PPP $)
## 5883                                                                                                 Gender Development Index (GDI)
## 5885                                                                                          Human Development Index (HDI), female
## 5886                                                                                            Human Development Index (HDI), male
## 5888                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 5897                                                                                           HIV prevalence, adult (% ages 15-49)
## 5898                                                                         Infants lacking immunization, DPT (% of one-year-olds)
## 5899                                                                     Infants lacking immunization, measles (% of one-year-olds)
## 5900                                                                                               Life expectancy at birth (years)
## 5901                                                                                       Life expectancy at birth, female (years)
## 5902                                                                                         Life expectancy at birth, male (years)
## 5903                                                                                                          Life expectancy index
## 5904                                                                                Mortality rate, female adult (per 1,000 people)
## 5905                                                                                 Mortality rate, infant (per 1,000 live births)
## 5906                                                                                  Mortality rate, male adult (per 1,000 people)
## 5907                                                                             Mortality rate, under-five (per 1,000 live births)
## 5916                                                                        Domestic credit provided by financial sector (% of GDP)
## 5917                                                                                                    GDP per capita (2011 PPP $)
## 5918                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 5919                                                                                       Gross fixed capital formation (% of GDP)
## 5920                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 5921                                                                                                                   Income index
## 5938                                                                                          Net migration rate (per 1,000 people)
## 5940                                                                                                Adjusted net savings (% of GNI)
## 5942                                                                                             Gross capital formation (% of GDP)
## 5949                                                                                Rural population with access to electricity (%)
## 5951                                                                                                 Exports and imports (% of GDP)
## 5952                                                                              Foreign direct investment, net inflows (% of GDP)
## 5953                                                                        Net official development assistance received (% of GNI)
## 5954                                                                                               Private capital flows (% of GDP)
## 5955                                                                                                Remittances, inflows (% of GDP)
## 5960                                                                          Labour force participation rate (% ages 15 and older)
## 5961                                                                  Labour force participation rate (% ages 15 and older), female
## 5962                                                                    Labour force participation rate (% ages 15 and older), male
## 5969                                                                                                  Human Development Index (HDI)
## 5970                                                                                                             Median age (years)
## 5971                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 5972                                                                                               Population ages 15–64 (millions)
## 5973                                                                                        Population ages 65 and older (millions)
## 5974                                                                                              Population under age 5 (millions)
## 5975                                                                                     Sex ratio at birth (male to female births)
## 5976                                                                                                    Total population (millions)
## 5977                                                                                                           Urban population (%)
## 5978                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 5979                                                                                                                Education index
## 5980                                                                                            Expected years of schooling (years)
## 5981                                                                                    Expected years of schooling, female (years)
## 5982                                                                                      Expected years of schooling, male (years)
## 5984                                                               Gross enrolment ratio, pre-primary (% of preschool-age children)
## 5985                                                            Gross enrolment ratio, primary (% of primary school-age population)
## 5986                                                        Gross enrolment ratio, secondary (% of secondary school-age population)
## 5987                                                          Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 5988                                                                                     Literacy rate, adult (% ages 15 and older)
## 5989                                                                                                Mean years of schooling (years)
## 5990                                                                                        Mean years of schooling, female (years)
## 5991                                                                                          Mean years of schooling, male (years)
## 5992                                                        Population with at least some secondary education (% ages 25 and older)
## 5993                                                Population with at least some secondary education, female (% ages 25 and older)
## 5994                                                  Population with at least some secondary education, male (% ages 25 and older)
## 5995                                                                       Primary school dropout rate (% of primary school cohort)
## 5999                                                                       Pupil-teacher ratio, primary school (pupils per teacher)
## 6000                                                       Survival rate to the last grade of lower secondary general education (%)
## 6001                                                                            Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 6002                                                                                  Carbon dioxide emissions, per capita (tonnes)
## 6003                                                                                             Forest area (% of total land area)
## 6005                                                                 Fossil fuel energy consumption (% of total energy consumption)
## 6006                                                                 Fresh water withdrawals (% of total renewable water resources)
## 6010                                                             Renewable energy consumption (% of total final energy consumption)
## 6011                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 6021                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 6022                                                                  Proportion of births attended by skilled health personnel (%)
## 6030                                                                         Infants lacking immunization, DPT (% of one-year-olds)
## 6031                                                                     Infants lacking immunization, measles (% of one-year-olds)
## 6032                                                                                               Life expectancy at birth (years)
## 6033                                                                                       Life expectancy at birth, female (years)
## 6034                                                                                         Life expectancy at birth, male (years)
## 6035                                                                                                          Life expectancy index
## 6037                                                                                Mortality rate, female adult (per 1,000 people)
## 6038                                                                                 Mortality rate, infant (per 1,000 live births)
## 6039                                                                                  Mortality rate, male adult (per 1,000 people)
## 6040                                                                             Mortality rate, under-five (per 1,000 live births)
## 6048                                                                        Domestic credit provided by financial sector (% of GDP)
## 6049                                                                                                    GDP per capita (2011 PPP $)
## 6050                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 6051                                                                                       Gross fixed capital formation (% of GDP)
## 6052                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 6053                                                                                                                   Income index
## 6070                                                                                          Net migration rate (per 1,000 people)
## 6085                                                                                                Adjusted net savings (% of GNI)
## 6087                                                                                             Gross capital formation (% of GDP)
## 6093                                                                                Rural population with access to electricity (%)
## 6094                                                        Total debt service (% of exports of goods, services and primary income)
## 6095                                                                                                 Exports and imports (% of GDP)
## 6096                                                                              Foreign direct investment, net inflows (% of GDP)
## 6097                                                                        Net official development assistance received (% of GNI)
## 6098                                                                                               Private capital flows (% of GDP)
## 6099                                                                                                Remittances, inflows (% of GDP)
## 6103                                                                          Labour force participation rate (% ages 15 and older)
## 6104                                                                  Labour force participation rate (% ages 15 and older), female
## 6105                                                                    Labour force participation rate (% ages 15 and older), male
## 6111                                                                                                  Human Development Index (HDI)
## 6112                                                                                                             Median age (years)
## 6113                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 6114                                                                                               Population ages 15–64 (millions)
## 6115                                                                                        Population ages 65 and older (millions)
## 6116                                                                                              Population under age 5 (millions)
## 6117                                                                                     Sex ratio at birth (male to female births)
## 6118                                                                                                    Total population (millions)
## 6119                                                                                                           Urban population (%)
## 6120                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 6121                                                                                                                Education index
## 6122                                                                                            Expected years of schooling (years)
## 6123                                                                                    Expected years of schooling, female (years)
## 6124                                                                                      Expected years of schooling, male (years)
## 6127                                                            Gross enrolment ratio, primary (% of primary school-age population)
## 6129                                                          Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 6131                                                                                                Mean years of schooling (years)
## 6132                                                                                        Mean years of schooling, female (years)
## 6133                                                                                          Mean years of schooling, male (years)
## 6134                                                        Population with at least some secondary education (% ages 25 and older)
## 6135                                                Population with at least some secondary education, female (% ages 25 and older)
## 6136                                                  Population with at least some secondary education, male (% ages 25 and older)
## 6143                                                                       Pupil-teacher ratio, primary school (pupils per teacher)
## 6145                                                                            Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 6146                                                                                  Carbon dioxide emissions, per capita (tonnes)
## 6147                                                                                             Forest area (% of total land area)
## 6149                                                                 Fossil fuel energy consumption (% of total energy consumption)
## 6154                                                             Renewable energy consumption (% of total final energy consumption)
## 6155                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 6156                                                                                Antenatal care coverage, at least one visit (%)
## 6158                         Contraceptive prevalence, any method (% of married or in-union women of reproductive age, 15–49 years)
## 6167                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 6168                                                                  Proportion of births attended by skilled health personnel (%)
## 6172                               Unmet need for family planning (% of married or in-union women of reproductive age, 15–49 years)
## 6177                                                                                           HIV prevalence, adult (% ages 15-49)
## 6178                                                                         Infants lacking immunization, DPT (% of one-year-olds)
## 6179                                                                     Infants lacking immunization, measles (% of one-year-olds)
## 6180                                                                                               Life expectancy at birth (years)
## 6181                                                                                       Life expectancy at birth, female (years)
## 6182                                                                                         Life expectancy at birth, male (years)
## 6183                                                                                                          Life expectancy index
## 6185                                                                                Mortality rate, female adult (per 1,000 people)
## 6186                                                                                 Mortality rate, infant (per 1,000 live births)
## 6187                                                                                  Mortality rate, male adult (per 1,000 people)
## 6188                                                                             Mortality rate, under-five (per 1,000 live births)
## 6197                                                                        Domestic credit provided by financial sector (% of GDP)
## 6198                                                                                                    GDP per capita (2011 PPP $)
## 6199                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 6200                                                                                       Gross fixed capital formation (% of GDP)
## 6201                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 6202                                                                                                                   Income index
## 6220                                                                                          Net migration rate (per 1,000 people)
## 6235                                                                                                Adjusted net savings (% of GNI)
## 6237                                                                                             Gross capital formation (% of GDP)
## 6244                                                                                Rural population with access to electricity (%)
## 6246                                                        Total debt service (% of exports of goods, services and primary income)
## 6247                                                                                                 Exports and imports (% of GDP)
## 6248                                                                              Foreign direct investment, net inflows (% of GDP)
## 6249                                                                        Net official development assistance received (% of GNI)
## 6250                                                                                               Private capital flows (% of GDP)
## 6251                                                                                                Remittances, inflows (% of GDP)
## 6256                                                                          Labour force participation rate (% ages 15 and older)
## 6257                                                                  Labour force participation rate (% ages 15 and older), female
## 6258                                                                    Labour force participation rate (% ages 15 and older), male
## 6265                                                                                                  Human Development Index (HDI)
## 6266                                                                                                             Median age (years)
## 6267                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 6268                                                                                               Population ages 15–64 (millions)
## 6269                                                                                        Population ages 65 and older (millions)
## 6270                                                                                              Population under age 5 (millions)
## 6271                                                                                     Sex ratio at birth (male to female births)
## 6272                                                                                                    Total population (millions)
## 6273                                                                                                           Urban population (%)
## 6274                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 6275                                                                                                                Education index
## 6276                                                                                            Expected years of schooling (years)
## 6277                                                                                    Expected years of schooling, female (years)
## 6278                                                                                      Expected years of schooling, male (years)
## 6280                                                               Gross enrolment ratio, pre-primary (% of preschool-age children)
## 6281                                                            Gross enrolment ratio, primary (% of primary school-age population)
## 6282                                                        Gross enrolment ratio, secondary (% of secondary school-age population)
## 6283                                                          Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 6285                                                                                                Mean years of schooling (years)
## 6286                                                                                        Mean years of schooling, female (years)
## 6287                                                                                          Mean years of schooling, male (years)
## 6288                                                        Population with at least some secondary education (% ages 25 and older)
## 6289                                                Population with at least some secondary education, female (% ages 25 and older)
## 6290                                                  Population with at least some secondary education, male (% ages 25 and older)
## 6293                                                                       Pupil-teacher ratio, primary school (pupils per teacher)
## 6295                                                                            Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 6296                                                                                  Carbon dioxide emissions, per capita (tonnes)
## 6297                                                                                             Forest area (% of total land area)
## 6299                                                                 Fossil fuel energy consumption (% of total energy consumption)
## 6303                                                             Renewable energy consumption (% of total final energy consumption)
## 6304                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 6315                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 6325                                                                                           HIV prevalence, adult (% ages 15-49)
## 6326                                                                         Infants lacking immunization, DPT (% of one-year-olds)
## 6327                                                                     Infants lacking immunization, measles (% of one-year-olds)
## 6328                                                                                               Life expectancy at birth (years)
## 6329                                                                                       Life expectancy at birth, female (years)
## 6330                                                                                         Life expectancy at birth, male (years)
## 6331                                                                                                          Life expectancy index
## 6333                                                                                Mortality rate, female adult (per 1,000 people)
## 6334                                                                                 Mortality rate, infant (per 1,000 live births)
## 6335                                                                                  Mortality rate, male adult (per 1,000 people)
## 6336                                                                             Mortality rate, under-five (per 1,000 live births)
## 6345                                                                        Domestic credit provided by financial sector (% of GDP)
## 6346                                                                                                    GDP per capita (2011 PPP $)
## 6347                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 6348                                                                                       Gross fixed capital formation (% of GDP)
## 6349                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 6350                                                                                                                   Income index
## 6367                                                                                          Net migration rate (per 1,000 people)
## 6382                                                                                                Adjusted net savings (% of GNI)
## 6384                                                                                             Gross capital formation (% of GDP)
## 6392                                                        Total debt service (% of exports of goods, services and primary income)
## 6393                                                                                                 Exports and imports (% of GDP)
## 6394                                                                              Foreign direct investment, net inflows (% of GDP)
## 6395                                                                        Net official development assistance received (% of GNI)
## 6396                                                                                               Private capital flows (% of GDP)
## 6397                                                                                                Remittances, inflows (% of GDP)
## 6402                                                                          Labour force participation rate (% ages 15 and older)
## 6403                                                                  Labour force participation rate (% ages 15 and older), female
## 6404                                                                    Labour force participation rate (% ages 15 and older), male
## 6411                                                                                                  Human Development Index (HDI)
## 6412                                                                                                             Median age (years)
## 6413                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 6414                                                                                               Population ages 15–64 (millions)
## 6415                                                                                        Population ages 65 and older (millions)
## 6416                                                                                              Population under age 5 (millions)
## 6417                                                                                     Sex ratio at birth (male to female births)
## 6418                                                                                                    Total population (millions)
## 6419                                                                                                           Urban population (%)
## 6420                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 6421                                                                                                                Education index
## 6422                                                                                            Expected years of schooling (years)
## 6426                                                               Gross enrolment ratio, pre-primary (% of preschool-age children)
## 6427                                                            Gross enrolment ratio, primary (% of primary school-age population)
## 6428                                                        Gross enrolment ratio, secondary (% of secondary school-age population)
## 6429                                                          Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 6431                                                                                                Mean years of schooling (years)
## 6432                                                                                        Mean years of schooling, female (years)
## 6433                                                                                          Mean years of schooling, male (years)
## 6434                                                        Population with at least some secondary education (% ages 25 and older)
## 6435                                                Population with at least some secondary education, female (% ages 25 and older)
## 6436                                                  Population with at least some secondary education, male (% ages 25 and older)
## 6437                                                                       Primary school dropout rate (% of primary school cohort)
## 6443                                                                       Pupil-teacher ratio, primary school (pupils per teacher)
## 6444                                                       Survival rate to the last grade of lower secondary general education (%)
## 6445                                                                            Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 6446                                                                                  Carbon dioxide emissions, per capita (tonnes)
## 6447                                                                                             Forest area (% of total land area)
## 6449                                                                 Fossil fuel energy consumption (% of total energy consumption)
## 6454                                                             Renewable energy consumption (% of total final energy consumption)
## 6455                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 6459                                                                Estimated gross national income per capita, female (2011 PPP $)
## 6460                                                                  Estimated gross national income per capita, male (2011 PPP $)
## 6468                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 6478                                                                                           HIV prevalence, adult (% ages 15-49)
## 6479                                                                         Infants lacking immunization, DPT (% of one-year-olds)
## 6480                                                                     Infants lacking immunization, measles (% of one-year-olds)
## 6481                                                                                               Life expectancy at birth (years)
## 6482                                                                                       Life expectancy at birth, female (years)
## 6483                                                                                         Life expectancy at birth, male (years)
## 6484                                                                                                          Life expectancy index
## 6486                                                                                Mortality rate, female adult (per 1,000 people)
## 6487                                                                                 Mortality rate, infant (per 1,000 live births)
## 6488                                                                                  Mortality rate, male adult (per 1,000 people)
## 6489                                                                             Mortality rate, under-five (per 1,000 live births)
## 6498                                                                        Domestic credit provided by financial sector (% of GDP)
## 6499                                                                                                    GDP per capita (2011 PPP $)
## 6500                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 6501                                                                                       Gross fixed capital formation (% of GDP)
## 6502                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 6503                                                                                                                   Income index
## 6521                                                                                          Net migration rate (per 1,000 people)
## 6523                                                                                                Adjusted net savings (% of GNI)
## 6525                                                                                             Gross capital formation (% of GDP)
## 6531                                                                                Rural population with access to electricity (%)
## 6533                                                        Total debt service (% of exports of goods, services and primary income)
## 6534                                                                                                 Exports and imports (% of GDP)
## 6535                                                                              Foreign direct investment, net inflows (% of GDP)
## 6536                                                                        Net official development assistance received (% of GNI)
## 6537                                                                                               Private capital flows (% of GDP)
## 6538                                                                                                Remittances, inflows (% of GDP)
## 6543                                                                          Labour force participation rate (% ages 15 and older)
## 6544                                                                  Labour force participation rate (% ages 15 and older), female
## 6545                                                                    Labour force participation rate (% ages 15 and older), male
## 6552                                                                                                  Human Development Index (HDI)
## 6553                                                                                                             Median age (years)
## 6554                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 6555                                                                                               Population ages 15–64 (millions)
## 6556                                                                                        Population ages 65 and older (millions)
## 6557                                                                                              Population under age 5 (millions)
## 6558                                                                                     Sex ratio at birth (male to female births)
## 6559                                                                                                    Total population (millions)
## 6560                                                                                                           Urban population (%)
## 6561                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 6562                                                                                                                Education index
## 6563                                                                                            Expected years of schooling (years)
## 6564                                                                                    Expected years of schooling, female (years)
## 6565                                                                                      Expected years of schooling, male (years)
## 6567                                                               Gross enrolment ratio, pre-primary (% of preschool-age children)
## 6568                                                            Gross enrolment ratio, primary (% of primary school-age population)
## 6569                                                        Gross enrolment ratio, secondary (% of secondary school-age population)
## 6570                                                          Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 6572                                                                                                Mean years of schooling (years)
## 6573                                                                                        Mean years of schooling, female (years)
## 6574                                                                                          Mean years of schooling, male (years)
## 6575                                                        Population with at least some secondary education (% ages 25 and older)
## 6576                                                Population with at least some secondary education, female (% ages 25 and older)
## 6577                                                  Population with at least some secondary education, male (% ages 25 and older)
## 6578                                                                       Primary school dropout rate (% of primary school cohort)
## 6580                                                                       Pupil-teacher ratio, primary school (pupils per teacher)
## 6581                                                       Survival rate to the last grade of lower secondary general education (%)
## 6582                                                                                  Carbon dioxide emissions, per capita (tonnes)
## 6583                                                                                             Forest area (% of total land area)
## 6585                                                                 Fossil fuel energy consumption (% of total energy consumption)
## 6590                                                             Renewable energy consumption (% of total final energy consumption)
## 6591                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 6602                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 6603                                                                  Proportion of births attended by skilled health personnel (%)
## 6609                                                                                           HIV prevalence, adult (% ages 15-49)
## 6610                                                                         Infants lacking immunization, DPT (% of one-year-olds)
## 6611                                                                     Infants lacking immunization, measles (% of one-year-olds)
## 6612                                                                                               Life expectancy at birth (years)
## 6613                                                                                       Life expectancy at birth, female (years)
## 6614                                                                                         Life expectancy at birth, male (years)
## 6615                                                                                                          Life expectancy index
## 6616                                                                                Mortality rate, female adult (per 1,000 people)
## 6617                                                                                 Mortality rate, infant (per 1,000 live births)
## 6618                                                                                  Mortality rate, male adult (per 1,000 people)
## 6619                                                                             Mortality rate, under-five (per 1,000 live births)
## 6628                                                                                       Gross fixed capital formation (% of GDP)
## 6629                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 6630                                                                                                                   Income index
## 6640                                                                                          Net migration rate (per 1,000 people)
## 6643                                                                                             Gross capital formation (% of GDP)
## 6648                                                                                Rural population with access to electricity (%)
## 6650                                                                                                 Exports and imports (% of GDP)
## 6651                                                                        Net official development assistance received (% of GNI)
## 6655                                                                          Labour force participation rate (% ages 15 and older)
## 6656                                                                  Labour force participation rate (% ages 15 and older), female
## 6657                                                                    Labour force participation rate (% ages 15 and older), male
## 6662                                                                                                  Human Development Index (HDI)
## 6663                                                                                                             Median age (years)
## 6664                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 6665                                                                                               Population ages 15–64 (millions)
## 6666                                                                                        Population ages 65 and older (millions)
## 6667                                                                                              Population under age 5 (millions)
## 6668                                                                                     Sex ratio at birth (male to female births)
## 6669                                                                                                    Total population (millions)
## 6670                                                                                                           Urban population (%)
## 6671                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 6672                                                                                                                Education index
## 6673                                                                                            Expected years of schooling (years)
## 6674                                                                                    Expected years of schooling, female (years)
## 6675                                                                                      Expected years of schooling, male (years)
## 6676                                                                                 Government expenditure on education (% of GDP)
## 6677                                                               Gross enrolment ratio, pre-primary (% of preschool-age children)
## 6678                                                            Gross enrolment ratio, primary (% of primary school-age population)
## 6679                                                        Gross enrolment ratio, secondary (% of secondary school-age population)
## 6680                                                          Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 6682                                                                                                Mean years of schooling (years)
## 6683                                                                                        Mean years of schooling, female (years)
## 6684                                                                                          Mean years of schooling, male (years)
## 6685                                                        Population with at least some secondary education (% ages 25 and older)
## 6686                                                Population with at least some secondary education, female (% ages 25 and older)
## 6687                                                  Population with at least some secondary education, male (% ages 25 and older)
## 6693                                                                       Pupil-teacher ratio, primary school (pupils per teacher)
## 6695                                                                            Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 6696                                                                                  Carbon dioxide emissions, per capita (tonnes)
## 6697                                                                                             Forest area (% of total land area)
## 6699                                                                 Fossil fuel energy consumption (% of total energy consumption)
## 6700                                                                 Fresh water withdrawals (% of total renewable water resources)
## 6704                                                             Renewable energy consumption (% of total final energy consumption)
## 6705                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 6716                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 6717                                                                  Proportion of births attended by skilled health personnel (%)
## 6726                                                                         Infants lacking immunization, DPT (% of one-year-olds)
## 6727                                                                     Infants lacking immunization, measles (% of one-year-olds)
## 6728                                                                                               Life expectancy at birth (years)
## 6729                                                                                       Life expectancy at birth, female (years)
## 6730                                                                                         Life expectancy at birth, male (years)
## 6731                                                                                                          Life expectancy index
## 6732                                                                                Mortality rate, female adult (per 1,000 people)
## 6733                                                                                 Mortality rate, infant (per 1,000 live births)
## 6734                                                                                  Mortality rate, male adult (per 1,000 people)
## 6735                                                                             Mortality rate, under-five (per 1,000 live births)
## 6745                                                                                                    GDP per capita (2011 PPP $)
## 6746                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 6747                                                                                       Gross fixed capital formation (% of GDP)
## 6748                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 6749                                                                                                                   Income index
## 6767                                                                                          Net migration rate (per 1,000 people)
## 6768                                                                                                Adjusted net savings (% of GNI)
## 6770                                                                                             Gross capital formation (% of GDP)
## 6777                                                                                Rural population with access to electricity (%)
## 6779                                                                                                 Exports and imports (% of GDP)
## 6780                                                                              Foreign direct investment, net inflows (% of GDP)
## 6781                                                                        Net official development assistance received (% of GNI)
## 6782                                                                                               Private capital flows (% of GDP)
## 6783                                                                                                Remittances, inflows (% of GDP)
## 6787                                                                          Labour force participation rate (% ages 15 and older)
## 6788                                                                  Labour force participation rate (% ages 15 and older), female
## 6789                                                                    Labour force participation rate (% ages 15 and older), male
## 6797                                                                                                  Human Development Index (HDI)
## 6798                                                                                                             Median age (years)
## 6799                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 6800                                                                                               Population ages 15–64 (millions)
## 6801                                                                                        Population ages 65 and older (millions)
## 6802                                                                                              Population under age 5 (millions)
## 6803                                                                                     Sex ratio at birth (male to female births)
## 6804                                                                                                    Total population (millions)
## 6805                                                                                                           Urban population (%)
## 6806                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 6807                                                                                                                Education index
## 6808                                                                                            Expected years of schooling (years)
## 6809                                                                                    Expected years of schooling, female (years)
## 6810                                                                                      Expected years of schooling, male (years)
## 6812                                                               Gross enrolment ratio, pre-primary (% of preschool-age children)
## 6813                                                            Gross enrolment ratio, primary (% of primary school-age population)
## 6814                                                        Gross enrolment ratio, secondary (% of secondary school-age population)
## 6815                                                          Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 6816                                                                                                Mean years of schooling (years)
## 6817                                                                                        Mean years of schooling, female (years)
## 6818                                                                                          Mean years of schooling, male (years)
## 6819                                                        Population with at least some secondary education (% ages 25 and older)
## 6820                                                Population with at least some secondary education, female (% ages 25 and older)
## 6821                                                  Population with at least some secondary education, male (% ages 25 and older)
## 6822                                                                       Primary school dropout rate (% of primary school cohort)
## 6827                                                                       Pupil-teacher ratio, primary school (pupils per teacher)
## 6829                                                                            Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 6830                                                                                  Carbon dioxide emissions, per capita (tonnes)
## 6831                                                                                             Forest area (% of total land area)
## 6833                                                                 Fossil fuel energy consumption (% of total energy consumption)
## 6834                                                                 Fresh water withdrawals (% of total renewable water resources)
## 6838                                                             Renewable energy consumption (% of total final energy consumption)
## 6839                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 6849                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 6859                                                                         Infants lacking immunization, DPT (% of one-year-olds)
## 6860                                                                     Infants lacking immunization, measles (% of one-year-olds)
## 6861                                                                                               Life expectancy at birth (years)
## 6862                                                                                       Life expectancy at birth, female (years)
## 6863                                                                                         Life expectancy at birth, male (years)
## 6864                                                                                                          Life expectancy index
## 6865                                                                                Mortality rate, female adult (per 1,000 people)
## 6866                                                                                 Mortality rate, infant (per 1,000 live births)
## 6867                                                                                  Mortality rate, male adult (per 1,000 people)
## 6868                                                                             Mortality rate, under-five (per 1,000 live births)
## 6878                                                                                                    GDP per capita (2011 PPP $)
## 6879                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 6880                                                                                       Gross fixed capital formation (% of GDP)
## 6881                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 6882                                                                                                                   Income index
## 6900                                                                                          Net migration rate (per 1,000 people)
## 6901                                                                                                Adjusted net savings (% of GNI)
## 6903                                                                                             Gross capital formation (% of GDP)
## 6910                                                                                Rural population with access to electricity (%)
## 6912                                                                                                 Exports and imports (% of GDP)
## 6913                                                                              Foreign direct investment, net inflows (% of GDP)
## 6914                                                                                               Private capital flows (% of GDP)
## 6919                                                                          Labour force participation rate (% ages 15 and older)
## 6920                                                                  Labour force participation rate (% ages 15 and older), female
## 6921                                                                    Labour force participation rate (% ages 15 and older), male
## 6929                                                                                                             Median age (years)
## 6930                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 6931                                                                                               Population ages 15–64 (millions)
## 6932                                                                                        Population ages 65 and older (millions)
## 6933                                                                                              Population under age 5 (millions)
## 6934                                                                                     Sex ratio at birth (male to female births)
## 6935                                                                                                    Total population (millions)
## 6936                                                                                                           Urban population (%)
## 6937                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 6939                                                                                            Expected years of schooling (years)
## 6940                                                                                    Expected years of schooling, female (years)
## 6941                                                                                      Expected years of schooling, male (years)
## 6943                                                               Gross enrolment ratio, pre-primary (% of preschool-age children)
## 6944                                                            Gross enrolment ratio, primary (% of primary school-age population)
## 6945                                                        Gross enrolment ratio, secondary (% of secondary school-age population)
## 6948                                                                       Primary school dropout rate (% of primary school cohort)
## 6950                                                                       Pupil-teacher ratio, primary school (pupils per teacher)
## 6953                                                                                  Carbon dioxide emissions, per capita (tonnes)
## 6954                                                                                             Forest area (% of total land area)
## 6956                                                                 Fossil fuel energy consumption (% of total energy consumption)
## 6961                                                             Renewable energy consumption (% of total final energy consumption)
## 6962                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 6969                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 6978                                                                                           HIV prevalence, adult (% ages 15-49)
## 6979                                                                         Infants lacking immunization, DPT (% of one-year-olds)
## 6980                                                                     Infants lacking immunization, measles (% of one-year-olds)
## 6981                                                                                               Life expectancy at birth (years)
## 6982                                                                                       Life expectancy at birth, female (years)
## 6983                                                                                         Life expectancy at birth, male (years)
## 6984                                                                                                          Life expectancy index
## 6986                                                                                Mortality rate, female adult (per 1,000 people)
## 6987                                                                                 Mortality rate, infant (per 1,000 live births)
## 6988                                                                                  Mortality rate, male adult (per 1,000 people)
## 6989                                                                             Mortality rate, under-five (per 1,000 live births)
## 6998                                                                        Domestic credit provided by financial sector (% of GDP)
## 7002                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 7003                                                                                                                   Income index
## 7020                                                                                          Net migration rate (per 1,000 people)
## 7042                                                                                Rural population with access to electricity (%)
## 7051                                                                          Labour force participation rate (% ages 15 and older)
## 7052                                                                  Labour force participation rate (% ages 15 and older), female
## 7053                                                                    Labour force participation rate (% ages 15 and older), male
## 7060                                                                                                    Total population (millions)
## 7061                                                                                                           Urban population (%)
## 7063                                                                                            Expected years of schooling (years)
## 7065                                                               Gross enrolment ratio, pre-primary (% of preschool-age children)
## 7066                                                            Gross enrolment ratio, primary (% of primary school-age population)
## 7067                                                        Gross enrolment ratio, secondary (% of secondary school-age population)
## 7077                                                                            Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 7078                                                                                  Carbon dioxide emissions, per capita (tonnes)
## 7079                                                                                             Forest area (% of total land area)
## 7081                                                                 Fossil fuel energy consumption (% of total energy consumption)
## 7084                                                             Renewable energy consumption (% of total final energy consumption)
## 7085                                                                                Antenatal care coverage, at least one visit (%)
## 7090                                                                         Infants lacking immunization, DPT (% of one-year-olds)
## 7091                                                                     Infants lacking immunization, measles (% of one-year-olds)
## 7092                                                                                               Life expectancy at birth (years)
## 7093                                                                                                          Life expectancy index
## 7094                                                                                Mortality rate, female adult (per 1,000 people)
## 7095                                                                                 Mortality rate, infant (per 1,000 live births)
## 7096                                                                                  Mortality rate, male adult (per 1,000 people)
## 7097                                                                             Mortality rate, under-five (per 1,000 live births)
## 7103                                                                        Domestic credit provided by financial sector (% of GDP)
## 7104                                                                                                    GDP per capita (2011 PPP $)
## 7105                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 7106                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 7107                                                                                                                   Income index
## 7114                                                                                Rural population with access to electricity (%)
## 7115                                                        Total debt service (% of exports of goods, services and primary income)
## 7116                                                                                                 Exports and imports (% of GDP)
## 7117                                                                              Foreign direct investment, net inflows (% of GDP)
## 7118                                                                        Net official development assistance received (% of GNI)
## 7119                                                                                               Private capital flows (% of GDP)
## 7120                                                                                                Remittances, inflows (% of GDP)
## 7123                                                                                                  Human Development Index (HDI)
## 7124                                                                                                             Median age (years)
## 7125                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 7126                                                                                               Population ages 15–64 (millions)
## 7127                                                                                        Population ages 65 and older (millions)
## 7128                                                                                              Population under age 5 (millions)
## 7129                                                                                     Sex ratio at birth (male to female births)
## 7130                                                                                                    Total population (millions)
## 7131                                                                                                           Urban population (%)
## 7132                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 7133                                                                                                                Education index
## 7134                                                                                            Expected years of schooling (years)
## 7143                                                                                                Mean years of schooling (years)
## 7144                                                                                        Mean years of schooling, female (years)
## 7145                                                                                          Mean years of schooling, male (years)
## 7146                                                        Population with at least some secondary education (% ages 25 and older)
## 7147                                                Population with at least some secondary education, female (% ages 25 and older)
## 7148                                                  Population with at least some secondary education, male (% ages 25 and older)
## 7157                                                                            Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 7158                                                                                  Carbon dioxide emissions, per capita (tonnes)
## 7159                                                                                             Forest area (% of total land area)
## 7161                                                                 Fossil fuel energy consumption (% of total energy consumption)
## 7166                                                             Renewable energy consumption (% of total final energy consumption)
## 7167                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 7180                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 7191                                                                                           HIV prevalence, adult (% ages 15-49)
## 7192                                                                         Infants lacking immunization, DPT (% of one-year-olds)
## 7193                                                                     Infants lacking immunization, measles (% of one-year-olds)
## 7194                                                                                               Life expectancy at birth (years)
## 7195                                                                                       Life expectancy at birth, female (years)
## 7196                                                                                         Life expectancy at birth, male (years)
## 7197                                                                                                          Life expectancy index
## 7199                                                                                Mortality rate, female adult (per 1,000 people)
## 7200                                                                                 Mortality rate, infant (per 1,000 live births)
## 7201                                                                                  Mortality rate, male adult (per 1,000 people)
## 7202                                                                             Mortality rate, under-five (per 1,000 live births)
## 7211                                                                        Domestic credit provided by financial sector (% of GDP)
## 7212                                                                                                    GDP per capita (2011 PPP $)
## 7213                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 7214                                                                                       Gross fixed capital formation (% of GDP)
## 7215                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 7216                                                                                                                   Income index
## 7233                                                                                          Net migration rate (per 1,000 people)
## 7248                                                                                                Adjusted net savings (% of GNI)
## 7250                                                                                             Gross capital formation (% of GDP)
## 7256                                                                                Rural population with access to electricity (%)
## 7258                                                        Total debt service (% of exports of goods, services and primary income)
## 7259                                                                                                 Exports and imports (% of GDP)
## 7260                                                                              Foreign direct investment, net inflows (% of GDP)
## 7261                                                                        Net official development assistance received (% of GNI)
## 7262                                                                                               Private capital flows (% of GDP)
## 7263                                                                                                Remittances, inflows (% of GDP)
## 7268                                                                          Labour force participation rate (% ages 15 and older)
## 7269                                                                  Labour force participation rate (% ages 15 and older), female
## 7270                                                                    Labour force participation rate (% ages 15 and older), male
## 7277                                                                                                  Human Development Index (HDI)
## 7278                                                                                                             Median age (years)
## 7279                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 7280                                                                                               Population ages 15–64 (millions)
## 7281                                                                                        Population ages 65 and older (millions)
## 7282                                                                                              Population under age 5 (millions)
## 7283                                                                                     Sex ratio at birth (male to female births)
## 7284                                                                                                    Total population (millions)
## 7285                                                                                                           Urban population (%)
## 7286                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 7287                                                                                                                Education index
## 7288                                                                                            Expected years of schooling (years)
## 7292                                                               Gross enrolment ratio, pre-primary (% of preschool-age children)
## 7293                                                            Gross enrolment ratio, primary (% of primary school-age population)
## 7294                                                        Gross enrolment ratio, secondary (% of secondary school-age population)
## 7295                                                          Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 7296                                                                                     Literacy rate, adult (% ages 15 and older)
## 7297                                                                                                Mean years of schooling (years)
## 7298                                                                                        Mean years of schooling, female (years)
## 7299                                                                                          Mean years of schooling, male (years)
## 7300                                                        Population with at least some secondary education (% ages 25 and older)
## 7301                                                Population with at least some secondary education, female (% ages 25 and older)
## 7302                                                  Population with at least some secondary education, male (% ages 25 and older)
## 7306                                                                       Pupil-teacher ratio, primary school (pupils per teacher)
## 7308                                                                            Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 7309                                                                                  Carbon dioxide emissions, per capita (tonnes)
## 7310                                                                                             Forest area (% of total land area)
## 7312                                                                 Fossil fuel energy consumption (% of total energy consumption)
## 7317                                                             Renewable energy consumption (% of total final energy consumption)
## 7318                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 7331                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 7342                                                                                           HIV prevalence, adult (% ages 15-49)
## 7343                                                                         Infants lacking immunization, DPT (% of one-year-olds)
## 7344                                                                     Infants lacking immunization, measles (% of one-year-olds)
## 7345                                                                                               Life expectancy at birth (years)
## 7346                                                                                       Life expectancy at birth, female (years)
## 7347                                                                                         Life expectancy at birth, male (years)
## 7348                                                                                                          Life expectancy index
## 7350                                                                                Mortality rate, female adult (per 1,000 people)
## 7351                                                                                 Mortality rate, infant (per 1,000 live births)
## 7352                                                                                  Mortality rate, male adult (per 1,000 people)
## 7353                                                                             Mortality rate, under-five (per 1,000 live births)
## 7362                                                                        Domestic credit provided by financial sector (% of GDP)
## 7363                                                                                                    GDP per capita (2011 PPP $)
## 7364                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 7365                                                                                       Gross fixed capital formation (% of GDP)
## 7366                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 7367                                                                                                                   Income index
## 7385                                                                                          Net migration rate (per 1,000 people)
## 7400                                                                                                Adjusted net savings (% of GNI)
## 7402                                                                                             Gross capital formation (% of GDP)
## 7409                                                                                Rural population with access to electricity (%)
## 7411                                                        Total debt service (% of exports of goods, services and primary income)
## 7412                                                                                                 Exports and imports (% of GDP)
## 7413                                                                              Foreign direct investment, net inflows (% of GDP)
## 7414                                                                        Net official development assistance received (% of GNI)
## 7416                                                                                                Remittances, inflows (% of GDP)
## 7420                                                                          Labour force participation rate (% ages 15 and older)
## 7421                                                                  Labour force participation rate (% ages 15 and older), female
## 7422                                                                    Labour force participation rate (% ages 15 and older), male
## 7429                                                                                                  Human Development Index (HDI)
## 7430                                                                                                             Median age (years)
## 7431                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 7432                                                                                               Population ages 15–64 (millions)
## 7433                                                                                        Population ages 65 and older (millions)
## 7434                                                                                              Population under age 5 (millions)
## 7435                                                                                     Sex ratio at birth (male to female births)
## 7436                                                                                                    Total population (millions)
## 7437                                                                                                           Urban population (%)
## 7438                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 7439                                                                                                                Education index
## 7440                                                                                            Expected years of schooling (years)
## 7441                                                                                    Expected years of schooling, female (years)
## 7442                                                                                      Expected years of schooling, male (years)
## 7444                                                               Gross enrolment ratio, pre-primary (% of preschool-age children)
## 7445                                                            Gross enrolment ratio, primary (% of primary school-age population)
## 7446                                                        Gross enrolment ratio, secondary (% of secondary school-age population)
## 7447                                                          Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 7449                                                                                                Mean years of schooling (years)
## 7450                                                                                        Mean years of schooling, female (years)
## 7451                                                                                          Mean years of schooling, male (years)
## 7452                                                        Population with at least some secondary education (% ages 25 and older)
## 7453                                                Population with at least some secondary education, female (% ages 25 and older)
## 7454                                                  Population with at least some secondary education, male (% ages 25 and older)
## 7458                                                                       Pupil-teacher ratio, primary school (pupils per teacher)
## 7460                                                                            Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 7461                                                                                  Carbon dioxide emissions, per capita (tonnes)
## 7462                                                                                             Forest area (% of total land area)
## 7464                                                                 Fossil fuel energy consumption (% of total energy consumption)
## 7469                                                             Renewable energy consumption (% of total final energy consumption)
## 7470                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 7482                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 7493                                                                                           HIV prevalence, adult (% ages 15-49)
## 7494                                                                         Infants lacking immunization, DPT (% of one-year-olds)
## 7495                                                                     Infants lacking immunization, measles (% of one-year-olds)
## 7496                                                                                               Life expectancy at birth (years)
## 7497                                                                                       Life expectancy at birth, female (years)
## 7498                                                                                         Life expectancy at birth, male (years)
## 7499                                                                                                          Life expectancy index
## 7500                                                                                Mortality rate, female adult (per 1,000 people)
## 7501                                                                                 Mortality rate, infant (per 1,000 live births)
## 7502                                                                                  Mortality rate, male adult (per 1,000 people)
## 7503                                                                             Mortality rate, under-five (per 1,000 live births)
## 7512                                                                        Domestic credit provided by financial sector (% of GDP)
## 7513                                                                                                    GDP per capita (2011 PPP $)
## 7514                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 7515                                                                                       Gross fixed capital formation (% of GDP)
## 7516                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 7517                                                                                                                   Income index
## 7535                                                                                          Net migration rate (per 1,000 people)
## 7550                                                                                                Adjusted net savings (% of GNI)
## 7552                                                                                             Gross capital formation (% of GDP)
## 7559                                                                                Rural population with access to electricity (%)
## 7561                                                        Total debt service (% of exports of goods, services and primary income)
## 7562                                                                                                 Exports and imports (% of GDP)
## 7563                                                                              Foreign direct investment, net inflows (% of GDP)
## 7564                                                                        Net official development assistance received (% of GNI)
## 7565                                                                                               Private capital flows (% of GDP)
## 7566                                                                                                Remittances, inflows (% of GDP)
## 7571                                                                          Labour force participation rate (% ages 15 and older)
## 7572                                                                  Labour force participation rate (% ages 15 and older), female
## 7573                                                                    Labour force participation rate (% ages 15 and older), male
## 7580                                                                                                  Human Development Index (HDI)
## 7581                                                                                                             Median age (years)
## 7582                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 7583                                                                                               Population ages 15–64 (millions)
## 7584                                                                                        Population ages 65 and older (millions)
## 7585                                                                                              Population under age 5 (millions)
## 7586                                                                                     Sex ratio at birth (male to female births)
## 7587                                                                                                    Total population (millions)
## 7588                                                                                                           Urban population (%)
## 7589                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 7590                                                                                                                Education index
## 7591                                                                                            Expected years of schooling (years)
## 7598                                                          Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 7600                                                                                                Mean years of schooling (years)
## 7601                                                                                        Mean years of schooling, female (years)
## 7602                                                                                          Mean years of schooling, male (years)
## 7603                                                        Population with at least some secondary education (% ages 25 and older)
## 7604                                                Population with at least some secondary education, female (% ages 25 and older)
## 7605                                                  Population with at least some secondary education, male (% ages 25 and older)
## 7611                                                                            Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 7612                                                                                  Carbon dioxide emissions, per capita (tonnes)
## 7613                                                                                             Forest area (% of total land area)
## 7615                                                                 Fossil fuel energy consumption (% of total energy consumption)
## 7620                                                             Renewable energy consumption (% of total final energy consumption)
## 7621                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 7634                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 7645                                                                                           HIV prevalence, adult (% ages 15-49)
## 7646                                                                         Infants lacking immunization, DPT (% of one-year-olds)
## 7647                                                                     Infants lacking immunization, measles (% of one-year-olds)
## 7648                                                                                               Life expectancy at birth (years)
## 7649                                                                                       Life expectancy at birth, female (years)
## 7650                                                                                         Life expectancy at birth, male (years)
## 7651                                                                                                          Life expectancy index
## 7653                                                                                Mortality rate, female adult (per 1,000 people)
## 7654                                                                                 Mortality rate, infant (per 1,000 live births)
## 7655                                                                                  Mortality rate, male adult (per 1,000 people)
## 7656                                                                             Mortality rate, under-five (per 1,000 live births)
## 7665                                                                        Domestic credit provided by financial sector (% of GDP)
## 7666                                                                                                    GDP per capita (2011 PPP $)
## 7667                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 7668                                                                                       Gross fixed capital formation (% of GDP)
## 7669                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 7670                                                                                                                   Income index
## 7688                                                                                          Net migration rate (per 1,000 people)
## 7703                                                                                                Adjusted net savings (% of GNI)
## 7705                                                                                             Gross capital formation (% of GDP)
## 7712                                                                                Rural population with access to electricity (%)
## 7714                                                        Total debt service (% of exports of goods, services and primary income)
## 7715                                                                                                 Exports and imports (% of GDP)
## 7716                                                                              Foreign direct investment, net inflows (% of GDP)
## 7717                                                                        Net official development assistance received (% of GNI)
## 7719                                                                                                Remittances, inflows (% of GDP)
## 7724                                                                          Labour force participation rate (% ages 15 and older)
## 7725                                                                  Labour force participation rate (% ages 15 and older), female
## 7726                                                                    Labour force participation rate (% ages 15 and older), male
## 7735                                                                                                             Median age (years)
## 7736                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 7737                                                                                               Population ages 15–64 (millions)
## 7738                                                                                        Population ages 65 and older (millions)
## 7739                                                                                              Population under age 5 (millions)
## 7740                                                                                     Sex ratio at birth (male to female births)
## 7741                                                                                                    Total population (millions)
## 7742                                                                                                           Urban population (%)
## 7743                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 7745                                                                                            Expected years of schooling (years)
## 7746                                                                                    Expected years of schooling, female (years)
## 7747                                                                                      Expected years of schooling, male (years)
## 7749                                                               Gross enrolment ratio, pre-primary (% of preschool-age children)
## 7750                                                            Gross enrolment ratio, primary (% of primary school-age population)
## 7752                                                          Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 7763                                                                       Pupil-teacher ratio, primary school (pupils per teacher)
## 7765                                                                            Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 7766                                                                                  Carbon dioxide emissions, per capita (tonnes)
## 7767                                                                                             Forest area (% of total land area)
## 7769                                                                 Fossil fuel energy consumption (% of total energy consumption)
## 7774                                                             Renewable energy consumption (% of total final energy consumption)
## 7775                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 7778                         Contraceptive prevalence, any method (% of married or in-union women of reproductive age, 15–49 years)
## 7788                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 7799                                                                                           HIV prevalence, adult (% ages 15-49)
## 7800                                                                         Infants lacking immunization, DPT (% of one-year-olds)
## 7801                                                                     Infants lacking immunization, measles (% of one-year-olds)
## 7802                                                                                               Life expectancy at birth (years)
## 7803                                                                                       Life expectancy at birth, female (years)
## 7804                                                                                         Life expectancy at birth, male (years)
## 7805                                                                                                          Life expectancy index
## 7807                                                                                Mortality rate, female adult (per 1,000 people)
## 7808                                                                                 Mortality rate, infant (per 1,000 live births)
## 7809                                                                                  Mortality rate, male adult (per 1,000 people)
## 7810                                                                             Mortality rate, under-five (per 1,000 live births)
## 7819                                                                        Domestic credit provided by financial sector (% of GDP)
## 7820                                                                                                    GDP per capita (2011 PPP $)
## 7821                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 7823                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 7824                                                                                                                   Income index
## 7840                                                                                          Net migration rate (per 1,000 people)
## 7857                                                                                             Gross capital formation (% of GDP)
## 7866                                                        Total debt service (% of exports of goods, services and primary income)
## 7869                                                                        Net official development assistance received (% of GNI)
## 7870                                                                                               Private capital flows (% of GDP)
## 7871                                                                                                Remittances, inflows (% of GDP)
## 7876                                                                          Labour force participation rate (% ages 15 and older)
## 7877                                                                  Labour force participation rate (% ages 15 and older), female
## 7878                                                                    Labour force participation rate (% ages 15 and older), male
## 7885                                                                                                  Human Development Index (HDI)
## 7886                                                                                                             Median age (years)
## 7887                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 7888                                                                                               Population ages 15–64 (millions)
## 7889                                                                                        Population ages 65 and older (millions)
## 7890                                                                                              Population under age 5 (millions)
## 7891                                                                                     Sex ratio at birth (male to female births)
## 7892                                                                                                    Total population (millions)
## 7893                                                                                                           Urban population (%)
## 7894                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 7895                                                                                                                Education index
## 7896                                                                                            Expected years of schooling (years)
## 7900                                                               Gross enrolment ratio, pre-primary (% of preschool-age children)
## 7904                                                                                                Mean years of schooling (years)
## 7905                                                                                        Mean years of schooling, female (years)
## 7906                                                                                          Mean years of schooling, male (years)
## 7907                                                        Population with at least some secondary education (% ages 25 and older)
## 7908                                                Population with at least some secondary education, female (% ages 25 and older)
## 7909                                                  Population with at least some secondary education, male (% ages 25 and older)
## 7914                                                                            Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 7915                                                                                  Carbon dioxide emissions, per capita (tonnes)
## 7916                                                                                             Forest area (% of total land area)
## 7918                                                                 Fossil fuel energy consumption (% of total energy consumption)
## 7923                                                             Renewable energy consumption (% of total final energy consumption)
## 7924                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 7934                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 7935                                                                  Proportion of births attended by skilled health personnel (%)
## 7943                                                                                           HIV prevalence, adult (% ages 15-49)
## 7944                                                                         Infants lacking immunization, DPT (% of one-year-olds)
## 7945                                                                     Infants lacking immunization, measles (% of one-year-olds)
## 7946                                                                                               Life expectancy at birth (years)
## 7947                                                                                       Life expectancy at birth, female (years)
## 7948                                                                                         Life expectancy at birth, male (years)
## 7949                                                                                                          Life expectancy index
## 7950                                                                                Mortality rate, female adult (per 1,000 people)
## 7951                                                                                 Mortality rate, infant (per 1,000 live births)
## 7952                                                                                  Mortality rate, male adult (per 1,000 people)
## 7953                                                                             Mortality rate, under-five (per 1,000 live births)
## 7961                                                                        Domestic credit provided by financial sector (% of GDP)
## 7962                                                                                                    GDP per capita (2011 PPP $)
## 7963                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 7964                                                                                       Gross fixed capital formation (% of GDP)
## 7965                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 7966                                                                                                                   Income index
## 7983                                                                                          Net migration rate (per 1,000 people)
## 7985                                                                                                Adjusted net savings (% of GNI)
## 7987                                                                                             Gross capital formation (% of GDP)
## 7992                                                                                Rural population with access to electricity (%)
## 7994                                                        Total debt service (% of exports of goods, services and primary income)
## 7995                                                                                                 Exports and imports (% of GDP)
## 7996                                                                              Foreign direct investment, net inflows (% of GDP)
## 7997                                                                        Net official development assistance received (% of GNI)
## 7998                                                                                               Private capital flows (% of GDP)
## 7999                                                                                                Remittances, inflows (% of GDP)
## 8003                                                                          Labour force participation rate (% ages 15 and older)
## 8004                                                                  Labour force participation rate (% ages 15 and older), female
## 8005                                                                    Labour force participation rate (% ages 15 and older), male
## 8012                                                                                                  Human Development Index (HDI)
## 8013                                                                                                             Median age (years)
## 8014                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 8015                                                                                               Population ages 15–64 (millions)
## 8016                                                                                        Population ages 65 and older (millions)
## 8017                                                                                              Population under age 5 (millions)
## 8018                                                                                     Sex ratio at birth (male to female births)
## 8019                                                                                                    Total population (millions)
## 8020                                                                                                           Urban population (%)
## 8021                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 8022                                                                                                                Education index
## 8023                                                                                            Expected years of schooling (years)
## 8024                                                                                    Expected years of schooling, female (years)
## 8025                                                                                      Expected years of schooling, male (years)
## 8026                                                                                 Government expenditure on education (% of GDP)
## 8027                                                               Gross enrolment ratio, pre-primary (% of preschool-age children)
## 8028                                                            Gross enrolment ratio, primary (% of primary school-age population)
## 8029                                                        Gross enrolment ratio, secondary (% of secondary school-age population)
## 8030                                                          Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 8031                                                                                                Mean years of schooling (years)
## 8032                                                                                        Mean years of schooling, female (years)
## 8033                                                                                          Mean years of schooling, male (years)
## 8034                                                        Population with at least some secondary education (% ages 25 and older)
## 8035                                                Population with at least some secondary education, female (% ages 25 and older)
## 8036                                                  Population with at least some secondary education, male (% ages 25 and older)
## 8037                                                                       Primary school dropout rate (% of primary school cohort)
## 8044                                                                            Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 8045                                                                                  Carbon dioxide emissions, per capita (tonnes)
## 8046                                                                                             Forest area (% of total land area)
## 8048                                                                 Fossil fuel energy consumption (% of total energy consumption)
## 8049                                                                 Fresh water withdrawals (% of total renewable water resources)
## 8053                                                             Renewable energy consumption (% of total final energy consumption)
## 8054                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 8055                         Contraceptive prevalence, any method (% of married or in-union women of reproductive age, 15–49 years)
## 8065                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 8066                                                                  Proportion of births attended by skilled health personnel (%)
## 8075                                                                         Infants lacking immunization, DPT (% of one-year-olds)
## 8076                                                                     Infants lacking immunization, measles (% of one-year-olds)
## 8077                                                                                               Life expectancy at birth (years)
## 8078                                                                                       Life expectancy at birth, female (years)
## 8079                                                                                         Life expectancy at birth, male (years)
## 8080                                                                                                          Life expectancy index
## 8081                                                                                Mortality rate, female adult (per 1,000 people)
## 8082                                                                                 Mortality rate, infant (per 1,000 live births)
## 8083                                                                                  Mortality rate, male adult (per 1,000 people)
## 8084                                                                             Mortality rate, under-five (per 1,000 live births)
## 8094                                                                                                    GDP per capita (2011 PPP $)
## 8095                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 8096                                                                                       Gross fixed capital formation (% of GDP)
## 8097                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 8098                                                                                                                   Income index
## 8116                                                                                          Net migration rate (per 1,000 people)
## 8117                                                                                                Adjusted net savings (% of GNI)
## 8119                                                                                             Gross capital formation (% of GDP)
## 8126                                                                                Rural population with access to electricity (%)
## 8128                                                                                                 Exports and imports (% of GDP)
## 8129                                                                              Foreign direct investment, net inflows (% of GDP)
## 8130                                                                                               Private capital flows (% of GDP)
## 8131                                                                                                Remittances, inflows (% of GDP)
## 8135                                                                          Labour force participation rate (% ages 15 and older)
## 8136                                                                  Labour force participation rate (% ages 15 and older), female
## 8137                                                                    Labour force participation rate (% ages 15 and older), male
## 8144                                                                                                  Human Development Index (HDI)
## 8145                                                                                                             Median age (years)
## 8146                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 8147                                                                                               Population ages 15–64 (millions)
## 8148                                                                                        Population ages 65 and older (millions)
## 8149                                                                                              Population under age 5 (millions)
## 8150                                                                                     Sex ratio at birth (male to female births)
## 8151                                                                                                    Total population (millions)
## 8152                                                                                                           Urban population (%)
## 8153                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 8154                                                                                                                Education index
## 8155                                                                                            Expected years of schooling (years)
## 8156                                                                                    Expected years of schooling, female (years)
## 8157                                                                                      Expected years of schooling, male (years)
## 8158                                                                                 Government expenditure on education (% of GDP)
## 8159                                                               Gross enrolment ratio, pre-primary (% of preschool-age children)
## 8160                                                            Gross enrolment ratio, primary (% of primary school-age population)
## 8161                                                        Gross enrolment ratio, secondary (% of secondary school-age population)
## 8162                                                          Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 8163                                                                                                Mean years of schooling (years)
## 8164                                                                                        Mean years of schooling, female (years)
## 8165                                                                                          Mean years of schooling, male (years)
## 8166                                                        Population with at least some secondary education (% ages 25 and older)
## 8167                                                Population with at least some secondary education, female (% ages 25 and older)
## 8168                                                  Population with at least some secondary education, male (% ages 25 and older)
## 8169                                                                       Primary school dropout rate (% of primary school cohort)
## 8174                                                       Survival rate to the last grade of lower secondary general education (%)
## 8175                                                                            Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 8176                                                                                  Carbon dioxide emissions, per capita (tonnes)
## 8177                                                                                             Forest area (% of total land area)
## 8179                                                                 Fossil fuel energy consumption (% of total energy consumption)
## 8184                                                             Renewable energy consumption (% of total final energy consumption)
## 8185                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 8196                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 8207                                                                                           HIV prevalence, adult (% ages 15-49)
## 8208                                                                         Infants lacking immunization, DPT (% of one-year-olds)
## 8209                                                                     Infants lacking immunization, measles (% of one-year-olds)
## 8210                                                                                               Life expectancy at birth (years)
## 8211                                                                                       Life expectancy at birth, female (years)
## 8212                                                                                         Life expectancy at birth, male (years)
## 8213                                                                                                          Life expectancy index
## 8214                                                                                Mortality rate, female adult (per 1,000 people)
## 8215                                                                                 Mortality rate, infant (per 1,000 live births)
## 8216                                                                                  Mortality rate, male adult (per 1,000 people)
## 8217                                                                             Mortality rate, under-five (per 1,000 live births)
## 8227                                                                                                    GDP per capita (2011 PPP $)
## 8228                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 8229                                                                                       Gross fixed capital formation (% of GDP)
## 8230                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 8231                                                                                                                   Income index
## 8249                                                                                          Net migration rate (per 1,000 people)
## 8250                                                                                                Adjusted net savings (% of GNI)
## 8252                                                                                             Gross capital formation (% of GDP)
## 8259                                                                                Rural population with access to electricity (%)
## 8261                                                                                                 Exports and imports (% of GDP)
## 8262                                                                              Foreign direct investment, net inflows (% of GDP)
## 8263                                                                                               Private capital flows (% of GDP)
## 8264                                                                                                Remittances, inflows (% of GDP)
## 8268                                                                          Labour force participation rate (% ages 15 and older)
## 8269                                                                  Labour force participation rate (% ages 15 and older), female
## 8270                                                                    Labour force participation rate (% ages 15 and older), male
## 8278                                                                                                             Median age (years)
## 8279                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 8280                                                                                               Population ages 15–64 (millions)
## 8281                                                                                        Population ages 65 and older (millions)
## 8282                                                                                              Population under age 5 (millions)
## 8283                                                                                     Sex ratio at birth (male to female births)
## 8284                                                                                                    Total population (millions)
## 8285                                                                                                           Urban population (%)
## 8286                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 8288                                                                                            Expected years of schooling (years)
## 8289                                                                                    Expected years of schooling, female (years)
## 8290                                                                                      Expected years of schooling, male (years)
## 8301                                                Population with at least some secondary education, female (% ages 25 and older)
## 8302                                                  Population with at least some secondary education, male (% ages 25 and older)
## 8313                                                                                             Forest area (% of total land area)
## 8315                                                                 Fossil fuel energy consumption (% of total energy consumption)
## 8320                                                             Renewable energy consumption (% of total final energy consumption)
## 8321                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 8333                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 8334                                                                  Proportion of births attended by skilled health personnel (%)
## 8345                                                                                           HIV prevalence, adult (% ages 15-49)
## 8348                                                                                               Life expectancy at birth (years)
## 8349                                                                                       Life expectancy at birth, female (years)
## 8350                                                                                         Life expectancy at birth, male (years)
## 8351                                                                                                          Life expectancy index
## 8353                                                                                Mortality rate, female adult (per 1,000 people)
## 8354                                                                                 Mortality rate, infant (per 1,000 live births)
## 8355                                                                                  Mortality rate, male adult (per 1,000 people)
## 8356                                                                             Mortality rate, under-five (per 1,000 live births)
## 8366                                                                                                    GDP per capita (2011 PPP $)
## 8367                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 8368                                                                                       Gross fixed capital formation (% of GDP)
## 8369                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 8370                                                                                                                   Income index
## 8388                                                                                          Net migration rate (per 1,000 people)
## 8392                                                                                             Gross capital formation (% of GDP)
## 8399                                                                                Rural population with access to electricity (%)
## 8402                                                                                                 Exports and imports (% of GDP)
## 8411                                                                          Labour force participation rate (% ages 15 and older)
## 8412                                                                  Labour force participation rate (% ages 15 and older), female
## 8413                                                                    Labour force participation rate (% ages 15 and older), male
## 8419                                                                                                  Human Development Index (HDI)
## 8420                                                                                                             Median age (years)
## 8421                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 8422                                                                                               Population ages 15–64 (millions)
## 8423                                                                                        Population ages 65 and older (millions)
## 8424                                                                                              Population under age 5 (millions)
## 8425                                                                                     Sex ratio at birth (male to female births)
## 8426                                                                                                    Total population (millions)
## 8427                                                                                                           Urban population (%)
## 8428                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 8429                                                                                                                Education index
## 8430                                                                                            Expected years of schooling (years)
## 8434                                                               Gross enrolment ratio, pre-primary (% of preschool-age children)
## 8435                                                            Gross enrolment ratio, primary (% of primary school-age population)
## 8436                                                        Gross enrolment ratio, secondary (% of secondary school-age population)
## 8439                                                                                                Mean years of schooling (years)
## 8440                                                                                        Mean years of schooling, female (years)
## 8441                                                                                          Mean years of schooling, male (years)
## 8442                                                        Population with at least some secondary education (% ages 25 and older)
## 8443                                                Population with at least some secondary education, female (% ages 25 and older)
## 8444                                                  Population with at least some secondary education, male (% ages 25 and older)
## 8447                                                                       Pupil-teacher ratio, primary school (pupils per teacher)
## 8449                                                                            Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 8450                                                                                  Carbon dioxide emissions, per capita (tonnes)
## 8451                                                                                             Forest area (% of total land area)
## 8453                                                                 Fossil fuel energy consumption (% of total energy consumption)
## 8458                                                             Renewable energy consumption (% of total final energy consumption)
## 8459                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 8472                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 8484                                                                                           HIV prevalence, adult (% ages 15-49)
## 8485                                                                         Infants lacking immunization, DPT (% of one-year-olds)
## 8486                                                                     Infants lacking immunization, measles (% of one-year-olds)
## 8487                                                                                               Life expectancy at birth (years)
## 8488                                                                                       Life expectancy at birth, female (years)
## 8489                                                                                         Life expectancy at birth, male (years)
## 8490                                                                                                          Life expectancy index
## 8492                                                                                Mortality rate, female adult (per 1,000 people)
## 8493                                                                                 Mortality rate, infant (per 1,000 live births)
## 8494                                                                                  Mortality rate, male adult (per 1,000 people)
## 8495                                                                             Mortality rate, under-five (per 1,000 live births)
## 8504                                                                        Domestic credit provided by financial sector (% of GDP)
## 8505                                                                                                    GDP per capita (2011 PPP $)
## 8506                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 8507                                                                                       Gross fixed capital formation (% of GDP)
## 8508                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 8509                                                                                                                   Income index
## 8526                                                                                          Net migration rate (per 1,000 people)
## 8541                                                                                                Adjusted net savings (% of GNI)
## 8543                                                                                             Gross capital formation (% of GDP)
## 8552                                                        Total debt service (% of exports of goods, services and primary income)
## 8553                                                                                                 Exports and imports (% of GDP)
## 8554                                                                              Foreign direct investment, net inflows (% of GDP)
## 8555                                                                        Net official development assistance received (% of GNI)
## 8556                                                                                               Private capital flows (% of GDP)
## 8557                                                                                                Remittances, inflows (% of GDP)
## 8562                                                                          Labour force participation rate (% ages 15 and older)
## 8563                                                                  Labour force participation rate (% ages 15 and older), female
## 8564                                                                    Labour force participation rate (% ages 15 and older), male
## 8572                                                                                                             Median age (years)
## 8573                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 8574                                                                                               Population ages 15–64 (millions)
## 8575                                                                                        Population ages 65 and older (millions)
## 8576                                                                                              Population under age 5 (millions)
## 8577                                                                                     Sex ratio at birth (male to female births)
## 8578                                                                                                    Total population (millions)
## 8579                                                                                                           Urban population (%)
## 8580                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 8582                                                                                            Expected years of schooling (years)
## 8587                                                            Gross enrolment ratio, primary (% of primary school-age population)
## 8588                                                        Gross enrolment ratio, secondary (% of secondary school-age population)
## 8593                                                                       Pupil-teacher ratio, primary school (pupils per teacher)
## 8595                                                                            Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 8596                                                                                  Carbon dioxide emissions, per capita (tonnes)
## 8597                                                                                             Forest area (% of total land area)
## 8599                                                                 Fossil fuel energy consumption (% of total energy consumption)
## 8604                                                             Renewable energy consumption (% of total final energy consumption)
## 8605                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 8606                                                                                Antenatal care coverage, at least one visit (%)
## 8607                         Contraceptive prevalence, any method (% of married or in-union women of reproductive age, 15–49 years)
## 8610                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 8614                                                                         Infants lacking immunization, DPT (% of one-year-olds)
## 8615                                                                     Infants lacking immunization, measles (% of one-year-olds)
## 8616                                                                                               Life expectancy at birth (years)
## 8617                                                                                       Life expectancy at birth, female (years)
## 8618                                                                                         Life expectancy at birth, male (years)
## 8619                                                                                                          Life expectancy index
## 8620                                                                                Mortality rate, female adult (per 1,000 people)
## 8621                                                                                 Mortality rate, infant (per 1,000 live births)
## 8622                                                                                  Mortality rate, male adult (per 1,000 people)
## 8623                                                                             Mortality rate, under-five (per 1,000 live births)
## 8631                                                                        Domestic credit provided by financial sector (% of GDP)
## 8632                                                                                                    GDP per capita (2011 PPP $)
## 8633                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 8634                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 8635                                                                                                                   Income index
## 8642                                                                                          Net migration rate (per 1,000 people)
## 8646                                                                                Rural population with access to electricity (%)
## 8647                                                        Total debt service (% of exports of goods, services and primary income)
## 8648                                                                                                 Exports and imports (% of GDP)
## 8649                                                                              Foreign direct investment, net inflows (% of GDP)
## 8650                                                                        Net official development assistance received (% of GNI)
## 8651                                                                                               Private capital flows (% of GDP)
## 8652                                                                                                Remittances, inflows (% of GDP)
## 8655                                                                                                  Human Development Index (HDI)
## 8656                                                                                                             Median age (years)
## 8657                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 8658                                                                                               Population ages 15–64 (millions)
## 8659                                                                                        Population ages 65 and older (millions)
## 8660                                                                                              Population under age 5 (millions)
## 8661                                                                                     Sex ratio at birth (male to female births)
## 8662                                                                                                    Total population (millions)
## 8663                                                                                                           Urban population (%)
## 8664                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 8665                                                                                                                Education index
## 8666                                                                                            Expected years of schooling (years)
## 8667                                                                                    Expected years of schooling, female (years)
## 8668                                                                                      Expected years of schooling, male (years)
## 8671                                                            Gross enrolment ratio, primary (% of primary school-age population)
## 8672                                                        Gross enrolment ratio, secondary (% of secondary school-age population)
## 8673                                                          Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 8675                                                                                                Mean years of schooling (years)
## 8679                                                                       Primary school dropout rate (% of primary school cohort)
## 8681                                                                       Pupil-teacher ratio, primary school (pupils per teacher)
## 8682                                                       Survival rate to the last grade of lower secondary general education (%)
## 8683                                                                            Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 8684                                                                                  Carbon dioxide emissions, per capita (tonnes)
## 8685                                                                                             Forest area (% of total land area)
## 8690                                                             Renewable energy consumption (% of total final energy consumption)
## 8691                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 8701                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 8711                                                                                           HIV prevalence, adult (% ages 15-49)
## 8712                                                                         Infants lacking immunization, DPT (% of one-year-olds)
## 8713                                                                     Infants lacking immunization, measles (% of one-year-olds)
## 8714                                                                                               Life expectancy at birth (years)
## 8715                                                                                       Life expectancy at birth, female (years)
## 8716                                                                                         Life expectancy at birth, male (years)
## 8717                                                                                                          Life expectancy index
## 8719                                                                                Mortality rate, female adult (per 1,000 people)
## 8720                                                                                 Mortality rate, infant (per 1,000 live births)
## 8721                                                                                  Mortality rate, male adult (per 1,000 people)
## 8722                                                                             Mortality rate, under-five (per 1,000 live births)
## 8732                                                                                                    GDP per capita (2011 PPP $)
## 8733                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 8734                                                                                       Gross fixed capital formation (% of GDP)
## 8735                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 8736                                                                                                                   Income index
## 8753                                                                                          Net migration rate (per 1,000 people)
## 8768                                                                                                Adjusted net savings (% of GNI)
## 8770                                                                                             Gross capital formation (% of GDP)
## 8777                                                        Total debt service (% of exports of goods, services and primary income)
## 8778                                                                                                 Exports and imports (% of GDP)
## 8779                                                                              Foreign direct investment, net inflows (% of GDP)
## 8780                                                                        Net official development assistance received (% of GNI)
## 8782                                                                                                Remittances, inflows (% of GDP)
## 8787                                                                          Labour force participation rate (% ages 15 and older)
## 8788                                                                  Labour force participation rate (% ages 15 and older), female
## 8789                                                                    Labour force participation rate (% ages 15 and older), male
## 8796                                                                                                             Median age (years)
## 8797                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 8798                                                                                               Population ages 15–64 (millions)
## 8799                                                                                        Population ages 65 and older (millions)
## 8800                                                                                              Population under age 5 (millions)
## 8801                                                                                     Sex ratio at birth (male to female births)
## 8802                                                                                                    Total population (millions)
## 8803                                                                                                           Urban population (%)
## 8804                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 8806                                                                                            Expected years of schooling (years)
## 8818                                                                            Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 8819                                                                                  Carbon dioxide emissions, per capita (tonnes)
## 8820                                                                                             Forest area (% of total land area)
## 8822                                                                 Fossil fuel energy consumption (% of total energy consumption)
## 8827                                                             Renewable energy consumption (% of total final energy consumption)
## 8828                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 8835                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 8844                                                                                           HIV prevalence, adult (% ages 15-49)
## 8845                                                                         Infants lacking immunization, DPT (% of one-year-olds)
## 8846                                                                     Infants lacking immunization, measles (% of one-year-olds)
## 8847                                                                                               Life expectancy at birth (years)
## 8848                                                                                       Life expectancy at birth, female (years)
## 8849                                                                                         Life expectancy at birth, male (years)
## 8850                                                                                                          Life expectancy index
## 8852                                                                                Mortality rate, female adult (per 1,000 people)
## 8853                                                                                 Mortality rate, infant (per 1,000 live births)
## 8854                                                                                  Mortality rate, male adult (per 1,000 people)
## 8855                                                                             Mortality rate, under-five (per 1,000 live births)
## 8863                                                                        Domestic credit provided by financial sector (% of GDP)
## 8864                                                                                                    GDP per capita (2011 PPP $)
## 8865                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 8866                                                                                       Gross fixed capital formation (% of GDP)
## 8867                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 8868                                                                                                                   Income index
## 8884                                                                                          Net migration rate (per 1,000 people)
## 8899                                                                                                Adjusted net savings (% of GNI)
## 8901                                                                                             Gross capital formation (% of GDP)
## 8908                                                        Total debt service (% of exports of goods, services and primary income)
## 8909                                                                                                 Exports and imports (% of GDP)
## 8910                                                                              Foreign direct investment, net inflows (% of GDP)
## 8911                                                                        Net official development assistance received (% of GNI)
## 8912                                                                                               Private capital flows (% of GDP)
## 8913                                                                                                Remittances, inflows (% of GDP)
## 8918                                                                          Labour force participation rate (% ages 15 and older)
## 8919                                                                  Labour force participation rate (% ages 15 and older), female
## 8920                                                                    Labour force participation rate (% ages 15 and older), male
## 8926                                                                                                  Human Development Index (HDI)
## 8927                                                                                                             Median age (years)
## 8928                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 8929                                                                                               Population ages 15–64 (millions)
## 8930                                                                                        Population ages 65 and older (millions)
## 8931                                                                                              Population under age 5 (millions)
## 8932                                                                                     Sex ratio at birth (male to female births)
## 8933                                                                                                    Total population (millions)
## 8934                                                                                                           Urban population (%)
## 8935                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 8936                                                                                                                Education index
## 8937                                                                                            Expected years of schooling (years)
## 8944                                                          Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 8946                                                                                                Mean years of schooling (years)
## 8947                                                                                        Mean years of schooling, female (years)
## 8948                                                                                          Mean years of schooling, male (years)
## 8949                                                        Population with at least some secondary education (% ages 25 and older)
## 8950                                                Population with at least some secondary education, female (% ages 25 and older)
## 8951                                                  Population with at least some secondary education, male (% ages 25 and older)
## 8957                                                                            Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 8958                                                                                  Carbon dioxide emissions, per capita (tonnes)
## 8959                                                                                             Forest area (% of total land area)
## 8961                                                                 Fossil fuel energy consumption (% of total energy consumption)
## 8966                                                             Renewable energy consumption (% of total final energy consumption)
## 8967                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 8980                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 8989                                                                                           HIV prevalence, adult (% ages 15-49)
## 8990                                                                         Infants lacking immunization, DPT (% of one-year-olds)
## 8991                                                                     Infants lacking immunization, measles (% of one-year-olds)
## 8992                                                                                               Life expectancy at birth (years)
## 8993                                                                                       Life expectancy at birth, female (years)
## 8994                                                                                         Life expectancy at birth, male (years)
## 8995                                                                                                          Life expectancy index
## 8997                                                                                Mortality rate, female adult (per 1,000 people)
## 8998                                                                                 Mortality rate, infant (per 1,000 live births)
## 8999                                                                                  Mortality rate, male adult (per 1,000 people)
## 9000                                                                             Mortality rate, under-five (per 1,000 live births)
## 9009                                                                        Domestic credit provided by financial sector (% of GDP)
## 9010                                                                                                    GDP per capita (2011 PPP $)
## 9011                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 9012                                                                                       Gross fixed capital formation (% of GDP)
## 9013                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 9014                                                                                                                   Income index
## 9028                                                                                          Net migration rate (per 1,000 people)
## 9043                                                                                             Gross capital formation (% of GDP)
## 9048                                                                                Rural population with access to electricity (%)
## 9050                                                                                                 Exports and imports (% of GDP)
## 9051                                                                              Foreign direct investment, net inflows (% of GDP)
## 9052                                                                        Net official development assistance received (% of GNI)
## 9059                                                                          Labour force participation rate (% ages 15 and older)
## 9060                                                                  Labour force participation rate (% ages 15 and older), female
## 9061                                                                    Labour force participation rate (% ages 15 and older), male
## 9068                                                                                                  Human Development Index (HDI)
## 9069                                                                                                             Median age (years)
## 9070                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 9071                                                                                               Population ages 15–64 (millions)
## 9072                                                                                        Population ages 65 and older (millions)
## 9073                                                                                              Population under age 5 (millions)
## 9074                                                                                     Sex ratio at birth (male to female births)
## 9075                                                                                                    Total population (millions)
## 9076                                                                                                           Urban population (%)
## 9077                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 9078                                                                                                                Education index
## 9079                                                                                            Expected years of schooling (years)
## 9080                                                                                    Expected years of schooling, female (years)
## 9081                                                                                      Expected years of schooling, male (years)
## 9083                                                               Gross enrolment ratio, pre-primary (% of preschool-age children)
## 9084                                                            Gross enrolment ratio, primary (% of primary school-age population)
## 9086                                                          Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 9088                                                                                                Mean years of schooling (years)
## 9089                                                                                        Mean years of schooling, female (years)
## 9090                                                                                          Mean years of schooling, male (years)
## 9091                                                        Population with at least some secondary education (% ages 25 and older)
## 9092                                                Population with at least some secondary education, female (% ages 25 and older)
## 9093                                                  Population with at least some secondary education, male (% ages 25 and older)
## 9095                                                                       Pupil-teacher ratio, primary school (pupils per teacher)
## 9097                                                                            Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 9098                                                                                  Carbon dioxide emissions, per capita (tonnes)
## 9099                                                                                             Forest area (% of total land area)
## 9101                                                                 Fossil fuel energy consumption (% of total energy consumption)
## 9105                                                             Renewable energy consumption (% of total final energy consumption)
## 9106                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 9119                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 9130                                                                                           HIV prevalence, adult (% ages 15-49)
## 9131                                                                         Infants lacking immunization, DPT (% of one-year-olds)
## 9132                                                                     Infants lacking immunization, measles (% of one-year-olds)
## 9133                                                                                               Life expectancy at birth (years)
## 9134                                                                                       Life expectancy at birth, female (years)
## 9135                                                                                         Life expectancy at birth, male (years)
## 9136                                                                                                          Life expectancy index
## 9138                                                                                Mortality rate, female adult (per 1,000 people)
## 9139                                                                                 Mortality rate, infant (per 1,000 live births)
## 9140                                                                                  Mortality rate, male adult (per 1,000 people)
## 9141                                                                             Mortality rate, under-five (per 1,000 live births)
## 9150                                                                        Domestic credit provided by financial sector (% of GDP)
## 9151                                                                                                    GDP per capita (2011 PPP $)
## 9152                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 9153                                                                                       Gross fixed capital formation (% of GDP)
## 9154                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 9155                                                                                                                   Income index
## 9172                                                                                          Net migration rate (per 1,000 people)
## 9187                                                                                                Adjusted net savings (% of GNI)
## 9189                                                                                             Gross capital formation (% of GDP)
## 9196                                                                                Rural population with access to electricity (%)
## 9198                                                        Total debt service (% of exports of goods, services and primary income)
## 9199                                                                                                 Exports and imports (% of GDP)
## 9200                                                                              Foreign direct investment, net inflows (% of GDP)
## 9201                                                                        Net official development assistance received (% of GNI)
## 9202                                                                                               Private capital flows (% of GDP)
## 9203                                                                                                Remittances, inflows (% of GDP)
## 9207                                                                          Labour force participation rate (% ages 15 and older)
## 9208                                                                  Labour force participation rate (% ages 15 and older), female
## 9209                                                                    Labour force participation rate (% ages 15 and older), male
## 9216                                                                                                  Human Development Index (HDI)
## 9217                                                                                                             Median age (years)
## 9218                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 9219                                                                                               Population ages 15–64 (millions)
## 9220                                                                                        Population ages 65 and older (millions)
## 9221                                                                                              Population under age 5 (millions)
## 9222                                                                                     Sex ratio at birth (male to female births)
## 9223                                                                                                    Total population (millions)
## 9224                                                                                                           Urban population (%)
## 9225                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 9226                                                                                                                Education index
## 9227                                                                                            Expected years of schooling (years)
## 9228                                                                                    Expected years of schooling, female (years)
## 9229                                                                                      Expected years of schooling, male (years)
## 9231                                                               Gross enrolment ratio, pre-primary (% of preschool-age children)
## 9232                                                            Gross enrolment ratio, primary (% of primary school-age population)
## 9234                                                          Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 9236                                                                                                Mean years of schooling (years)
## 9237                                                                                        Mean years of schooling, female (years)
## 9238                                                                                          Mean years of schooling, male (years)
## 9239                                                        Population with at least some secondary education (% ages 25 and older)
## 9240                                                Population with at least some secondary education, female (% ages 25 and older)
## 9241                                                  Population with at least some secondary education, male (% ages 25 and older)
## 9246                                                                            Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 9247                                                                                  Carbon dioxide emissions, per capita (tonnes)
## 9248                                                                                             Forest area (% of total land area)
## 9250                                                                 Fossil fuel energy consumption (% of total energy consumption)
## 9251                                                                 Fresh water withdrawals (% of total renewable water resources)
## 9255                                                             Renewable energy consumption (% of total final energy consumption)
## 9256                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 9268                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 9279                                                                                           HIV prevalence, adult (% ages 15-49)
## 9280                                                                         Infants lacking immunization, DPT (% of one-year-olds)
## 9281                                                                     Infants lacking immunization, measles (% of one-year-olds)
## 9282                                                                                               Life expectancy at birth (years)
## 9283                                                                                       Life expectancy at birth, female (years)
## 9284                                                                                         Life expectancy at birth, male (years)
## 9285                                                                                                          Life expectancy index
## 9287                                                                                Mortality rate, female adult (per 1,000 people)
## 9288                                                                                 Mortality rate, infant (per 1,000 live births)
## 9289                                                                                  Mortality rate, male adult (per 1,000 people)
## 9290                                                                             Mortality rate, under-five (per 1,000 live births)
## 9299                                                                        Domestic credit provided by financial sector (% of GDP)
## 9300                                                                                                    GDP per capita (2011 PPP $)
## 9301                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 9302                                                                                       Gross fixed capital formation (% of GDP)
## 9303                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 9304                                                                                                                   Income index
## 9321                                                                                          Net migration rate (per 1,000 people)
## 9336                                                                                                Adjusted net savings (% of GNI)
## 9338                                                                                             Gross capital formation (% of GDP)
## 9344                                                                                Rural population with access to electricity (%)
## 9346                                                        Total debt service (% of exports of goods, services and primary income)
## 9347                                                                                                 Exports and imports (% of GDP)
## 9348                                                                              Foreign direct investment, net inflows (% of GDP)
## 9349                                                                        Net official development assistance received (% of GNI)
## 9350                                                                                               Private capital flows (% of GDP)
## 9351                                                                                                Remittances, inflows (% of GDP)
## 9355                                                                          Labour force participation rate (% ages 15 and older)
## 9356                                                                  Labour force participation rate (% ages 15 and older), female
## 9357                                                                    Labour force participation rate (% ages 15 and older), male
## 9364                                                                                                  Human Development Index (HDI)
## 9365                                                                                                             Median age (years)
## 9366                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 9367                                                                                               Population ages 15–64 (millions)
## 9368                                                                                        Population ages 65 and older (millions)
## 9369                                                                                              Population under age 5 (millions)
## 9370                                                                                     Sex ratio at birth (male to female births)
## 9371                                                                                                    Total population (millions)
## 9372                                                                                                           Urban population (%)
## 9373                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 9374                                                                                                                Education index
## 9375                                                                                            Expected years of schooling (years)
## 9378                                                                                 Government expenditure on education (% of GDP)
## 9379                                                               Gross enrolment ratio, pre-primary (% of preschool-age children)
## 9380                                                            Gross enrolment ratio, primary (% of primary school-age population)
## 9381                                                        Gross enrolment ratio, secondary (% of secondary school-age population)
## 9384                                                                                                Mean years of schooling (years)
## 9385                                                                                        Mean years of schooling, female (years)
## 9386                                                                                          Mean years of schooling, male (years)
## 9387                                                        Population with at least some secondary education (% ages 25 and older)
## 9388                                                Population with at least some secondary education, female (% ages 25 and older)
## 9389                                                  Population with at least some secondary education, male (% ages 25 and older)
## 9390                                                                       Primary school dropout rate (% of primary school cohort)
## 9394                                                       Survival rate to the last grade of lower secondary general education (%)
## 9395                                                                            Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 9396                                                                                  Carbon dioxide emissions, per capita (tonnes)
## 9397                                                                                             Forest area (% of total land area)
## 9399                                                                 Fossil fuel energy consumption (% of total energy consumption)
## 9404                                                             Renewable energy consumption (% of total final energy consumption)
## 9405                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 9417                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 9427                                                                                           HIV prevalence, adult (% ages 15-49)
## 9428                                                                         Infants lacking immunization, DPT (% of one-year-olds)
## 9429                                                                     Infants lacking immunization, measles (% of one-year-olds)
## 9430                                                                                               Life expectancy at birth (years)
## 9431                                                                                       Life expectancy at birth, female (years)
## 9432                                                                                         Life expectancy at birth, male (years)
## 9433                                                                                                          Life expectancy index
## 9435                                                                                Mortality rate, female adult (per 1,000 people)
## 9436                                                                                 Mortality rate, infant (per 1,000 live births)
## 9437                                                                                  Mortality rate, male adult (per 1,000 people)
## 9438                                                                             Mortality rate, under-five (per 1,000 live births)
## 9447                                                                        Domestic credit provided by financial sector (% of GDP)
## 9448                                                                                                    GDP per capita (2011 PPP $)
## 9449                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 9450                                                                                       Gross fixed capital formation (% of GDP)
## 9451                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 9452                                                                                                                   Income index
## 9470                                                                                          Net migration rate (per 1,000 people)
## 9472                                                                                                Adjusted net savings (% of GNI)
## 9474                                                                                             Gross capital formation (% of GDP)
## 9480                                                                                Rural population with access to electricity (%)
## 9481                                                        Total debt service (% of exports of goods, services and primary income)
## 9482                                                                                                 Exports and imports (% of GDP)
## 9483                                                                              Foreign direct investment, net inflows (% of GDP)
## 9484                                                                        Net official development assistance received (% of GNI)
## 9485                                                                                               Private capital flows (% of GDP)
## 9490                                                                          Labour force participation rate (% ages 15 and older)
## 9491                                                                  Labour force participation rate (% ages 15 and older), female
## 9492                                                                    Labour force participation rate (% ages 15 and older), male
## 9499                                                                                                  Human Development Index (HDI)
## 9500                                                                                                             Median age (years)
## 9501                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 9502                                                                                               Population ages 15–64 (millions)
## 9503                                                                                        Population ages 65 and older (millions)
## 9504                                                                                              Population under age 5 (millions)
## 9505                                                                                     Sex ratio at birth (male to female births)
## 9506                                                                                                    Total population (millions)
## 9507                                                                                                           Urban population (%)
## 9508                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 9509                                                                                                                Education index
## 9510                                                                                            Expected years of schooling (years)
## 9511                                                                                    Expected years of schooling, female (years)
## 9512                                                                                      Expected years of schooling, male (years)
## 9514                                                               Gross enrolment ratio, pre-primary (% of preschool-age children)
## 9515                                                            Gross enrolment ratio, primary (% of primary school-age population)
## 9516                                                        Gross enrolment ratio, secondary (% of secondary school-age population)
## 9517                                                          Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 9519                                                                                                Mean years of schooling (years)
## 9520                                                                                        Mean years of schooling, female (years)
## 9521                                                                                          Mean years of schooling, male (years)
## 9522                                                        Population with at least some secondary education (% ages 25 and older)
## 9523                                                Population with at least some secondary education, female (% ages 25 and older)
## 9524                                                  Population with at least some secondary education, male (% ages 25 and older)
## 9529                                                                       Pupil-teacher ratio, primary school (pupils per teacher)
## 9530                                                       Survival rate to the last grade of lower secondary general education (%)
## 9531                                                                            Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 9532                                                                                  Carbon dioxide emissions, per capita (tonnes)
## 9533                                                                                             Forest area (% of total land area)
## 9535                                                                 Fossil fuel energy consumption (% of total energy consumption)
## 9540                                                             Renewable energy consumption (% of total final energy consumption)
## 9541                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 9552                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 9562                                                                                           HIV prevalence, adult (% ages 15-49)
## 9563                                                                         Infants lacking immunization, DPT (% of one-year-olds)
## 9564                                                                     Infants lacking immunization, measles (% of one-year-olds)
## 9565                                                                                               Life expectancy at birth (years)
## 9566                                                                                       Life expectancy at birth, female (years)
## 9567                                                                                         Life expectancy at birth, male (years)
## 9568                                                                                                          Life expectancy index
## 9569                                                                                Mortality rate, female adult (per 1,000 people)
## 9570                                                                                 Mortality rate, infant (per 1,000 live births)
## 9571                                                                                  Mortality rate, male adult (per 1,000 people)
## 9572                                                                             Mortality rate, under-five (per 1,000 live births)
## 9582                                                                                                    GDP per capita (2011 PPP $)
## 9583                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 9584                                                                                       Gross fixed capital formation (% of GDP)
## 9585                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 9586                                                                                                                   Income index
## 9604                                                                                          Net migration rate (per 1,000 people)
## 9605                                                                                                Adjusted net savings (% of GNI)
## 9607                                                                                             Gross capital formation (% of GDP)
## 9614                                                                                Rural population with access to electricity (%)
## 9616                                                                                                 Exports and imports (% of GDP)
## 9617                                                                              Foreign direct investment, net inflows (% of GDP)
## 9618                                                                                               Private capital flows (% of GDP)
## 9619                                                                                                Remittances, inflows (% of GDP)
## 9623                                                                          Labour force participation rate (% ages 15 and older)
## 9624                                                                  Labour force participation rate (% ages 15 and older), female
## 9625                                                                    Labour force participation rate (% ages 15 and older), male
## 9632                                                                                                  Human Development Index (HDI)
## 9633                                                                                                             Median age (years)
## 9634                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 9635                                                                                               Population ages 15–64 (millions)
## 9636                                                                                        Population ages 65 and older (millions)
## 9637                                                                                              Population under age 5 (millions)
## 9638                                                                                     Sex ratio at birth (male to female births)
## 9639                                                                                                    Total population (millions)
## 9640                                                                                                           Urban population (%)
## 9641                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 9642                                                                                                                Education index
## 9643                                                                                            Expected years of schooling (years)
## 9644                                                                                    Expected years of schooling, female (years)
## 9645                                                                                      Expected years of schooling, male (years)
## 9647                                                               Gross enrolment ratio, pre-primary (% of preschool-age children)
## 9648                                                            Gross enrolment ratio, primary (% of primary school-age population)
## 9649                                                        Gross enrolment ratio, secondary (% of secondary school-age population)
## 9650                                                          Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 9652                                                                                                Mean years of schooling (years)
## 9653                                                                                        Mean years of schooling, female (years)
## 9654                                                                                          Mean years of schooling, male (years)
## 9655                                                        Population with at least some secondary education (% ages 25 and older)
## 9656                                                Population with at least some secondary education, female (% ages 25 and older)
## 9657                                                  Population with at least some secondary education, male (% ages 25 and older)
## 9666                                                                            Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 9667                                                                                  Carbon dioxide emissions, per capita (tonnes)
## 9668                                                                                             Forest area (% of total land area)
## 9670                                                                 Fossil fuel energy consumption (% of total energy consumption)
## 9675                                                             Renewable energy consumption (% of total final energy consumption)
## 9676                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 9677                                                                                Antenatal care coverage, at least one visit (%)
## 9679                         Contraceptive prevalence, any method (% of married or in-union women of reproductive age, 15–49 years)
## 9688                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 9689                                                                  Proportion of births attended by skilled health personnel (%)
## 9693                               Unmet need for family planning (% of married or in-union women of reproductive age, 15–49 years)
## 9699                                                                                           HIV prevalence, adult (% ages 15-49)
## 9700                                                                         Infants lacking immunization, DPT (% of one-year-olds)
## 9701                                                                     Infants lacking immunization, measles (% of one-year-olds)
## 9702                                                                                               Life expectancy at birth (years)
## 9703                                                                                       Life expectancy at birth, female (years)
## 9704                                                                                         Life expectancy at birth, male (years)
## 9705                                                                                                          Life expectancy index
## 9706                                                                                Mortality rate, female adult (per 1,000 people)
## 9707                                                                                 Mortality rate, infant (per 1,000 live births)
## 9708                                                                                  Mortality rate, male adult (per 1,000 people)
## 9709                                                                             Mortality rate, under-five (per 1,000 live births)
## 9718                                                                        Domestic credit provided by financial sector (% of GDP)
## 9719                                                                                                    GDP per capita (2011 PPP $)
## 9720                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 9721                                                                                       Gross fixed capital formation (% of GDP)
## 9722                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 9723                                                                                                                   Income index
## 9740                                                                                          Net migration rate (per 1,000 people)
## 9755                                                                                                Adjusted net savings (% of GNI)
## 9757                                                                                             Gross capital formation (% of GDP)
## 9763                                                                                Rural population with access to electricity (%)
## 9764                                                        Total debt service (% of exports of goods, services and primary income)
## 9765                                                                                                 Exports and imports (% of GDP)
## 9766                                                                              Foreign direct investment, net inflows (% of GDP)
## 9767                                                                        Net official development assistance received (% of GNI)
## 9768                                                                                               Private capital flows (% of GDP)
## 9769                                                                                                Remittances, inflows (% of GDP)
## 9774                                                                          Labour force participation rate (% ages 15 and older)
## 9775                                                                  Labour force participation rate (% ages 15 and older), female
## 9776                                                                    Labour force participation rate (% ages 15 and older), male
## 9782                                                                                                  Human Development Index (HDI)
## 9783                                                                                                             Median age (years)
## 9784                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 9785                                                                                               Population ages 15–64 (millions)
## 9786                                                                                        Population ages 65 and older (millions)
## 9787                                                                                              Population under age 5 (millions)
## 9788                                                                                     Sex ratio at birth (male to female births)
## 9789                                                                                                    Total population (millions)
## 9790                                                                                                           Urban population (%)
## 9791                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 9792                                                                                                                Education index
## 9793                                                                                            Expected years of schooling (years)
## 9797                                                               Gross enrolment ratio, pre-primary (% of preschool-age children)
## 9798                                                            Gross enrolment ratio, primary (% of primary school-age population)
## 9802                                                                                                Mean years of schooling (years)
## 9803                                                                                        Mean years of schooling, female (years)
## 9804                                                                                          Mean years of schooling, male (years)
## 9805                                                        Population with at least some secondary education (% ages 25 and older)
## 9806                                                Population with at least some secondary education, female (% ages 25 and older)
## 9807                                                  Population with at least some secondary education, male (% ages 25 and older)
## 9812                                                                            Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 9813                                                                                  Carbon dioxide emissions, per capita (tonnes)
## 9814                                                                                             Forest area (% of total land area)
## 9816                                                                 Fossil fuel energy consumption (% of total energy consumption)
## 9817                                                                 Fresh water withdrawals (% of total renewable water resources)
## 9821                                                             Renewable energy consumption (% of total final energy consumption)
## 9822                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 9833                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 9844                                                                                           HIV prevalence, adult (% ages 15-49)
## 9845                                                                         Infants lacking immunization, DPT (% of one-year-olds)
## 9846                                                                     Infants lacking immunization, measles (% of one-year-olds)
## 9847                                                                                               Life expectancy at birth (years)
## 9848                                                                                       Life expectancy at birth, female (years)
## 9849                                                                                         Life expectancy at birth, male (years)
## 9850                                                                                                          Life expectancy index
## 9852                                                                                Mortality rate, female adult (per 1,000 people)
## 9853                                                                                 Mortality rate, infant (per 1,000 live births)
## 9854                                                                                  Mortality rate, male adult (per 1,000 people)
## 9855                                                                             Mortality rate, under-five (per 1,000 live births)
## 9864                                                                        Domestic credit provided by financial sector (% of GDP)
## 9865                                                                                                    GDP per capita (2011 PPP $)
## 9866                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 9867                                                                                       Gross fixed capital formation (% of GDP)
## 9868                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 9869                                                                                                                   Income index
## 9885                                                                                          Net migration rate (per 1,000 people)
## 9899                                                                                                Adjusted net savings (% of GNI)
## 9901                                                                                             Gross capital formation (% of GDP)
## 9909                                                        Total debt service (% of exports of goods, services and primary income)
## 9910                                                                                                 Exports and imports (% of GDP)
## 9911                                                                              Foreign direct investment, net inflows (% of GDP)
## 9912                                                                        Net official development assistance received (% of GNI)
## 9913                                                                                               Private capital flows (% of GDP)
## 9914                                                                                                Remittances, inflows (% of GDP)
## 9918                                                                          Labour force participation rate (% ages 15 and older)
## 9919                                                                  Labour force participation rate (% ages 15 and older), female
## 9920                                                                    Labour force participation rate (% ages 15 and older), male
## 9927                                                                                                             Median age (years)
## 9928                                                            Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 9929                                                                                               Population ages 15–64 (millions)
## 9930                                                                                        Population ages 65 and older (millions)
## 9931                                                                                              Population under age 5 (millions)
## 9932                                                                                     Sex ratio at birth (male to female births)
## 9933                                                                                                    Total population (millions)
## 9934                                                                                                           Urban population (%)
## 9935                                                                  Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 9937                                                                                            Expected years of schooling (years)
## 9938                                                                                    Expected years of schooling, female (years)
## 9939                                                                                      Expected years of schooling, male (years)
## 9941                                                            Gross enrolment ratio, primary (% of primary school-age population)
## 9942                                                        Gross enrolment ratio, secondary (% of secondary school-age population)
## 9946                                                                       Pupil-teacher ratio, primary school (pupils per teacher)
## 9948                                                                            Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 9949                                                                                  Carbon dioxide emissions, per capita (tonnes)
## 9950                                                                                             Forest area (% of total land area)
## 9952                                                                 Fossil fuel energy consumption (% of total energy consumption)
## 9956                                                             Renewable energy consumption (% of total final energy consumption)
## 9957                                                                      Adolescent birth rate (births per 1,000 women ages 15-19)
## 9962                                                                      Maternal mortality ratio (deaths per 100,000 live births)
## 9963                                                                  Proportion of births attended by skilled health personnel (%)
## 9969                                                                         Infants lacking immunization, DPT (% of one-year-olds)
## 9970                                                                     Infants lacking immunization, measles (% of one-year-olds)
## 9971                                                                                               Life expectancy at birth (years)
## 9972                                                                                       Life expectancy at birth, female (years)
## 9973                                                                                         Life expectancy at birth, male (years)
## 9974                                                                                                          Life expectancy index
## 9975                                                                                Mortality rate, female adult (per 1,000 people)
## 9976                                                                                 Mortality rate, infant (per 1,000 live births)
## 9977                                                                                  Mortality rate, male adult (per 1,000 people)
## 9978                                                                             Mortality rate, under-five (per 1,000 live births)
## 9987                                                                                                    GDP per capita (2011 PPP $)
## 9988                                                                      Gross domestic product (GDP), total (2011 PPP $ billions)
## 9989                                                                                       Gross fixed capital formation (% of GDP)
## 9990                                                                            Gross national income (GNI) per capita (2011 PPP $)
## 9991                                                                                                                   Income index
## 10007                                                                                         Net migration rate (per 1,000 people)
## 10009                                                                                            Gross capital formation (% of GDP)
## 10013                                                                                                Exports and imports (% of GDP)
## 10014                                                                             Foreign direct investment, net inflows (% of GDP)
## 10015                                                                       Net official development assistance received (% of GNI)
## 10016                                                                                              Private capital flows (% of GDP)
## 10017                                                                                               Remittances, inflows (% of GDP)
## 10019                                                                                                 Human Development Index (HDI)
## 10020                                                                                                            Median age (years)
## 10021                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 10022                                                                                              Population ages 15–64 (millions)
## 10023                                                                                       Population ages 65 and older (millions)
## 10024                                                                                             Population under age 5 (millions)
## 10025                                                                                    Sex ratio at birth (male to female births)
## 10026                                                                                                   Total population (millions)
## 10027                                                                                                          Urban population (%)
## 10028                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 10029                                                                                                               Education index
## 10030                                                                                           Expected years of schooling (years)
## 10034                                                              Gross enrolment ratio, pre-primary (% of preschool-age children)
## 10035                                                           Gross enrolment ratio, primary (% of primary school-age population)
## 10036                                                       Gross enrolment ratio, secondary (% of secondary school-age population)
## 10037                                                         Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 10039                                                                                               Mean years of schooling (years)
## 10040                                                                                       Mean years of schooling, female (years)
## 10041                                                                                         Mean years of schooling, male (years)
## 10042                                                       Population with at least some secondary education (% ages 25 and older)
## 10043                                               Population with at least some secondary education, female (% ages 25 and older)
## 10044                                                 Population with at least some secondary education, male (% ages 25 and older)
## 10052                                                                                            Forest area (% of total land area)
## 10054                                                                Fossil fuel energy consumption (% of total energy consumption)
## 10059                                                            Renewable energy consumption (% of total final energy consumption)
## 10060                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 10072                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 10073                                                                 Proportion of births attended by skilled health personnel (%)
## 10084                                                                                          HIV prevalence, adult (% ages 15-49)
## 10087                                                                                              Life expectancy at birth (years)
## 10088                                                                                      Life expectancy at birth, female (years)
## 10089                                                                                        Life expectancy at birth, male (years)
## 10090                                                                                                         Life expectancy index
## 10092                                                                               Mortality rate, female adult (per 1,000 people)
## 10093                                                                                Mortality rate, infant (per 1,000 live births)
## 10094                                                                                 Mortality rate, male adult (per 1,000 people)
## 10095                                                                            Mortality rate, under-five (per 1,000 live births)
## 10105                                                                                                   GDP per capita (2011 PPP $)
## 10106                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 10107                                                                                      Gross fixed capital formation (% of GDP)
## 10108                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 10109                                                                                                                  Income index
## 10126                                                                                         Net migration rate (per 1,000 people)
## 10143                                                                                            Gross capital formation (% of GDP)
## 10150                                                                               Rural population with access to electricity (%)
## 10153                                                                                                Exports and imports (% of GDP)
## 10162                                                                         Labour force participation rate (% ages 15 and older)
## 10163                                                                 Labour force participation rate (% ages 15 and older), female
## 10164                                                                   Labour force participation rate (% ages 15 and older), male
## 10171                                                                                                 Human Development Index (HDI)
## 10172                                                                                                            Median age (years)
## 10173                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 10174                                                                                              Population ages 15–64 (millions)
## 10175                                                                                       Population ages 65 and older (millions)
## 10176                                                                                             Population under age 5 (millions)
## 10177                                                                                    Sex ratio at birth (male to female births)
## 10178                                                                                                   Total population (millions)
## 10179                                                                                                          Urban population (%)
## 10180                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 10181                                                                                                               Education index
## 10182                                                                                           Expected years of schooling (years)
## 10183                                                                                   Expected years of schooling, female (years)
## 10184                                                                                     Expected years of schooling, male (years)
## 10186                                                              Gross enrolment ratio, pre-primary (% of preschool-age children)
## 10187                                                           Gross enrolment ratio, primary (% of primary school-age population)
## 10188                                                       Gross enrolment ratio, secondary (% of secondary school-age population)
## 10189                                                         Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 10191                                                                                               Mean years of schooling (years)
## 10192                                                                                       Mean years of schooling, female (years)
## 10193                                                                                         Mean years of schooling, male (years)
## 10194                                                       Population with at least some secondary education (% ages 25 and older)
## 10195                                               Population with at least some secondary education, female (% ages 25 and older)
## 10196                                                 Population with at least some secondary education, male (% ages 25 and older)
## 10199                                                                      Pupil-teacher ratio, primary school (pupils per teacher)
## 10201                                                                           Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 10202                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 10203                                                                                            Forest area (% of total land area)
## 10209                                                            Renewable energy consumption (% of total final energy consumption)
## 10210                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 10222                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 10234                                                                                          HIV prevalence, adult (% ages 15-49)
## 10235                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 10236                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 10237                                                                                              Life expectancy at birth (years)
## 10238                                                                                      Life expectancy at birth, female (years)
## 10239                                                                                        Life expectancy at birth, male (years)
## 10240                                                                                                         Life expectancy index
## 10242                                                                               Mortality rate, female adult (per 1,000 people)
## 10243                                                                                Mortality rate, infant (per 1,000 live births)
## 10244                                                                                 Mortality rate, male adult (per 1,000 people)
## 10245                                                                            Mortality rate, under-five (per 1,000 live births)
## 10254                                                                       Domestic credit provided by financial sector (% of GDP)
## 10255                                                                                                   GDP per capita (2011 PPP $)
## 10256                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 10258                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 10259                                                                                                                  Income index
## 10276                                                                                         Net migration rate (per 1,000 people)
## 10299                                                                               Rural population with access to electricity (%)
## 10301                                                       Total debt service (% of exports of goods, services and primary income)
## 10302                                                                                                Exports and imports (% of GDP)
## 10303                                                                             Foreign direct investment, net inflows (% of GDP)
## 10304                                                                       Net official development assistance received (% of GNI)
## 10305                                                                                              Private capital flows (% of GDP)
## 10306                                                                                               Remittances, inflows (% of GDP)
## 10311                                                                         Labour force participation rate (% ages 15 and older)
## 10312                                                                 Labour force participation rate (% ages 15 and older), female
## 10313                                                                   Labour force participation rate (% ages 15 and older), male
## 10320                                                                                                 Human Development Index (HDI)
## 10321                                                                                                            Median age (years)
## 10322                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 10323                                                                                              Population ages 15–64 (millions)
## 10324                                                                                       Population ages 65 and older (millions)
## 10325                                                                                             Population under age 5 (millions)
## 10326                                                                                    Sex ratio at birth (male to female births)
## 10327                                                                                                   Total population (millions)
## 10328                                                                                                          Urban population (%)
## 10329                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 10330                                                                                                               Education index
## 10331                                                                                           Expected years of schooling (years)
## 10332                                                                                   Expected years of schooling, female (years)
## 10333                                                                                     Expected years of schooling, male (years)
## 10336                                                           Gross enrolment ratio, primary (% of primary school-age population)
## 10337                                                       Gross enrolment ratio, secondary (% of secondary school-age population)
## 10338                                                         Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 10340                                                                                               Mean years of schooling (years)
## 10341                                                                                       Mean years of schooling, female (years)
## 10342                                                                                         Mean years of schooling, male (years)
## 10343                                                       Population with at least some secondary education (% ages 25 and older)
## 10344                                               Population with at least some secondary education, female (% ages 25 and older)
## 10345                                                 Population with at least some secondary education, male (% ages 25 and older)
## 10346                                                                      Primary school dropout rate (% of primary school cohort)
## 10349                                                                      Pupil-teacher ratio, primary school (pupils per teacher)
## 10351                                                                           Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 10352                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 10353                                                                                            Forest area (% of total land area)
## 10360                                                            Renewable energy consumption (% of total final energy consumption)
## 10361                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 10373                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 10383                                                                                          HIV prevalence, adult (% ages 15-49)
## 10384                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 10385                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 10386                                                                                              Life expectancy at birth (years)
## 10387                                                                                      Life expectancy at birth, female (years)
## 10388                                                                                        Life expectancy at birth, male (years)
## 10389                                                                                                         Life expectancy index
## 10390                                                                               Mortality rate, female adult (per 1,000 people)
## 10391                                                                                Mortality rate, infant (per 1,000 live births)
## 10392                                                                                 Mortality rate, male adult (per 1,000 people)
## 10393                                                                            Mortality rate, under-five (per 1,000 live births)
## 10402                                                                       Domestic credit provided by financial sector (% of GDP)
## 10403                                                                                                   GDP per capita (2011 PPP $)
## 10404                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 10406                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 10407                                                                                                                  Income index
## 10424                                                                                         Net migration rate (per 1,000 people)
## 10448                                                                               Rural population with access to electricity (%)
## 10450                                                       Total debt service (% of exports of goods, services and primary income)
## 10452                                                                             Foreign direct investment, net inflows (% of GDP)
## 10453                                                                       Net official development assistance received (% of GNI)
## 10454                                                                                              Private capital flows (% of GDP)
## 10455                                                                                               Remittances, inflows (% of GDP)
## 10459                                                                         Labour force participation rate (% ages 15 and older)
## 10460                                                                 Labour force participation rate (% ages 15 and older), female
## 10461                                                                   Labour force participation rate (% ages 15 and older), male
## 10468                                                                                                            Median age (years)
## 10469                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 10470                                                                                              Population ages 15–64 (millions)
## 10471                                                                                       Population ages 65 and older (millions)
## 10472                                                                                             Population under age 5 (millions)
## 10473                                                                                    Sex ratio at birth (male to female births)
## 10474                                                                                                   Total population (millions)
## 10475                                                                                                          Urban population (%)
## 10476                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 10487                                                                                               Mean years of schooling (years)
## 10488                                                                                       Mean years of schooling, female (years)
## 10489                                                                                         Mean years of schooling, male (years)
## 10490                                                       Population with at least some secondary education (% ages 25 and older)
## 10491                                               Population with at least some secondary education, female (% ages 25 and older)
## 10492                                                 Population with at least some secondary education, male (% ages 25 and older)
## 10497                                                                           Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 10498                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 10499                                                                                            Forest area (% of total land area)
## 10505                                                            Renewable energy consumption (% of total final energy consumption)
## 10506                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 10518                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 10530                                                                                          HIV prevalence, adult (% ages 15-49)
## 10533                                                                                              Life expectancy at birth (years)
## 10534                                                                                      Life expectancy at birth, female (years)
## 10535                                                                                        Life expectancy at birth, male (years)
## 10536                                                                                                         Life expectancy index
## 10538                                                                               Mortality rate, female adult (per 1,000 people)
## 10539                                                                                Mortality rate, infant (per 1,000 live births)
## 10540                                                                                 Mortality rate, male adult (per 1,000 people)
## 10541                                                                            Mortality rate, under-five (per 1,000 live births)
## 10551                                                                                                   GDP per capita (2011 PPP $)
## 10552                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 10554                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 10555                                                                                                                  Income index
## 10570                                                                                         Net migration rate (per 1,000 people)
## 10592                                                                               Rural population with access to electricity (%)
## 10596                                                                             Foreign direct investment, net inflows (% of GDP)
## 10604                                                                         Labour force participation rate (% ages 15 and older)
## 10605                                                                 Labour force participation rate (% ages 15 and older), female
## 10606                                                                   Labour force participation rate (% ages 15 and older), male
## 10613                                                                                                            Median age (years)
## 10614                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 10615                                                                                              Population ages 15–64 (millions)
## 10616                                                                                       Population ages 65 and older (millions)
## 10617                                                                                             Population under age 5 (millions)
## 10618                                                                                    Sex ratio at birth (male to female births)
## 10619                                                                                                   Total population (millions)
## 10620                                                                                                          Urban population (%)
## 10621                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 10623                                                                                           Expected years of schooling (years)
## 10624                                                                                   Expected years of schooling, female (years)
## 10625                                                                                     Expected years of schooling, male (years)
## 10628                                                           Gross enrolment ratio, primary (% of primary school-age population)
## 10629                                                       Gross enrolment ratio, secondary (% of secondary school-age population)
## 10630                                                         Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 10635                                                                      Primary school dropout rate (% of primary school cohort)
## 10637                                                                      Pupil-teacher ratio, primary school (pupils per teacher)
## 10638                                                      Survival rate to the last grade of lower secondary general education (%)
## 10639                                                                           Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 10640                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 10641                                                                                            Forest area (% of total land area)
## 10647                                                            Renewable energy consumption (% of total final energy consumption)
## 10648                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 10660                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 10670                                                                                          HIV prevalence, adult (% ages 15-49)
## 10671                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 10672                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 10673                                                                                              Life expectancy at birth (years)
## 10674                                                                                      Life expectancy at birth, female (years)
## 10675                                                                                        Life expectancy at birth, male (years)
## 10676                                                                                                         Life expectancy index
## 10678                                                                               Mortality rate, female adult (per 1,000 people)
## 10679                                                                                Mortality rate, infant (per 1,000 live births)
## 10680                                                                                 Mortality rate, male adult (per 1,000 people)
## 10681                                                                            Mortality rate, under-five (per 1,000 live births)
## 10690                                                                       Domestic credit provided by financial sector (% of GDP)
## 10691                                                                                                   GDP per capita (2011 PPP $)
## 10692                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 10693                                                                                      Gross fixed capital formation (% of GDP)
## 10694                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 10695                                                                                                                  Income index
## 10712                                                                                         Net migration rate (per 1,000 people)
## 10727                                                                                               Adjusted net savings (% of GNI)
## 10729                                                                                            Gross capital formation (% of GDP)
## 10736                                                                               Rural population with access to electricity (%)
## 10738                                                       Total debt service (% of exports of goods, services and primary income)
## 10739                                                                                                Exports and imports (% of GDP)
## 10740                                                                             Foreign direct investment, net inflows (% of GDP)
## 10741                                                                       Net official development assistance received (% of GNI)
## 10742                                                                                              Private capital flows (% of GDP)
## 10743                                                                                               Remittances, inflows (% of GDP)
## 10747                                                                         Labour force participation rate (% ages 15 and older)
## 10748                                                                 Labour force participation rate (% ages 15 and older), female
## 10749                                                                   Labour force participation rate (% ages 15 and older), male
## 10756                                                                                                 Human Development Index (HDI)
## 10757                                                                                                            Median age (years)
## 10758                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 10759                                                                                              Population ages 15–64 (millions)
## 10760                                                                                       Population ages 65 and older (millions)
## 10761                                                                                             Population under age 5 (millions)
## 10762                                                                                    Sex ratio at birth (male to female births)
## 10763                                                                                                   Total population (millions)
## 10764                                                                                                          Urban population (%)
## 10765                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 10766                                                                                                               Education index
## 10767                                                                                           Expected years of schooling (years)
## 10768                                                                                   Expected years of schooling, female (years)
## 10769                                                                                     Expected years of schooling, male (years)
## 10770                                                                                Government expenditure on education (% of GDP)
## 10772                                                           Gross enrolment ratio, primary (% of primary school-age population)
## 10773                                                       Gross enrolment ratio, secondary (% of secondary school-age population)
## 10774                                                         Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 10776                                                                                               Mean years of schooling (years)
## 10777                                                                                       Mean years of schooling, female (years)
## 10778                                                                                         Mean years of schooling, male (years)
## 10779                                                       Population with at least some secondary education (% ages 25 and older)
## 10780                                               Population with at least some secondary education, female (% ages 25 and older)
## 10781                                                 Population with at least some secondary education, male (% ages 25 and older)
## 10782                                                                      Primary school dropout rate (% of primary school cohort)
## 10786                                                                           Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 10787                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 10788                                                                                            Forest area (% of total land area)
## 10794                                                            Renewable energy consumption (% of total final energy consumption)
## 10795                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 10806                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 10817                                                                                          HIV prevalence, adult (% ages 15-49)
## 10818                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 10819                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 10820                                                                                              Life expectancy at birth (years)
## 10821                                                                                      Life expectancy at birth, female (years)
## 10822                                                                                        Life expectancy at birth, male (years)
## 10823                                                                                                         Life expectancy index
## 10825                                                                               Mortality rate, female adult (per 1,000 people)
## 10826                                                                                Mortality rate, infant (per 1,000 live births)
## 10827                                                                                 Mortality rate, male adult (per 1,000 people)
## 10828                                                                            Mortality rate, under-five (per 1,000 live births)
## 10837                                                                       Domestic credit provided by financial sector (% of GDP)
## 10838                                                                                                   GDP per capita (2011 PPP $)
## 10839                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 10840                                                                                      Gross fixed capital formation (% of GDP)
## 10841                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 10842                                                                                                                  Income index
## 10859                                                                                         Net migration rate (per 1,000 people)
## 10874                                                                                               Adjusted net savings (% of GNI)
## 10876                                                                                            Gross capital formation (% of GDP)
## 10884                                                       Total debt service (% of exports of goods, services and primary income)
## 10885                                                                                                Exports and imports (% of GDP)
## 10886                                                                             Foreign direct investment, net inflows (% of GDP)
## 10887                                                                       Net official development assistance received (% of GNI)
## 10888                                                                                              Private capital flows (% of GDP)
## 10894                                                                         Labour force participation rate (% ages 15 and older)
## 10895                                                                 Labour force participation rate (% ages 15 and older), female
## 10896                                                                   Labour force participation rate (% ages 15 and older), male
## 10902                                                                                                 Human Development Index (HDI)
## 10903                                                                                                            Median age (years)
## 10904                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 10905                                                                                              Population ages 15–64 (millions)
## 10906                                                                                       Population ages 65 and older (millions)
## 10907                                                                                             Population under age 5 (millions)
## 10908                                                                                    Sex ratio at birth (male to female births)
## 10909                                                                                                   Total population (millions)
## 10910                                                                                                          Urban population (%)
## 10911                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 10912                                                                                                               Education index
## 10913                                                                                           Expected years of schooling (years)
## 10917                                                              Gross enrolment ratio, pre-primary (% of preschool-age children)
## 10918                                                           Gross enrolment ratio, primary (% of primary school-age population)
## 10919                                                       Gross enrolment ratio, secondary (% of secondary school-age population)
## 10920                                                         Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 10922                                                                                               Mean years of schooling (years)
## 10923                                                                                       Mean years of schooling, female (years)
## 10924                                                                                         Mean years of schooling, male (years)
## 10925                                                       Population with at least some secondary education (% ages 25 and older)
## 10926                                               Population with at least some secondary education, female (% ages 25 and older)
## 10927                                                 Population with at least some secondary education, male (% ages 25 and older)
## 10928                                                                      Primary school dropout rate (% of primary school cohort)
## 10931                                                                      Pupil-teacher ratio, primary school (pupils per teacher)
## 10933                                                                           Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 10934                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 10935                                                                                            Forest area (% of total land area)
## 10937                                                                Fossil fuel energy consumption (% of total energy consumption)
## 10938                                                                Fresh water withdrawals (% of total renewable water resources)
## 10942                                                            Renewable energy consumption (% of total final energy consumption)
## 10943                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 10955                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 10956                                                                 Proportion of births attended by skilled health personnel (%)
## 10964                                                                                          HIV prevalence, adult (% ages 15-49)
## 10965                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 10966                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 10967                                                                                              Life expectancy at birth (years)
## 10968                                                                                      Life expectancy at birth, female (years)
## 10969                                                                                        Life expectancy at birth, male (years)
## 10970                                                                                                         Life expectancy index
## 10972                                                                               Mortality rate, female adult (per 1,000 people)
## 10973                                                                                Mortality rate, infant (per 1,000 live births)
## 10974                                                                                 Mortality rate, male adult (per 1,000 people)
## 10975                                                                            Mortality rate, under-five (per 1,000 live births)
## 10983                                                                       Domestic credit provided by financial sector (% of GDP)
## 10984                                                                                                   GDP per capita (2011 PPP $)
## 10985                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 10986                                                                                      Gross fixed capital formation (% of GDP)
## 10987                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 10988                                                                                                                  Income index
## 11003                                                                                         Net migration rate (per 1,000 people)
## 11005                                                                                               Adjusted net savings (% of GNI)
## 11007                                                                                            Gross capital formation (% of GDP)
## 11013                                                                               Rural population with access to electricity (%)
## 11015                                                       Total debt service (% of exports of goods, services and primary income)
## 11016                                                                                                Exports and imports (% of GDP)
## 11017                                                                             Foreign direct investment, net inflows (% of GDP)
## 11018                                                                       Net official development assistance received (% of GNI)
## 11019                                                                                              Private capital flows (% of GDP)
## 11020                                                                                               Remittances, inflows (% of GDP)
## 11024                                                                         Labour force participation rate (% ages 15 and older)
## 11025                                                                 Labour force participation rate (% ages 15 and older), female
## 11026                                                                   Labour force participation rate (% ages 15 and older), male
## 11033                                                                                                 Human Development Index (HDI)
## 11034                                                                                                            Median age (years)
## 11035                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 11036                                                                                              Population ages 15–64 (millions)
## 11037                                                                                       Population ages 65 and older (millions)
## 11038                                                                                             Population under age 5 (millions)
## 11039                                                                                    Sex ratio at birth (male to female births)
## 11040                                                                                                   Total population (millions)
## 11041                                                                                                          Urban population (%)
## 11042                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 11043                                                                                                               Education index
## 11044                                                                                           Expected years of schooling (years)
## 11045                                                                                   Expected years of schooling, female (years)
## 11046                                                                                     Expected years of schooling, male (years)
## 11049                                                           Gross enrolment ratio, primary (% of primary school-age population)
## 11050                                                       Gross enrolment ratio, secondary (% of secondary school-age population)
## 11051                                                         Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 11053                                                                                               Mean years of schooling (years)
## 11054                                                                                       Mean years of schooling, female (years)
## 11055                                                                                         Mean years of schooling, male (years)
## 11056                                                       Population with at least some secondary education (% ages 25 and older)
## 11057                                               Population with at least some secondary education, female (% ages 25 and older)
## 11058                                                 Population with at least some secondary education, male (% ages 25 and older)
## 11061                                                                      Pupil-teacher ratio, primary school (pupils per teacher)
## 11063                                                                           Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 11064                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 11065                                                                                            Forest area (% of total land area)
## 11071                                                            Renewable energy consumption (% of total final energy consumption)
## 11072                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 11084                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 11095                                                                                          HIV prevalence, adult (% ages 15-49)
## 11096                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 11097                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 11098                                                                                              Life expectancy at birth (years)
## 11099                                                                                      Life expectancy at birth, female (years)
## 11100                                                                                        Life expectancy at birth, male (years)
## 11101                                                                                                         Life expectancy index
## 11103                                                                               Mortality rate, female adult (per 1,000 people)
## 11104                                                                                Mortality rate, infant (per 1,000 live births)
## 11105                                                                                 Mortality rate, male adult (per 1,000 people)
## 11106                                                                            Mortality rate, under-five (per 1,000 live births)
## 11115                                                                       Domestic credit provided by financial sector (% of GDP)
## 11116                                                                                                   GDP per capita (2011 PPP $)
## 11117                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 11118                                                                                      Gross fixed capital formation (% of GDP)
## 11119                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 11120                                                                                                                  Income index
## 11137                                                                                         Net migration rate (per 1,000 people)
## 11152                                                                                               Adjusted net savings (% of GNI)
## 11154                                                                                            Gross capital formation (% of GDP)
## 11163                                                       Total debt service (% of exports of goods, services and primary income)
## 11164                                                                                                Exports and imports (% of GDP)
## 11165                                                                             Foreign direct investment, net inflows (% of GDP)
## 11166                                                                       Net official development assistance received (% of GNI)
## 11167                                                                                              Private capital flows (% of GDP)
## 11168                                                                                               Remittances, inflows (% of GDP)
## 11173                                                                         Labour force participation rate (% ages 15 and older)
## 11174                                                                 Labour force participation rate (% ages 15 and older), female
## 11175                                                                   Labour force participation rate (% ages 15 and older), male
## 11182                                                                                                 Human Development Index (HDI)
## 11183                                                                                                            Median age (years)
## 11184                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 11185                                                                                              Population ages 15–64 (millions)
## 11186                                                                                       Population ages 65 and older (millions)
## 11187                                                                                             Population under age 5 (millions)
## 11188                                                                                    Sex ratio at birth (male to female births)
## 11189                                                                                                   Total population (millions)
## 11190                                                                                                          Urban population (%)
## 11191                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 11192                                                                                                               Education index
## 11193                                                                                           Expected years of schooling (years)
## 11194                                                                                   Expected years of schooling, female (years)
## 11195                                                                                     Expected years of schooling, male (years)
## 11196                                                                                Government expenditure on education (% of GDP)
## 11197                                                              Gross enrolment ratio, pre-primary (% of preschool-age children)
## 11198                                                           Gross enrolment ratio, primary (% of primary school-age population)
## 11199                                                       Gross enrolment ratio, secondary (% of secondary school-age population)
## 11200                                                         Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 11202                                                                                               Mean years of schooling (years)
## 11203                                                                                       Mean years of schooling, female (years)
## 11204                                                                                         Mean years of schooling, male (years)
## 11205                                                       Population with at least some secondary education (% ages 25 and older)
## 11206                                               Population with at least some secondary education, female (% ages 25 and older)
## 11207                                                 Population with at least some secondary education, male (% ages 25 and older)
## 11213                                                                      Pupil-teacher ratio, primary school (pupils per teacher)
## 11214                                                      Survival rate to the last grade of lower secondary general education (%)
## 11215                                                                           Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 11216                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 11217                                                                                            Forest area (% of total land area)
## 11219                                                                Fossil fuel energy consumption (% of total energy consumption)
## 11224                                                            Renewable energy consumption (% of total final energy consumption)
## 11225                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 11235                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 11245                                                                                          HIV prevalence, adult (% ages 15-49)
## 11246                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 11247                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 11248                                                                                              Life expectancy at birth (years)
## 11249                                                                                      Life expectancy at birth, female (years)
## 11250                                                                                        Life expectancy at birth, male (years)
## 11251                                                                                                         Life expectancy index
## 11252                                                                               Mortality rate, female adult (per 1,000 people)
## 11253                                                                                Mortality rate, infant (per 1,000 live births)
## 11254                                                                                 Mortality rate, male adult (per 1,000 people)
## 11255                                                                            Mortality rate, under-five (per 1,000 live births)
## 11263                                                                                                   GDP per capita (2011 PPP $)
## 11264                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 11265                                                                                      Gross fixed capital formation (% of GDP)
## 11266                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 11267                                                                                                                  Income index
## 11285                                                                                         Net migration rate (per 1,000 people)
## 11287                                                                                            Gross capital formation (% of GDP)
## 11292                                                                               Rural population with access to electricity (%)
## 11294                                                                                                Exports and imports (% of GDP)
## 11295                                                                             Foreign direct investment, net inflows (% of GDP)
## 11296                                                                       Net official development assistance received (% of GNI)
## 11297                                                                                              Private capital flows (% of GDP)
## 11298                                                                                               Remittances, inflows (% of GDP)
## 11302                                                                         Labour force participation rate (% ages 15 and older)
## 11303                                                                 Labour force participation rate (% ages 15 and older), female
## 11304                                                                   Labour force participation rate (% ages 15 and older), male
## 11311                                                                                                 Human Development Index (HDI)
## 11312                                                                                                            Median age (years)
## 11313                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 11314                                                                                              Population ages 15–64 (millions)
## 11315                                                                                       Population ages 65 and older (millions)
## 11316                                                                                             Population under age 5 (millions)
## 11317                                                                                    Sex ratio at birth (male to female births)
## 11318                                                                                                   Total population (millions)
## 11319                                                                                                          Urban population (%)
## 11320                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 11321                                                                                                               Education index
## 11322                                                                                           Expected years of schooling (years)
## 11323                                                                                   Expected years of schooling, female (years)
## 11324                                                                                     Expected years of schooling, male (years)
## 11327                                                           Gross enrolment ratio, primary (% of primary school-age population)
## 11328                                                       Gross enrolment ratio, secondary (% of secondary school-age population)
## 11329                                                         Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 11331                                                                                               Mean years of schooling (years)
## 11332                                                                                       Mean years of schooling, female (years)
## 11333                                                                                         Mean years of schooling, male (years)
## 11334                                                       Population with at least some secondary education (% ages 25 and older)
## 11335                                               Population with at least some secondary education, female (% ages 25 and older)
## 11336                                                 Population with at least some secondary education, male (% ages 25 and older)
## 11337                                                                      Primary school dropout rate (% of primary school cohort)
## 11339                                                                      Pupil-teacher ratio, primary school (pupils per teacher)
## 11341                                                                           Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 11342                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 11343                                                                                            Forest area (% of total land area)
## 11349                                                            Renewable energy consumption (% of total final energy consumption)
## 11350                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 11362                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 11372                                                                                          HIV prevalence, adult (% ages 15-49)
## 11373                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 11374                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 11375                                                                                              Life expectancy at birth (years)
## 11376                                                                                      Life expectancy at birth, female (years)
## 11377                                                                                        Life expectancy at birth, male (years)
## 11378                                                                                                         Life expectancy index
## 11380                                                                               Mortality rate, female adult (per 1,000 people)
## 11381                                                                                Mortality rate, infant (per 1,000 live births)
## 11382                                                                                 Mortality rate, male adult (per 1,000 people)
## 11383                                                                            Mortality rate, under-five (per 1,000 live births)
## 11392                                                                       Domestic credit provided by financial sector (% of GDP)
## 11393                                                                                                   GDP per capita (2011 PPP $)
## 11394                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 11395                                                                                      Gross fixed capital formation (% of GDP)
## 11396                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 11397                                                                                                                  Income index
## 11414                                                                                         Net migration rate (per 1,000 people)
## 11429                                                                                               Adjusted net savings (% of GNI)
## 11431                                                                                            Gross capital formation (% of GDP)
## 11439                                                       Total debt service (% of exports of goods, services and primary income)
## 11440                                                                                                Exports and imports (% of GDP)
## 11441                                                                             Foreign direct investment, net inflows (% of GDP)
## 11442                                                                       Net official development assistance received (% of GNI)
## 11443                                                                                              Private capital flows (% of GDP)
## 11444                                                                                               Remittances, inflows (% of GDP)
## 11449                                                                         Labour force participation rate (% ages 15 and older)
## 11450                                                                 Labour force participation rate (% ages 15 and older), female
## 11451                                                                   Labour force participation rate (% ages 15 and older), male
## 11458                                                                                                 Human Development Index (HDI)
## 11459                                                                                                            Median age (years)
## 11460                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 11461                                                                                              Population ages 15–64 (millions)
## 11462                                                                                       Population ages 65 and older (millions)
## 11463                                                                                             Population under age 5 (millions)
## 11464                                                                                    Sex ratio at birth (male to female births)
## 11465                                                                                                   Total population (millions)
## 11466                                                                                                          Urban population (%)
## 11467                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 11468                                                                                                               Education index
## 11469                                                                                           Expected years of schooling (years)
## 11470                                                                                   Expected years of schooling, female (years)
## 11471                                                                                     Expected years of schooling, male (years)
## 11472                                                                                Government expenditure on education (% of GDP)
## 11473                                                              Gross enrolment ratio, pre-primary (% of preschool-age children)
## 11474                                                           Gross enrolment ratio, primary (% of primary school-age population)
## 11475                                                       Gross enrolment ratio, secondary (% of secondary school-age population)
## 11476                                                         Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 11477                                                                                    Literacy rate, adult (% ages 15 and older)
## 11478                                                                                               Mean years of schooling (years)
## 11479                                                                                       Mean years of schooling, female (years)
## 11480                                                                                         Mean years of schooling, male (years)
## 11481                                                       Population with at least some secondary education (% ages 25 and older)
## 11482                                               Population with at least some secondary education, female (% ages 25 and older)
## 11483                                                 Population with at least some secondary education, male (% ages 25 and older)
## 11484                                                                      Primary school dropout rate (% of primary school cohort)
## 11487                                                                      Pupil-teacher ratio, primary school (pupils per teacher)
## 11488                                                      Survival rate to the last grade of lower secondary general education (%)
## 11489                                                                           Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 11490                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 11491                                                                                            Forest area (% of total land area)
## 11493                                                                Fossil fuel energy consumption (% of total energy consumption)
## 11494                                                                Fresh water withdrawals (% of total renewable water resources)
## 11498                                                            Renewable energy consumption (% of total final energy consumption)
## 11499                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 11509                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 11510                                                                 Proportion of births attended by skilled health personnel (%)
## 11518                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 11519                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 11520                                                                                              Life expectancy at birth (years)
## 11521                                                                                      Life expectancy at birth, female (years)
## 11522                                                                                        Life expectancy at birth, male (years)
## 11523                                                                                                         Life expectancy index
## 11524                                                                               Mortality rate, female adult (per 1,000 people)
## 11525                                                                                Mortality rate, infant (per 1,000 live births)
## 11526                                                                                 Mortality rate, male adult (per 1,000 people)
## 11527                                                                            Mortality rate, under-five (per 1,000 live births)
## 11535                                                                       Domestic credit provided by financial sector (% of GDP)
## 11536                                                                                                   GDP per capita (2011 PPP $)
## 11537                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 11538                                                                                      Gross fixed capital formation (% of GDP)
## 11539                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 11540                                                                                                                  Income index
## 11558                                                                                         Net migration rate (per 1,000 people)
## 11560                                                                                               Adjusted net savings (% of GNI)
## 11562                                                                                            Gross capital formation (% of GDP)
## 11567                                                                               Rural population with access to electricity (%)
## 11569                                                       Total debt service (% of exports of goods, services and primary income)
## 11570                                                                                                Exports and imports (% of GDP)
## 11571                                                                             Foreign direct investment, net inflows (% of GDP)
## 11572                                                                       Net official development assistance received (% of GNI)
## 11573                                                                                              Private capital flows (% of GDP)
## 11578                                                                         Labour force participation rate (% ages 15 and older)
## 11579                                                                 Labour force participation rate (% ages 15 and older), female
## 11580                                                                   Labour force participation rate (% ages 15 and older), male
## 11586                                                                                                 Human Development Index (HDI)
## 11587                                                                                                            Median age (years)
## 11588                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 11589                                                                                              Population ages 15–64 (millions)
## 11590                                                                                       Population ages 65 and older (millions)
## 11591                                                                                             Population under age 5 (millions)
## 11592                                                                                    Sex ratio at birth (male to female births)
## 11593                                                                                                   Total population (millions)
## 11594                                                                                                          Urban population (%)
## 11595                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 11596                                                                                                               Education index
## 11597                                                                                           Expected years of schooling (years)
## 11598                                                                                   Expected years of schooling, female (years)
## 11599                                                                                     Expected years of schooling, male (years)
## 11600                                                                                Government expenditure on education (% of GDP)
## 11601                                                              Gross enrolment ratio, pre-primary (% of preschool-age children)
## 11602                                                           Gross enrolment ratio, primary (% of primary school-age population)
## 11603                                                       Gross enrolment ratio, secondary (% of secondary school-age population)
## 11604                                                         Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 11605                                                                                    Literacy rate, adult (% ages 15 and older)
## 11606                                                                                               Mean years of schooling (years)
## 11607                                                                                       Mean years of schooling, female (years)
## 11608                                                                                         Mean years of schooling, male (years)
## 11609                                                       Population with at least some secondary education (% ages 25 and older)
## 11610                                               Population with at least some secondary education, female (% ages 25 and older)
## 11611                                                 Population with at least some secondary education, male (% ages 25 and older)
## 11612                                                                      Primary school dropout rate (% of primary school cohort)
## 11618                                                                      Pupil-teacher ratio, primary school (pupils per teacher)
## 11619                                                      Survival rate to the last grade of lower secondary general education (%)
## 11620                                                                           Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 11621                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 11622                                                                                            Forest area (% of total land area)
## 11624                                                                Fossil fuel energy consumption (% of total energy consumption)
## 11629                                                            Renewable energy consumption (% of total final energy consumption)
## 11630                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 11643                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 11644                                                                 Proportion of births attended by skilled health personnel (%)
## 11654                                                                                          HIV prevalence, adult (% ages 15-49)
## 11655                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 11656                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 11657                                                                                              Life expectancy at birth (years)
## 11658                                                                                      Life expectancy at birth, female (years)
## 11659                                                                                        Life expectancy at birth, male (years)
## 11660                                                                                                         Life expectancy index
## 11662                                                                               Mortality rate, female adult (per 1,000 people)
## 11663                                                                                Mortality rate, infant (per 1,000 live births)
## 11664                                                                                 Mortality rate, male adult (per 1,000 people)
## 11665                                                                            Mortality rate, under-five (per 1,000 live births)
## 11674                                                                       Domestic credit provided by financial sector (% of GDP)
## 11675                                                                                                   GDP per capita (2011 PPP $)
## 11676                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 11677                                                                                      Gross fixed capital formation (% of GDP)
## 11678                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 11679                                                                                                                  Income index
## 11697                                                                                         Net migration rate (per 1,000 people)
## 11712                                                                                               Adjusted net savings (% of GNI)
## 11714                                                                                            Gross capital formation (% of GDP)
## 11721                                                                               Rural population with access to electricity (%)
## 11723                                                       Total debt service (% of exports of goods, services and primary income)
## 11724                                                                                                Exports and imports (% of GDP)
## 11725                                                                             Foreign direct investment, net inflows (% of GDP)
## 11726                                                                       Net official development assistance received (% of GNI)
## 11727                                                                                              Private capital flows (% of GDP)
## 11728                                                                                               Remittances, inflows (% of GDP)
## 11733                                                                         Labour force participation rate (% ages 15 and older)
## 11734                                                                 Labour force participation rate (% ages 15 and older), female
## 11735                                                                   Labour force participation rate (% ages 15 and older), male
## 11742                                                                                                 Human Development Index (HDI)
## 11743                                                                                                            Median age (years)
## 11744                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 11745                                                                                              Population ages 15–64 (millions)
## 11746                                                                                       Population ages 65 and older (millions)
## 11747                                                                                             Population under age 5 (millions)
## 11748                                                                                    Sex ratio at birth (male to female births)
## 11749                                                                                                   Total population (millions)
## 11750                                                                                                          Urban population (%)
## 11751                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 11752                                                                                                               Education index
## 11753                                                                                           Expected years of schooling (years)
## 11757                                                              Gross enrolment ratio, pre-primary (% of preschool-age children)
## 11758                                                           Gross enrolment ratio, primary (% of primary school-age population)
## 11759                                                       Gross enrolment ratio, secondary (% of secondary school-age population)
## 11760                                                         Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 11762                                                                                               Mean years of schooling (years)
## 11763                                                                                       Mean years of schooling, female (years)
## 11764                                                                                         Mean years of schooling, male (years)
## 11765                                                       Population with at least some secondary education (% ages 25 and older)
## 11766                                               Population with at least some secondary education, female (% ages 25 and older)
## 11767                                                 Population with at least some secondary education, male (% ages 25 and older)
## 11771                                                                      Pupil-teacher ratio, primary school (pupils per teacher)
## 11773                                                                           Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 11774                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 11775                                                                                            Forest area (% of total land area)
## 11777                                                                Fossil fuel energy consumption (% of total energy consumption)
## 11782                                                            Renewable energy consumption (% of total final energy consumption)
## 11783                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 11796                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 11797                                                                 Proportion of births attended by skilled health personnel (%)
## 11806                                                                                          HIV prevalence, adult (% ages 15-49)
## 11807                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 11808                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 11809                                                                                              Life expectancy at birth (years)
## 11810                                                                                      Life expectancy at birth, female (years)
## 11811                                                                                        Life expectancy at birth, male (years)
## 11812                                                                                                         Life expectancy index
## 11813                                                                               Mortality rate, female adult (per 1,000 people)
## 11814                                                                                Mortality rate, infant (per 1,000 live births)
## 11815                                                                                 Mortality rate, male adult (per 1,000 people)
## 11816                                                                            Mortality rate, under-five (per 1,000 live births)
## 11826                                                                                                   GDP per capita (2011 PPP $)
## 11827                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 11828                                                                                      Gross fixed capital formation (% of GDP)
## 11829                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 11830                                                                                                                  Income index
## 11847                                                                                         Net migration rate (per 1,000 people)
## 11862                                                                                               Adjusted net savings (% of GNI)
## 11864                                                                                            Gross capital formation (% of GDP)
## 11871                                                                               Rural population with access to electricity (%)
## 11874                                                                                                Exports and imports (% of GDP)
## 11876                                                                       Net official development assistance received (% of GNI)
## 11883                                                                         Labour force participation rate (% ages 15 and older)
## 11884                                                                 Labour force participation rate (% ages 15 and older), female
## 11885                                                                   Labour force participation rate (% ages 15 and older), male
## 11892                                                                                                 Human Development Index (HDI)
## 11893                                                                                                            Median age (years)
## 11894                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 11895                                                                                              Population ages 15–64 (millions)
## 11896                                                                                       Population ages 65 and older (millions)
## 11897                                                                                             Population under age 5 (millions)
## 11898                                                                                    Sex ratio at birth (male to female births)
## 11899                                                                                                   Total population (millions)
## 11900                                                                                                          Urban population (%)
## 11901                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 11902                                                                                                               Education index
## 11903                                                                                           Expected years of schooling (years)
## 11904                                                                                   Expected years of schooling, female (years)
## 11905                                                                                     Expected years of schooling, male (years)
## 11906                                                                                Government expenditure on education (% of GDP)
## 11907                                                              Gross enrolment ratio, pre-primary (% of preschool-age children)
## 11908                                                           Gross enrolment ratio, primary (% of primary school-age population)
## 11909                                                       Gross enrolment ratio, secondary (% of secondary school-age population)
## 11910                                                         Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 11912                                                                                               Mean years of schooling (years)
## 11913                                                                                       Mean years of schooling, female (years)
## 11914                                                                                         Mean years of schooling, male (years)
## 11915                                                       Population with at least some secondary education (% ages 25 and older)
## 11916                                               Population with at least some secondary education, female (% ages 25 and older)
## 11917                                                 Population with at least some secondary education, male (% ages 25 and older)
## 11918                                                                      Primary school dropout rate (% of primary school cohort)
## 11921                                                                      Pupil-teacher ratio, primary school (pupils per teacher)
## 11923                                                                           Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 11924                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 11925                                                                                            Forest area (% of total land area)
## 11927                                                                Fossil fuel energy consumption (% of total energy consumption)
## 11932                                                            Renewable energy consumption (% of total final energy consumption)
## 11933                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 11945                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 11955                                                                                          HIV prevalence, adult (% ages 15-49)
## 11956                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 11957                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 11958                                                                                              Life expectancy at birth (years)
## 11959                                                                                      Life expectancy at birth, female (years)
## 11960                                                                                        Life expectancy at birth, male (years)
## 11961                                                                                                         Life expectancy index
## 11962                                                                               Mortality rate, female adult (per 1,000 people)
## 11963                                                                                Mortality rate, infant (per 1,000 live births)
## 11964                                                                                 Mortality rate, male adult (per 1,000 people)
## 11965                                                                            Mortality rate, under-five (per 1,000 live births)
## 11974                                                                       Domestic credit provided by financial sector (% of GDP)
## 11975                                                                                                   GDP per capita (2011 PPP $)
## 11976                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 11977                                                                                      Gross fixed capital formation (% of GDP)
## 11978                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 11979                                                                                                                  Income index
## 11997                                                                                         Net migration rate (per 1,000 people)
## 12012                                                                                               Adjusted net savings (% of GNI)
## 12014                                                                                            Gross capital formation (% of GDP)
## 12019                                                                               Rural population with access to electricity (%)
## 12021                                                       Total debt service (% of exports of goods, services and primary income)
## 12022                                                                                                Exports and imports (% of GDP)
## 12023                                                                             Foreign direct investment, net inflows (% of GDP)
## 12024                                                                       Net official development assistance received (% of GNI)
## 12025                                                                                              Private capital flows (% of GDP)
## 12026                                                                                               Remittances, inflows (% of GDP)
## 12030                                                                         Labour force participation rate (% ages 15 and older)
## 12031                                                                 Labour force participation rate (% ages 15 and older), female
## 12032                                                                   Labour force participation rate (% ages 15 and older), male
## 12038                                                                                                 Human Development Index (HDI)
## 12039                                                                                                            Median age (years)
## 12040                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 12041                                                                                              Population ages 15–64 (millions)
## 12042                                                                                       Population ages 65 and older (millions)
## 12043                                                                                             Population under age 5 (millions)
## 12044                                                                                    Sex ratio at birth (male to female births)
## 12045                                                                                                   Total population (millions)
## 12046                                                                                                          Urban population (%)
## 12047                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 12048                                                                                                               Education index
## 12049                                                                                           Expected years of schooling (years)
## 12050                                                                                   Expected years of schooling, female (years)
## 12051                                                                                     Expected years of schooling, male (years)
## 12054                                                           Gross enrolment ratio, primary (% of primary school-age population)
## 12055                                                       Gross enrolment ratio, secondary (% of secondary school-age population)
## 12058                                                                                               Mean years of schooling (years)
## 12059                                                                                       Mean years of schooling, female (years)
## 12060                                                                                         Mean years of schooling, male (years)
## 12061                                                       Population with at least some secondary education (% ages 25 and older)
## 12064                                                                      Primary school dropout rate (% of primary school cohort)
## 12066                                                                      Pupil-teacher ratio, primary school (pupils per teacher)
## 12068                                                                           Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 12069                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 12070                                                                                            Forest area (% of total land area)
## 12072                                                                Fossil fuel energy consumption (% of total energy consumption)
## 12073                                                                Fresh water withdrawals (% of total renewable water resources)
## 12077                                                            Renewable energy consumption (% of total final energy consumption)
## 12078                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 12091                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 12102                                                                                          HIV prevalence, adult (% ages 15-49)
## 12103                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 12104                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 12105                                                                                              Life expectancy at birth (years)
## 12106                                                                                      Life expectancy at birth, female (years)
## 12107                                                                                        Life expectancy at birth, male (years)
## 12108                                                                                                         Life expectancy index
## 12110                                                                               Mortality rate, female adult (per 1,000 people)
## 12111                                                                                Mortality rate, infant (per 1,000 live births)
## 12112                                                                                 Mortality rate, male adult (per 1,000 people)
## 12113                                                                            Mortality rate, under-five (per 1,000 live births)
## 12122                                                                       Domestic credit provided by financial sector (% of GDP)
## 12123                                                                                                   GDP per capita (2011 PPP $)
## 12124                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 12125                                                                                      Gross fixed capital formation (% of GDP)
## 12126                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 12127                                                                                                                  Income index
## 12144                                                                                         Net migration rate (per 1,000 people)
## 12161                                                                                            Gross capital formation (% of GDP)
## 12168                                                                               Rural population with access to electricity (%)
## 12170                                                       Total debt service (% of exports of goods, services and primary income)
## 12171                                                                                                Exports and imports (% of GDP)
## 12172                                                                             Foreign direct investment, net inflows (% of GDP)
## 12173                                                                       Net official development assistance received (% of GNI)
## 12175                                                                                               Remittances, inflows (% of GDP)
## 12179                                                                         Labour force participation rate (% ages 15 and older)
## 12180                                                                 Labour force participation rate (% ages 15 and older), female
## 12181                                                                   Labour force participation rate (% ages 15 and older), male
## 12188                                                                                                 Human Development Index (HDI)
## 12189                                                                                                            Median age (years)
## 12190                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 12191                                                                                              Population ages 15–64 (millions)
## 12192                                                                                       Population ages 65 and older (millions)
## 12193                                                                                             Population under age 5 (millions)
## 12194                                                                                    Sex ratio at birth (male to female births)
## 12195                                                                                                   Total population (millions)
## 12196                                                                                                          Urban population (%)
## 12197                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 12198                                                                                                               Education index
## 12199                                                                                           Expected years of schooling (years)
## 12200                                                                                   Expected years of schooling, female (years)
## 12201                                                                                     Expected years of schooling, male (years)
## 12203                                                              Gross enrolment ratio, pre-primary (% of preschool-age children)
## 12204                                                           Gross enrolment ratio, primary (% of primary school-age population)
## 12205                                                       Gross enrolment ratio, secondary (% of secondary school-age population)
## 12208                                                                                               Mean years of schooling (years)
## 12209                                                                                       Mean years of schooling, female (years)
## 12210                                                                                         Mean years of schooling, male (years)
## 12211                                                       Population with at least some secondary education (% ages 25 and older)
## 12212                                               Population with at least some secondary education, female (% ages 25 and older)
## 12213                                                 Population with at least some secondary education, male (% ages 25 and older)
## 12218                                                                           Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 12219                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 12220                                                                                            Forest area (% of total land area)
## 12228                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 12239                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 12250                                                                                          HIV prevalence, adult (% ages 15-49)
## 12253                                                                                              Life expectancy at birth (years)
## 12254                                                                                      Life expectancy at birth, female (years)
## 12255                                                                                        Life expectancy at birth, male (years)
## 12256                                                                                                         Life expectancy index
## 12258                                                                               Mortality rate, female adult (per 1,000 people)
## 12259                                                                                Mortality rate, infant (per 1,000 live births)
## 12260                                                                                 Mortality rate, male adult (per 1,000 people)
## 12261                                                                            Mortality rate, under-five (per 1,000 live births)
## 12270                                                                       Domestic credit provided by financial sector (% of GDP)
## 12271                                                                                                   GDP per capita (2011 PPP $)
## 12272                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 12273                                                                                      Gross fixed capital formation (% of GDP)
## 12274                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 12275                                                                                                                  Income index
## 12292                                                                                         Net migration rate (per 1,000 people)
## 12307                                                                                               Adjusted net savings (% of GNI)
## 12309                                                                                            Gross capital formation (% of GDP)
## 12316                                                                               Rural population with access to electricity (%)
## 12318                                                                                                Exports and imports (% of GDP)
## 12319                                                                             Foreign direct investment, net inflows (% of GDP)
## 12320                                                                       Net official development assistance received (% of GNI)
## 12321                                                                                              Private capital flows (% of GDP)
## 12322                                                                                               Remittances, inflows (% of GDP)
## 12326                                                                         Labour force participation rate (% ages 15 and older)
## 12327                                                                 Labour force participation rate (% ages 15 and older), female
## 12328                                                                   Labour force participation rate (% ages 15 and older), male
## 12335                                                                                                 Human Development Index (HDI)
## 12336                                                                                                            Median age (years)
## 12337                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 12338                                                                                              Population ages 15–64 (millions)
## 12339                                                                                       Population ages 65 and older (millions)
## 12340                                                                                             Population under age 5 (millions)
## 12341                                                                                    Sex ratio at birth (male to female births)
## 12342                                                                                                   Total population (millions)
## 12343                                                                                                          Urban population (%)
## 12344                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 12345                                                                                                               Education index
## 12346                                                                                           Expected years of schooling (years)
## 12347                                                                                   Expected years of schooling, female (years)
## 12348                                                                                     Expected years of schooling, male (years)
## 12351                                                           Gross enrolment ratio, primary (% of primary school-age population)
## 12352                                                       Gross enrolment ratio, secondary (% of secondary school-age population)
## 12353                                                         Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 12355                                                                                               Mean years of schooling (years)
## 12356                                                                                       Mean years of schooling, female (years)
## 12357                                                                                         Mean years of schooling, male (years)
## 12358                                                       Population with at least some secondary education (% ages 25 and older)
## 12359                                               Population with at least some secondary education, female (% ages 25 and older)
## 12360                                                 Population with at least some secondary education, male (% ages 25 and older)
## 12364                                                                      Pupil-teacher ratio, primary school (pupils per teacher)
## 12366                                                                           Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 12367                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 12368                                                                                            Forest area (% of total land area)
## 12370                                                                Fossil fuel energy consumption (% of total energy consumption)
## 12375                                                            Renewable energy consumption (% of total final energy consumption)
## 12376                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 12387                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 12398                                                                                          HIV prevalence, adult (% ages 15-49)
## 12399                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 12400                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 12401                                                                                              Life expectancy at birth (years)
## 12402                                                                                      Life expectancy at birth, female (years)
## 12403                                                                                        Life expectancy at birth, male (years)
## 12404                                                                                                         Life expectancy index
## 12406                                                                               Mortality rate, female adult (per 1,000 people)
## 12407                                                                                Mortality rate, infant (per 1,000 live births)
## 12408                                                                                 Mortality rate, male adult (per 1,000 people)
## 12409                                                                            Mortality rate, under-five (per 1,000 live births)
## 12418                                                                       Domestic credit provided by financial sector (% of GDP)
## 12419                                                                                                   GDP per capita (2011 PPP $)
## 12420                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 12421                                                                                      Gross fixed capital formation (% of GDP)
## 12422                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 12423                                                                                                                  Income index
## 12440                                                                                         Net migration rate (per 1,000 people)
## 12455                                                                                               Adjusted net savings (% of GNI)
## 12457                                                                                            Gross capital formation (% of GDP)
## 12466                                                       Total debt service (% of exports of goods, services and primary income)
## 12467                                                                                                Exports and imports (% of GDP)
## 12468                                                                             Foreign direct investment, net inflows (% of GDP)
## 12469                                                                       Net official development assistance received (% of GNI)
## 12470                                                                                              Private capital flows (% of GDP)
## 12476                                                                         Labour force participation rate (% ages 15 and older)
## 12477                                                                 Labour force participation rate (% ages 15 and older), female
## 12478                                                                   Labour force participation rate (% ages 15 and older), male
## 12485                                                                                                 Human Development Index (HDI)
## 12486                                                                                                            Median age (years)
## 12487                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 12488                                                                                              Population ages 15–64 (millions)
## 12489                                                                                       Population ages 65 and older (millions)
## 12490                                                                                             Population under age 5 (millions)
## 12491                                                                                    Sex ratio at birth (male to female births)
## 12492                                                                                                   Total population (millions)
## 12493                                                                                                          Urban population (%)
## 12494                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 12495                                                                                                               Education index
## 12496                                                                                           Expected years of schooling (years)
## 12497                                                                                   Expected years of schooling, female (years)
## 12498                                                                                     Expected years of schooling, male (years)
## 12499                                                                                Government expenditure on education (% of GDP)
## 12500                                                              Gross enrolment ratio, pre-primary (% of preschool-age children)
## 12501                                                           Gross enrolment ratio, primary (% of primary school-age population)
## 12502                                                       Gross enrolment ratio, secondary (% of secondary school-age population)
## 12503                                                         Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 12504                                                                                               Mean years of schooling (years)
## 12505                                                                                       Mean years of schooling, female (years)
## 12506                                                                                         Mean years of schooling, male (years)
## 12507                                                       Population with at least some secondary education (% ages 25 and older)
## 12508                                               Population with at least some secondary education, female (% ages 25 and older)
## 12509                                                 Population with at least some secondary education, male (% ages 25 and older)
## 12514                                                                      Pupil-teacher ratio, primary school (pupils per teacher)
## 12515                                                      Survival rate to the last grade of lower secondary general education (%)
## 12516                                                                           Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 12517                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 12518                                                                                            Forest area (% of total land area)
## 12520                                                                Fossil fuel energy consumption (% of total energy consumption)
## 12525                                                            Renewable energy consumption (% of total final energy consumption)
## 12526                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 12537                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 12546                                                                                          HIV prevalence, adult (% ages 15-49)
## 12547                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 12548                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 12549                                                                                              Life expectancy at birth (years)
## 12550                                                                                      Life expectancy at birth, female (years)
## 12551                                                                                        Life expectancy at birth, male (years)
## 12552                                                                                                         Life expectancy index
## 12553                                                                               Mortality rate, female adult (per 1,000 people)
## 12554                                                                                Mortality rate, infant (per 1,000 live births)
## 12555                                                                                 Mortality rate, male adult (per 1,000 people)
## 12556                                                                            Mortality rate, under-five (per 1,000 live births)
## 12566                                                                                                   GDP per capita (2011 PPP $)
## 12567                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 12568                                                                                      Gross fixed capital formation (% of GDP)
## 12569                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 12570                                                                                                                  Income index
## 12588                                                                                         Net migration rate (per 1,000 people)
## 12589                                                                                               Adjusted net savings (% of GNI)
## 12591                                                                                            Gross capital formation (% of GDP)
## 12598                                                                               Rural population with access to electricity (%)
## 12600                                                                                                Exports and imports (% of GDP)
## 12601                                                                             Foreign direct investment, net inflows (% of GDP)
## 12602                                                                                              Private capital flows (% of GDP)
## 12603                                                                                               Remittances, inflows (% of GDP)
## 12607                                                                         Labour force participation rate (% ages 15 and older)
## 12608                                                                 Labour force participation rate (% ages 15 and older), female
## 12609                                                                   Labour force participation rate (% ages 15 and older), male
## 12616                                                                                                 Human Development Index (HDI)
## 12617                                                                                                            Median age (years)
## 12618                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 12619                                                                                              Population ages 15–64 (millions)
## 12620                                                                                       Population ages 65 and older (millions)
## 12621                                                                                             Population under age 5 (millions)
## 12622                                                                                    Sex ratio at birth (male to female births)
## 12623                                                                                                   Total population (millions)
## 12624                                                                                                          Urban population (%)
## 12625                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 12626                                                                                                               Education index
## 12627                                                                                           Expected years of schooling (years)
## 12628                                                                                   Expected years of schooling, female (years)
## 12629                                                                                     Expected years of schooling, male (years)
## 12632                                                           Gross enrolment ratio, primary (% of primary school-age population)
## 12633                                                       Gross enrolment ratio, secondary (% of secondary school-age population)
## 12634                                                         Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 12635                                                                                               Mean years of schooling (years)
## 12636                                                                                       Mean years of schooling, female (years)
## 12637                                                                                         Mean years of schooling, male (years)
## 12638                                                       Population with at least some secondary education (% ages 25 and older)
## 12639                                               Population with at least some secondary education, female (% ages 25 and older)
## 12640                                                 Population with at least some secondary education, male (% ages 25 and older)
## 12644                                                                      Pupil-teacher ratio, primary school (pupils per teacher)
## 12645                                                                           Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 12646                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 12647                                                                                            Forest area (% of total land area)
## 12649                                                                Fossil fuel energy consumption (% of total energy consumption)
## 12654                                                            Renewable energy consumption (% of total final energy consumption)
## 12655                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 12665                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 12673                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 12674                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 12675                                                                                              Life expectancy at birth (years)
## 12676                                                                                      Life expectancy at birth, female (years)
## 12677                                                                                        Life expectancy at birth, male (years)
## 12678                                                                                                         Life expectancy index
## 12679                                                                               Mortality rate, female adult (per 1,000 people)
## 12680                                                                                Mortality rate, infant (per 1,000 live births)
## 12681                                                                                 Mortality rate, male adult (per 1,000 people)
## 12682                                                                            Mortality rate, under-five (per 1,000 live births)
## 12691                                                                       Domestic credit provided by financial sector (% of GDP)
## 12692                                                                                                   GDP per capita (2011 PPP $)
## 12693                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 12694                                                                                      Gross fixed capital formation (% of GDP)
## 12695                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 12696                                                                                                                  Income index
## 12710                                                                                         Net migration rate (per 1,000 people)
## 12713                                                                                            Gross capital formation (% of GDP)
## 12718                                                                               Rural population with access to electricity (%)
## 12720                                                                                                Exports and imports (% of GDP)
## 12721                                                                             Foreign direct investment, net inflows (% of GDP)
## 12723                                                                                               Remittances, inflows (% of GDP)
## 12727                                                                         Labour force participation rate (% ages 15 and older)
## 12728                                                                 Labour force participation rate (% ages 15 and older), female
## 12729                                                                   Labour force participation rate (% ages 15 and older), male
## 12737                                                                                                            Median age (years)
## 12738                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 12739                                                                                              Population ages 15–64 (millions)
## 12740                                                                                       Population ages 65 and older (millions)
## 12741                                                                                             Population under age 5 (millions)
## 12742                                                                                    Sex ratio at birth (male to female births)
## 12743                                                                                                   Total population (millions)
## 12744                                                                                                          Urban population (%)
## 12745                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 12747                                                                                           Expected years of schooling (years)
## 12751                                                           Gross enrolment ratio, primary (% of primary school-age population)
## 12752                                                       Gross enrolment ratio, secondary (% of secondary school-age population)
## 12760                                                                      Pupil-teacher ratio, primary school (pupils per teacher)
## 12761                                                                           Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 12762                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 12763                                                                                            Forest area (% of total land area)
## 12765                                                                Fossil fuel energy consumption (% of total energy consumption)
## 12770                                                            Renewable energy consumption (% of total final energy consumption)
## 12771                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 12772                                                                               Antenatal care coverage, at least one visit (%)
## 12774                        Contraceptive prevalence, any method (% of married or in-union women of reproductive age, 15–49 years)
## 12781                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 12782                                                                 Proportion of births attended by skilled health personnel (%)
## 12786                              Unmet need for family planning (% of married or in-union women of reproductive age, 15–49 years)
## 12793                                                                                          HIV prevalence, adult (% ages 15-49)
## 12794                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 12795                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 12796                                                                                              Life expectancy at birth (years)
## 12797                                                                                      Life expectancy at birth, female (years)
## 12798                                                                                        Life expectancy at birth, male (years)
## 12799                                                                                                         Life expectancy index
## 12801                                                                               Mortality rate, female adult (per 1,000 people)
## 12802                                                                                Mortality rate, infant (per 1,000 live births)
## 12803                                                                                 Mortality rate, male adult (per 1,000 people)
## 12804                                                                            Mortality rate, under-five (per 1,000 live births)
## 12813                                                                       Domestic credit provided by financial sector (% of GDP)
## 12814                                                                                                   GDP per capita (2011 PPP $)
## 12815                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 12816                                                                                      Gross fixed capital formation (% of GDP)
## 12817                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 12818                                                                                                                  Income index
## 12834                                                                                         Net migration rate (per 1,000 people)
## 12849                                                                                               Adjusted net savings (% of GNI)
## 12851                                                                                            Gross capital formation (% of GDP)
## 12857                                                                               Rural population with access to electricity (%)
## 12858                                                       Total debt service (% of exports of goods, services and primary income)
## 12859                                                                                                Exports and imports (% of GDP)
## 12860                                                                             Foreign direct investment, net inflows (% of GDP)
## 12861                                                                       Net official development assistance received (% of GNI)
## 12862                                                                                              Private capital flows (% of GDP)
## 12863                                                                                               Remittances, inflows (% of GDP)
## 12868                                                                         Labour force participation rate (% ages 15 and older)
## 12869                                                                 Labour force participation rate (% ages 15 and older), female
## 12870                                                                   Labour force participation rate (% ages 15 and older), male
## 12877                                                                                                 Human Development Index (HDI)
## 12878                                                                                                            Median age (years)
## 12879                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 12880                                                                                              Population ages 15–64 (millions)
## 12881                                                                                       Population ages 65 and older (millions)
## 12882                                                                                             Population under age 5 (millions)
## 12883                                                                                    Sex ratio at birth (male to female births)
## 12884                                                                                                   Total population (millions)
## 12885                                                                                                          Urban population (%)
## 12886                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 12887                                                                                                               Education index
## 12888                                                                                           Expected years of schooling (years)
## 12889                                                                                   Expected years of schooling, female (years)
## 12890                                                                                     Expected years of schooling, male (years)
## 12891                                                                                Government expenditure on education (% of GDP)
## 12892                                                              Gross enrolment ratio, pre-primary (% of preschool-age children)
## 12893                                                           Gross enrolment ratio, primary (% of primary school-age population)
## 12894                                                       Gross enrolment ratio, secondary (% of secondary school-age population)
## 12895                                                         Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 12896                                                                                               Mean years of schooling (years)
## 12897                                                                                       Mean years of schooling, female (years)
## 12898                                                                                         Mean years of schooling, male (years)
## 12899                                                       Population with at least some secondary education (% ages 25 and older)
## 12900                                               Population with at least some secondary education, female (% ages 25 and older)
## 12901                                                 Population with at least some secondary education, male (% ages 25 and older)
## 12902                                                                      Primary school dropout rate (% of primary school cohort)
## 12909                                                                           Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 12910                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 12911                                                                                            Forest area (% of total land area)
## 12913                                                                Fossil fuel energy consumption (% of total energy consumption)
## 12918                                                            Renewable energy consumption (% of total final energy consumption)
## 12919                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 12929                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 12930                                                                 Proportion of births attended by skilled health personnel (%)
## 12938                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 12939                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 12940                                                                                              Life expectancy at birth (years)
## 12941                                                                                      Life expectancy at birth, female (years)
## 12942                                                                                        Life expectancy at birth, male (years)
## 12943                                                                                                         Life expectancy index
## 12944                                                                               Mortality rate, female adult (per 1,000 people)
## 12945                                                                                Mortality rate, infant (per 1,000 live births)
## 12946                                                                                 Mortality rate, male adult (per 1,000 people)
## 12947                                                                            Mortality rate, under-five (per 1,000 live births)
## 12956                                                                       Domestic credit provided by financial sector (% of GDP)
## 12957                                                                                                   GDP per capita (2011 PPP $)
## 12958                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 12959                                                                                      Gross fixed capital formation (% of GDP)
## 12960                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 12961                                                                                                                  Income index
## 12979                                                                                         Net migration rate (per 1,000 people)
## 12980                                                                                               Adjusted net savings (% of GNI)
## 12982                                                                                            Gross capital formation (% of GDP)
## 12989                                                                               Rural population with access to electricity (%)
## 12991                                                                                                Exports and imports (% of GDP)
## 12992                                                                             Foreign direct investment, net inflows (% of GDP)
## 12993                                                                                              Private capital flows (% of GDP)
## 12994                                                                                               Remittances, inflows (% of GDP)
## 12998                                                                         Labour force participation rate (% ages 15 and older)
## 12999                                                                 Labour force participation rate (% ages 15 and older), female
## 13000                                                                   Labour force participation rate (% ages 15 and older), male
## 13007                                                                                                 Human Development Index (HDI)
## 13008                                                                                                            Median age (years)
## 13009                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 13010                                                                                              Population ages 15–64 (millions)
## 13011                                                                                       Population ages 65 and older (millions)
## 13012                                                                                             Population under age 5 (millions)
## 13013                                                                                    Sex ratio at birth (male to female births)
## 13014                                                                                                   Total population (millions)
## 13015                                                                                                          Urban population (%)
## 13016                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 13017                                                                                                               Education index
## 13018                                                                                           Expected years of schooling (years)
## 13019                                                                                   Expected years of schooling, female (years)
## 13020                                                                                     Expected years of schooling, male (years)
## 13021                                                                                Government expenditure on education (% of GDP)
## 13023                                                           Gross enrolment ratio, primary (% of primary school-age population)
## 13024                                                       Gross enrolment ratio, secondary (% of secondary school-age population)
## 13025                                                         Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 13027                                                                                               Mean years of schooling (years)
## 13028                                                                                       Mean years of schooling, female (years)
## 13029                                                                                         Mean years of schooling, male (years)
## 13030                                                       Population with at least some secondary education (% ages 25 and older)
## 13031                                               Population with at least some secondary education, female (% ages 25 and older)
## 13032                                                 Population with at least some secondary education, male (% ages 25 and older)
## 13035                                                                      Pupil-teacher ratio, primary school (pupils per teacher)
## 13037                                                                           Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 13038                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 13039                                                                                            Forest area (% of total land area)
## 13041                                                                Fossil fuel energy consumption (% of total energy consumption)
## 13046                                                            Renewable energy consumption (% of total final energy consumption)
## 13047                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 13059                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 13069                                                                                          HIV prevalence, adult (% ages 15-49)
## 13070                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 13071                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 13072                                                                                              Life expectancy at birth (years)
## 13073                                                                                      Life expectancy at birth, female (years)
## 13074                                                                                        Life expectancy at birth, male (years)
## 13075                                                                                                         Life expectancy index
## 13077                                                                               Mortality rate, female adult (per 1,000 people)
## 13078                                                                                Mortality rate, infant (per 1,000 live births)
## 13079                                                                                 Mortality rate, male adult (per 1,000 people)
## 13080                                                                            Mortality rate, under-five (per 1,000 live births)
## 13089                                                                       Domestic credit provided by financial sector (% of GDP)
## 13090                                                                                                   GDP per capita (2011 PPP $)
## 13091                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 13092                                                                                      Gross fixed capital formation (% of GDP)
## 13093                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 13094                                                                                                                  Income index
## 13112                                                                                         Net migration rate (per 1,000 people)
## 13127                                                                                               Adjusted net savings (% of GNI)
## 13129                                                                                            Gross capital formation (% of GDP)
## 13136                                                                               Rural population with access to electricity (%)
## 13138                                                       Total debt service (% of exports of goods, services and primary income)
## 13139                                                                                                Exports and imports (% of GDP)
## 13140                                                                             Foreign direct investment, net inflows (% of GDP)
## 13141                                                                       Net official development assistance received (% of GNI)
## 13142                                                                                              Private capital flows (% of GDP)
## 13143                                                                                               Remittances, inflows (% of GDP)
## 13147                                                                         Labour force participation rate (% ages 15 and older)
## 13148                                                                 Labour force participation rate (% ages 15 and older), female
## 13149                                                                   Labour force participation rate (% ages 15 and older), male
## 13156                                                                                                 Human Development Index (HDI)
## 13157                                                                                                            Median age (years)
## 13158                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 13159                                                                                              Population ages 15–64 (millions)
## 13160                                                                                       Population ages 65 and older (millions)
## 13161                                                                                             Population under age 5 (millions)
## 13162                                                                                    Sex ratio at birth (male to female births)
## 13163                                                                                                   Total population (millions)
## 13164                                                                                                          Urban population (%)
## 13165                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 13166                                                                                                               Education index
## 13167                                                                                           Expected years of schooling (years)
## 13171                                                              Gross enrolment ratio, pre-primary (% of preschool-age children)
## 13172                                                           Gross enrolment ratio, primary (% of primary school-age population)
## 13173                                                       Gross enrolment ratio, secondary (% of secondary school-age population)
## 13174                                                         Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 13175                                                                                    Literacy rate, adult (% ages 15 and older)
## 13176                                                                                               Mean years of schooling (years)
## 13177                                                                                       Mean years of schooling, female (years)
## 13179                                                       Population with at least some secondary education (% ages 25 and older)
## 13180                                               Population with at least some secondary education, female (% ages 25 and older)
## 13181                                                 Population with at least some secondary education, male (% ages 25 and older)
## 13185                                                                      Pupil-teacher ratio, primary school (pupils per teacher)
## 13187                                                                           Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 13188                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 13189                                                                                            Forest area (% of total land area)
## 13191                                                                Fossil fuel energy consumption (% of total energy consumption)
## 13196                                                            Renewable energy consumption (% of total final energy consumption)
## 13197                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 13210                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 13211                                                                 Proportion of births attended by skilled health personnel (%)
## 13220                                                                                          HIV prevalence, adult (% ages 15-49)
## 13221                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 13222                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 13223                                                                                              Life expectancy at birth (years)
## 13224                                                                                      Life expectancy at birth, female (years)
## 13225                                                                                        Life expectancy at birth, male (years)
## 13226                                                                                                         Life expectancy index
## 13228                                                                               Mortality rate, female adult (per 1,000 people)
## 13229                                                                                Mortality rate, infant (per 1,000 live births)
## 13230                                                                                 Mortality rate, male adult (per 1,000 people)
## 13231                                                                            Mortality rate, under-five (per 1,000 live births)
## 13240                                                                       Domestic credit provided by financial sector (% of GDP)
## 13241                                                                                                   GDP per capita (2011 PPP $)
## 13242                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 13243                                                                                      Gross fixed capital formation (% of GDP)
## 13244                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 13245                                                                                                                  Income index
## 13262                                                                                         Net migration rate (per 1,000 people)
## 13264                                                                                               Adjusted net savings (% of GNI)
## 13266                                                                                            Gross capital formation (% of GDP)
## 13272                                                                               Rural population with access to electricity (%)
## 13274                                                       Total debt service (% of exports of goods, services and primary income)
## 13275                                                                                                Exports and imports (% of GDP)
## 13276                                                                             Foreign direct investment, net inflows (% of GDP)
## 13277                                                                       Net official development assistance received (% of GNI)
## 13278                                                                                              Private capital flows (% of GDP)
## 13279                                                                                               Remittances, inflows (% of GDP)
## 13284                                                                         Labour force participation rate (% ages 15 and older)
## 13285                                                                 Labour force participation rate (% ages 15 and older), female
## 13286                                                                   Labour force participation rate (% ages 15 and older), male
## 13293                                                                                                 Human Development Index (HDI)
## 13294                                                                                                            Median age (years)
## 13295                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 13296                                                                                              Population ages 15–64 (millions)
## 13297                                                                                       Population ages 65 and older (millions)
## 13298                                                                                             Population under age 5 (millions)
## 13299                                                                                    Sex ratio at birth (male to female births)
## 13300                                                                                                   Total population (millions)
## 13301                                                                                                          Urban population (%)
## 13302                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 13303                                                                                                               Education index
## 13304                                                                                           Expected years of schooling (years)
## 13305                                                                                   Expected years of schooling, female (years)
## 13306                                                                                     Expected years of schooling, male (years)
## 13307                                                              Gross enrolment ratio, pre-primary (% of preschool-age children)
## 13308                                                           Gross enrolment ratio, primary (% of primary school-age population)
## 13309                                                       Gross enrolment ratio, secondary (% of secondary school-age population)
## 13312                                                                                               Mean years of schooling (years)
## 13313                                                                                       Mean years of schooling, female (years)
## 13314                                                                                         Mean years of schooling, male (years)
## 13315                                                       Population with at least some secondary education (% ages 25 and older)
## 13316                                               Population with at least some secondary education, female (% ages 25 and older)
## 13317                                                 Population with at least some secondary education, male (% ages 25 and older)
## 13318                                                                      Primary school dropout rate (% of primary school cohort)
## 13320                                                                      Pupil-teacher ratio, primary school (pupils per teacher)
## 13321                                                                           Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 13322                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 13323                                                                                            Forest area (% of total land area)
## 13329                                                            Renewable energy consumption (% of total final energy consumption)
## 13330                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 13341                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 13342                                                                 Proportion of births attended by skilled health personnel (%)
## 13350                                                                                          HIV prevalence, adult (% ages 15-49)
## 13351                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 13352                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 13353                                                                                              Life expectancy at birth (years)
## 13354                                                                                      Life expectancy at birth, female (years)
## 13355                                                                                        Life expectancy at birth, male (years)
## 13356                                                                                                         Life expectancy index
## 13358                                                                               Mortality rate, female adult (per 1,000 people)
## 13359                                                                                Mortality rate, infant (per 1,000 live births)
## 13360                                                                                 Mortality rate, male adult (per 1,000 people)
## 13361                                                                            Mortality rate, under-five (per 1,000 live births)
## 13369                                                                       Domestic credit provided by financial sector (% of GDP)
## 13370                                                                                                   GDP per capita (2011 PPP $)
## 13371                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 13372                                                                                      Gross fixed capital formation (% of GDP)
## 13373                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 13374                                                                                                                  Income index
## 13386                                                                                         Net migration rate (per 1,000 people)
## 13388                                                                                               Adjusted net savings (% of GNI)
## 13390                                                                                            Gross capital formation (% of GDP)
## 13395                                                       Total debt service (% of exports of goods, services and primary income)
## 13396                                                                                                Exports and imports (% of GDP)
## 13397                                                                             Foreign direct investment, net inflows (% of GDP)
## 13398                                                                       Net official development assistance received (% of GNI)
## 13399                                                                                              Private capital flows (% of GDP)
## 13400                                                                                               Remittances, inflows (% of GDP)
## 13404                                                                         Labour force participation rate (% ages 15 and older)
## 13405                                                                 Labour force participation rate (% ages 15 and older), female
## 13406                                                                   Labour force participation rate (% ages 15 and older), male
## 13413                                                                                                 Human Development Index (HDI)
## 13414                                                                                                            Median age (years)
## 13415                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 13416                                                                                              Population ages 15–64 (millions)
## 13417                                                                                       Population ages 65 and older (millions)
## 13418                                                                                             Population under age 5 (millions)
## 13419                                                                                    Sex ratio at birth (male to female births)
## 13420                                                                                                   Total population (millions)
## 13421                                                                                                          Urban population (%)
## 13422                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 13423                                                                                                               Education index
## 13424                                                                                           Expected years of schooling (years)
## 13428                                                              Gross enrolment ratio, pre-primary (% of preschool-age children)
## 13429                                                           Gross enrolment ratio, primary (% of primary school-age population)
## 13430                                                       Gross enrolment ratio, secondary (% of secondary school-age population)
## 13431                                                         Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 13432                                                                                    Literacy rate, adult (% ages 15 and older)
## 13433                                                                                               Mean years of schooling (years)
## 13434                                                                                       Mean years of schooling, female (years)
## 13435                                                                                         Mean years of schooling, male (years)
## 13436                                                       Population with at least some secondary education (% ages 25 and older)
## 13437                                               Population with at least some secondary education, female (% ages 25 and older)
## 13438                                                 Population with at least some secondary education, male (% ages 25 and older)
## 13442                                                                      Pupil-teacher ratio, primary school (pupils per teacher)
## 13444                                                                           Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 13445                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 13446                                                                                            Forest area (% of total land area)
## 13448                                                                Fossil fuel energy consumption (% of total energy consumption)
## 13453                                                            Renewable energy consumption (% of total final energy consumption)
## 13454                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 13467                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 13478                                                                                          HIV prevalence, adult (% ages 15-49)
## 13479                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 13480                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 13481                                                                                              Life expectancy at birth (years)
## 13482                                                                                      Life expectancy at birth, female (years)
## 13483                                                                                        Life expectancy at birth, male (years)
## 13484                                                                                                         Life expectancy index
## 13486                                                                               Mortality rate, female adult (per 1,000 people)
## 13487                                                                                Mortality rate, infant (per 1,000 live births)
## 13488                                                                                 Mortality rate, male adult (per 1,000 people)
## 13489                                                                            Mortality rate, under-five (per 1,000 live births)
## 13498                                                                       Domestic credit provided by financial sector (% of GDP)
## 13499                                                                                                   GDP per capita (2011 PPP $)
## 13500                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 13501                                                                                      Gross fixed capital formation (% of GDP)
## 13502                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 13503                                                                                                                  Income index
## 13520                                                                                         Net migration rate (per 1,000 people)
## 13535                                                                                               Adjusted net savings (% of GNI)
## 13537                                                                                            Gross capital formation (% of GDP)
## 13544                                                                               Rural population with access to electricity (%)
## 13546                                                       Total debt service (% of exports of goods, services and primary income)
## 13547                                                                                                Exports and imports (% of GDP)
## 13548                                                                             Foreign direct investment, net inflows (% of GDP)
## 13549                                                                       Net official development assistance received (% of GNI)
## 13550                                                                                              Private capital flows (% of GDP)
## 13551                                                                                               Remittances, inflows (% of GDP)
## 13555                                                                         Labour force participation rate (% ages 15 and older)
## 13556                                                                 Labour force participation rate (% ages 15 and older), female
## 13557                                                                   Labour force participation rate (% ages 15 and older), male
## 13565                                                                                                 Human Development Index (HDI)
## 13566                                                                                                            Median age (years)
## 13567                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 13568                                                                                              Population ages 15–64 (millions)
## 13569                                                                                       Population ages 65 and older (millions)
## 13570                                                                                             Population under age 5 (millions)
## 13571                                                                                    Sex ratio at birth (male to female births)
## 13572                                                                                                   Total population (millions)
## 13573                                                                                                          Urban population (%)
## 13574                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 13575                                                                                                               Education index
## 13576                                                                                           Expected years of schooling (years)
## 13577                                                                                   Expected years of schooling, female (years)
## 13578                                                                                     Expected years of schooling, male (years)
## 13580                                                              Gross enrolment ratio, pre-primary (% of preschool-age children)
## 13581                                                           Gross enrolment ratio, primary (% of primary school-age population)
## 13582                                                       Gross enrolment ratio, secondary (% of secondary school-age population)
## 13583                                                         Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 13585                                                                                               Mean years of schooling (years)
## 13586                                                                                       Mean years of schooling, female (years)
## 13587                                                                                         Mean years of schooling, male (years)
## 13588                                                       Population with at least some secondary education (% ages 25 and older)
## 13589                                               Population with at least some secondary education, female (% ages 25 and older)
## 13590                                                 Population with at least some secondary education, male (% ages 25 and older)
## 13597                                                                           Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 13598                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 13599                                                                                            Forest area (% of total land area)
## 13601                                                                Fossil fuel energy consumption (% of total energy consumption)
## 13602                                                                Fresh water withdrawals (% of total renewable water resources)
## 13606                                                            Renewable energy consumption (% of total final energy consumption)
## 13607                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 13619                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 13620                                                                 Proportion of births attended by skilled health personnel (%)
## 13629                                                                                          HIV prevalence, adult (% ages 15-49)
## 13630                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 13631                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 13632                                                                                              Life expectancy at birth (years)
## 13633                                                                                      Life expectancy at birth, female (years)
## 13634                                                                                        Life expectancy at birth, male (years)
## 13635                                                                                                         Life expectancy index
## 13636                                                                               Mortality rate, female adult (per 1,000 people)
## 13637                                                                                Mortality rate, infant (per 1,000 live births)
## 13638                                                                                 Mortality rate, male adult (per 1,000 people)
## 13639                                                                            Mortality rate, under-five (per 1,000 live births)
## 13647                                                                       Domestic credit provided by financial sector (% of GDP)
## 13648                                                                                                   GDP per capita (2011 PPP $)
## 13649                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 13650                                                                                      Gross fixed capital formation (% of GDP)
## 13651                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 13652                                                                                                                  Income index
## 13670                                                                                         Net migration rate (per 1,000 people)
## 13671                                                                                               Adjusted net savings (% of GNI)
## 13673                                                                                            Gross capital formation (% of GDP)
## 13680                                                                               Rural population with access to electricity (%)
## 13682                                                       Total debt service (% of exports of goods, services and primary income)
## 13683                                                                                                Exports and imports (% of GDP)
## 13684                                                                             Foreign direct investment, net inflows (% of GDP)
## 13685                                                                                              Private capital flows (% of GDP)
## 13690                                                                         Labour force participation rate (% ages 15 and older)
## 13691                                                                 Labour force participation rate (% ages 15 and older), female
## 13692                                                                   Labour force participation rate (% ages 15 and older), male
## 13699                                                                                                 Human Development Index (HDI)
## 13700                                                                                                            Median age (years)
## 13701                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 13702                                                                                              Population ages 15–64 (millions)
## 13703                                                                                       Population ages 65 and older (millions)
## 13704                                                                                             Population under age 5 (millions)
## 13705                                                                                    Sex ratio at birth (male to female births)
## 13706                                                                                                   Total population (millions)
## 13707                                                                                                          Urban population (%)
## 13708                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 13709                                                                                                               Education index
## 13710                                                                                           Expected years of schooling (years)
## 13714                                                              Gross enrolment ratio, pre-primary (% of preschool-age children)
## 13715                                                           Gross enrolment ratio, primary (% of primary school-age population)
## 13716                                                       Gross enrolment ratio, secondary (% of secondary school-age population)
## 13717                                                         Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 13719                                                                                               Mean years of schooling (years)
## 13720                                                                                       Mean years of schooling, female (years)
## 13721                                                                                         Mean years of schooling, male (years)
## 13722                                                       Population with at least some secondary education (% ages 25 and older)
## 13723                                               Population with at least some secondary education, female (% ages 25 and older)
## 13724                                                 Population with at least some secondary education, male (% ages 25 and older)
## 13730                                                                      Pupil-teacher ratio, primary school (pupils per teacher)
## 13734                                                                                            Forest area (% of total land area)
## 13736                                                                Fossil fuel energy consumption (% of total energy consumption)
## 13741                                                            Renewable energy consumption (% of total final energy consumption)
## 13742                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 13752                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 13753                                                                 Proportion of births attended by skilled health personnel (%)
## 13763                                                                                              Life expectancy at birth (years)
## 13764                                                                                      Life expectancy at birth, female (years)
## 13765                                                                                        Life expectancy at birth, male (years)
## 13766                                                                                                         Life expectancy index
## 13767                                                                               Mortality rate, female adult (per 1,000 people)
## 13768                                                                                Mortality rate, infant (per 1,000 live births)
## 13769                                                                                 Mortality rate, male adult (per 1,000 people)
## 13770                                                                            Mortality rate, under-five (per 1,000 live births)
## 13780                                                                                                   GDP per capita (2011 PPP $)
## 13781                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 13782                                                                                      Gross fixed capital formation (% of GDP)
## 13783                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 13784                                                                                                                  Income index
## 13802                                                                                         Net migration rate (per 1,000 people)
## 13806                                                                                            Gross capital formation (% of GDP)
## 13813                                                                               Rural population with access to electricity (%)
## 13816                                                                                                Exports and imports (% of GDP)
## 13823                                                                         Labour force participation rate (% ages 15 and older)
## 13824                                                                 Labour force participation rate (% ages 15 and older), female
## 13825                                                                   Labour force participation rate (% ages 15 and older), male
## 13833                                                                                                   Total population (millions)
## 13834                                                                                                          Urban population (%)
## 13836                                                                                           Expected years of schooling (years)
## 13837                                                                                   Expected years of schooling, female (years)
## 13838                                                                                     Expected years of schooling, male (years)
## 13844                                                                      Pupil-teacher ratio, primary school (pupils per teacher)
## 13846                                                                           Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 13847                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 13848                                                                                            Forest area (% of total land area)
## 13850                                                                Fossil fuel energy consumption (% of total energy consumption)
## 13853                                                            Renewable energy consumption (% of total final energy consumption)
## 13854                                                                               Antenatal care coverage, at least one visit (%)
## 13859                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 13860                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 13861                                                                                              Life expectancy at birth (years)
## 13862                                                                                                         Life expectancy index
## 13863                                                                               Mortality rate, female adult (per 1,000 people)
## 13864                                                                                Mortality rate, infant (per 1,000 live births)
## 13865                                                                                 Mortality rate, male adult (per 1,000 people)
## 13866                                                                            Mortality rate, under-five (per 1,000 live births)
## 13872                                                                       Domestic credit provided by financial sector (% of GDP)
## 13873                                                                                                   GDP per capita (2011 PPP $)
## 13874                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 13875                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 13876                                                                                                                  Income index
## 13884                                                                               Rural population with access to electricity (%)
## 13885                                                                                                Exports and imports (% of GDP)
## 13886                                                                             Foreign direct investment, net inflows (% of GDP)
## 13887                                                                       Net official development assistance received (% of GNI)
## 13888                                                                                              Private capital flows (% of GDP)
## 13889                                                                                               Remittances, inflows (% of GDP)
## 13893                                                                                                            Median age (years)
## 13894                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 13895                                                                                              Population ages 15–64 (millions)
## 13896                                                                                       Population ages 65 and older (millions)
## 13897                                                                                             Population under age 5 (millions)
## 13898                                                                                    Sex ratio at birth (male to female births)
## 13899                                                                                                   Total population (millions)
## 13900                                                                                                          Urban population (%)
## 13901                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 13903                                                                                           Expected years of schooling (years)
## 13904                                                                                   Expected years of schooling, female (years)
## 13905                                                                                     Expected years of schooling, male (years)
## 13907                                                              Gross enrolment ratio, pre-primary (% of preschool-age children)
## 13908                                                           Gross enrolment ratio, primary (% of primary school-age population)
## 13909                                                       Gross enrolment ratio, secondary (% of secondary school-age population)
## 13920                                                                      Pupil-teacher ratio, primary school (pupils per teacher)
## 13922                                                                           Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 13923                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 13924                                                                                            Forest area (% of total land area)
## 13926                                                                Fossil fuel energy consumption (% of total energy consumption)
## 13931                                                            Renewable energy consumption (% of total final energy consumption)
## 13932                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 13933                                                                               Antenatal care coverage, at least one visit (%)
## 13943                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 13952                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 13953                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 13954                                                                                              Life expectancy at birth (years)
## 13955                                                                                      Life expectancy at birth, female (years)
## 13956                                                                                        Life expectancy at birth, male (years)
## 13957                                                                                                         Life expectancy index
## 13958                                                                               Mortality rate, female adult (per 1,000 people)
## 13959                                                                                Mortality rate, infant (per 1,000 live births)
## 13960                                                                                 Mortality rate, male adult (per 1,000 people)
## 13961                                                                            Mortality rate, under-five (per 1,000 live births)
## 13970                                                                       Domestic credit provided by financial sector (% of GDP)
## 13971                                                                                                   GDP per capita (2011 PPP $)
## 13972                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 13973                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 13974                                                                                                                  Income index
## 13988                                                                                         Net migration rate (per 1,000 people)
## 14000                                                                                               Adjusted net savings (% of GNI)
## 14004                                                                               Rural population with access to electricity (%)
## 14005                                                       Total debt service (% of exports of goods, services and primary income)
## 14006                                                                             Foreign direct investment, net inflows (% of GDP)
## 14007                                                                       Net official development assistance received (% of GNI)
## 14008                                                                                              Private capital flows (% of GDP)
## 14009                                                                                               Remittances, inflows (% of GDP)
## 14014                                                                         Labour force participation rate (% ages 15 and older)
## 14015                                                                 Labour force participation rate (% ages 15 and older), female
## 14016                                                                   Labour force participation rate (% ages 15 and older), male
## 14023                                                                                                            Median age (years)
## 14024                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 14025                                                                                              Population ages 15–64 (millions)
## 14026                                                                                       Population ages 65 and older (millions)
## 14027                                                                                             Population under age 5 (millions)
## 14028                                                                                    Sex ratio at birth (male to female births)
## 14029                                                                                                   Total population (millions)
## 14030                                                                                                          Urban population (%)
## 14031                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 14033                                                                                           Expected years of schooling (years)
## 14040                                                         Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 14047                                                                           Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 14048                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 14049                                                                                            Forest area (% of total land area)
## 14051                                                                Fossil fuel energy consumption (% of total energy consumption)
## 14056                                                            Renewable energy consumption (% of total final energy consumption)
## 14057                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 14062                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 14069                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 14070                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 14071                                                                                              Life expectancy at birth (years)
## 14072                                                                                      Life expectancy at birth, female (years)
## 14073                                                                                        Life expectancy at birth, male (years)
## 14074                                                                                                         Life expectancy index
## 14075                                                                               Mortality rate, female adult (per 1,000 people)
## 14076                                                                                Mortality rate, infant (per 1,000 live births)
## 14077                                                                                 Mortality rate, male adult (per 1,000 people)
## 14078                                                                            Mortality rate, under-five (per 1,000 live births)
## 14086                                                                       Domestic credit provided by financial sector (% of GDP)
## 14087                                                                                                   GDP per capita (2011 PPP $)
## 14088                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 14089                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 14090                                                                                                                  Income index
## 14096                                                                                         Net migration rate (per 1,000 people)
## 14100                                                                               Rural population with access to electricity (%)
## 14101                                                       Total debt service (% of exports of goods, services and primary income)
## 14102                                                                                                Exports and imports (% of GDP)
## 14103                                                                             Foreign direct investment, net inflows (% of GDP)
## 14104                                                                       Net official development assistance received (% of GNI)
## 14105                                                                                              Private capital flows (% of GDP)
## 14106                                                                                               Remittances, inflows (% of GDP)
## 14110                                                                         Labour force participation rate (% ages 15 and older)
## 14111                                                                 Labour force participation rate (% ages 15 and older), female
## 14112                                                                   Labour force participation rate (% ages 15 and older), male
## 14118                                                                                                 Human Development Index (HDI)
## 14119                                                                                                            Median age (years)
## 14120                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 14121                                                                                              Population ages 15–64 (millions)
## 14122                                                                                       Population ages 65 and older (millions)
## 14123                                                                                             Population under age 5 (millions)
## 14124                                                                                    Sex ratio at birth (male to female births)
## 14125                                                                                                   Total population (millions)
## 14126                                                                                                          Urban population (%)
## 14127                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 14128                                                                                                               Education index
## 14129                                                                                           Expected years of schooling (years)
## 14136                                                         Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 14138                                                                                               Mean years of schooling (years)
## 14139                                                                                       Mean years of schooling, female (years)
## 14140                                                                                         Mean years of schooling, male (years)
## 14141                                                       Population with at least some secondary education (% ages 25 and older)
## 14142                                               Population with at least some secondary education, female (% ages 25 and older)
## 14143                                                 Population with at least some secondary education, male (% ages 25 and older)
## 14148                                                                           Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 14149                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 14150                                                                                            Forest area (% of total land area)
## 14152                                                                Fossil fuel energy consumption (% of total energy consumption)
## 14157                                                            Renewable energy consumption (% of total final energy consumption)
## 14158                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 14169                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 14170                                                                 Proportion of births attended by skilled health personnel (%)
## 14177                                                                                          HIV prevalence, adult (% ages 15-49)
## 14178                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 14179                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 14180                                                                                              Life expectancy at birth (years)
## 14181                                                                                      Life expectancy at birth, female (years)
## 14182                                                                                        Life expectancy at birth, male (years)
## 14183                                                                                                         Life expectancy index
## 14185                                                                               Mortality rate, female adult (per 1,000 people)
## 14186                                                                                Mortality rate, infant (per 1,000 live births)
## 14187                                                                                 Mortality rate, male adult (per 1,000 people)
## 14188                                                                            Mortality rate, under-five (per 1,000 live births)
## 14196                                                                       Domestic credit provided by financial sector (% of GDP)
## 14197                                                                                                   GDP per capita (2011 PPP $)
## 14198                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 14199                                                                                      Gross fixed capital formation (% of GDP)
## 14200                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 14201                                                                                                                  Income index
## 14211                                                                                         Net migration rate (per 1,000 people)
## 14213                                                                                               Adjusted net savings (% of GNI)
## 14215                                                                                            Gross capital formation (% of GDP)
## 14222                                                                                                Exports and imports (% of GDP)
## 14223                                                                             Foreign direct investment, net inflows (% of GDP)
## 14224                                                                       Net official development assistance received (% of GNI)
## 14225                                                                                              Private capital flows (% of GDP)
## 14230                                                                         Labour force participation rate (% ages 15 and older)
## 14231                                                                 Labour force participation rate (% ages 15 and older), female
## 14232                                                                   Labour force participation rate (% ages 15 and older), male
## 14238                                                                                                 Human Development Index (HDI)
## 14239                                                                                                            Median age (years)
## 14240                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 14241                                                                                              Population ages 15–64 (millions)
## 14242                                                                                       Population ages 65 and older (millions)
## 14243                                                                                             Population under age 5 (millions)
## 14244                                                                                    Sex ratio at birth (male to female births)
## 14245                                                                                                   Total population (millions)
## 14246                                                                                                          Urban population (%)
## 14247                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 14248                                                                                                               Education index
## 14249                                                                                           Expected years of schooling (years)
## 14250                                                                                   Expected years of schooling, female (years)
## 14251                                                                                     Expected years of schooling, male (years)
## 14253                                                              Gross enrolment ratio, pre-primary (% of preschool-age children)
## 14254                                                           Gross enrolment ratio, primary (% of primary school-age population)
## 14255                                                       Gross enrolment ratio, secondary (% of secondary school-age population)
## 14258                                                                                               Mean years of schooling (years)
## 14259                                                                                       Mean years of schooling, female (years)
## 14260                                                                                         Mean years of schooling, male (years)
## 14261                                                       Population with at least some secondary education (% ages 25 and older)
## 14262                                               Population with at least some secondary education, female (% ages 25 and older)
## 14263                                                 Population with at least some secondary education, male (% ages 25 and older)
## 14267                                                                      Pupil-teacher ratio, primary school (pupils per teacher)
## 14269                                                                           Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 14270                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 14271                                                                                            Forest area (% of total land area)
## 14273                                                                Fossil fuel energy consumption (% of total energy consumption)
## 14277                                                            Renewable energy consumption (% of total final energy consumption)
## 14278                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 14289                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 14299                                                                                          HIV prevalence, adult (% ages 15-49)
## 14300                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 14301                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 14302                                                                                              Life expectancy at birth (years)
## 14303                                                                                      Life expectancy at birth, female (years)
## 14304                                                                                        Life expectancy at birth, male (years)
## 14305                                                                                                         Life expectancy index
## 14307                                                                               Mortality rate, female adult (per 1,000 people)
## 14308                                                                                Mortality rate, infant (per 1,000 live births)
## 14309                                                                                 Mortality rate, male adult (per 1,000 people)
## 14310                                                                            Mortality rate, under-five (per 1,000 live births)
## 14319                                                                       Domestic credit provided by financial sector (% of GDP)
## 14320                                                                                                   GDP per capita (2011 PPP $)
## 14321                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 14322                                                                                      Gross fixed capital formation (% of GDP)
## 14323                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 14324                                                                                                                  Income index
## 14341                                                                                         Net migration rate (per 1,000 people)
## 14356                                                                                               Adjusted net savings (% of GNI)
## 14358                                                                                            Gross capital formation (% of GDP)
## 14365                                                                               Rural population with access to electricity (%)
## 14367                                                       Total debt service (% of exports of goods, services and primary income)
## 14368                                                                                                Exports and imports (% of GDP)
## 14369                                                                             Foreign direct investment, net inflows (% of GDP)
## 14370                                                                       Net official development assistance received (% of GNI)
## 14371                                                                                              Private capital flows (% of GDP)
## 14372                                                                                               Remittances, inflows (% of GDP)
## 14377                                                                         Labour force participation rate (% ages 15 and older)
## 14378                                                                 Labour force participation rate (% ages 15 and older), female
## 14379                                                                   Labour force participation rate (% ages 15 and older), male
## 14387                                                                                                            Median age (years)
## 14388                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 14389                                                                                              Population ages 15–64 (millions)
## 14390                                                                                       Population ages 65 and older (millions)
## 14391                                                                                             Population under age 5 (millions)
## 14392                                                                                    Sex ratio at birth (male to female births)
## 14393                                                                                                   Total population (millions)
## 14394                                                                                                          Urban population (%)
## 14395                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 14397                                                                                           Expected years of schooling (years)
## 14398                                                                                   Expected years of schooling, female (years)
## 14399                                                                                     Expected years of schooling, male (years)
## 14401                                                              Gross enrolment ratio, pre-primary (% of preschool-age children)
## 14411                                                                           Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 14412                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 14413                                                                                            Forest area (% of total land area)
## 14415                                                                Fossil fuel energy consumption (% of total energy consumption)
## 14419                                                            Renewable energy consumption (% of total final energy consumption)
## 14420                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 14424                                                                 Proportion of births attended by skilled health personnel (%)
## 14428                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 14429                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 14430                                                                                              Life expectancy at birth (years)
## 14431                                                                                      Life expectancy at birth, female (years)
## 14432                                                                                        Life expectancy at birth, male (years)
## 14433                                                                                                         Life expectancy index
## 14434                                                                               Mortality rate, female adult (per 1,000 people)
## 14435                                                                                Mortality rate, infant (per 1,000 live births)
## 14436                                                                                 Mortality rate, male adult (per 1,000 people)
## 14437                                                                            Mortality rate, under-five (per 1,000 live births)
## 14445                                                                       Domestic credit provided by financial sector (% of GDP)
## 14446                                                                                                   GDP per capita (2011 PPP $)
## 14447                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 14448                                                                                      Gross fixed capital formation (% of GDP)
## 14449                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 14450                                                                                                                  Income index
## 14462                                                                                         Net migration rate (per 1,000 people)
## 14464                                                                                            Gross capital formation (% of GDP)
## 14469                                                                               Rural population with access to electricity (%)
## 14471                                                       Total debt service (% of exports of goods, services and primary income)
## 14472                                                                                                Exports and imports (% of GDP)
## 14473                                                                             Foreign direct investment, net inflows (% of GDP)
## 14474                                                                       Net official development assistance received (% of GNI)
## 14475                                                                                              Private capital flows (% of GDP)
## 14476                                                                                               Remittances, inflows (% of GDP)
## 14479                                                                                                 Human Development Index (HDI)
## 14480                                                                                                            Median age (years)
## 14481                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 14482                                                                                              Population ages 15–64 (millions)
## 14483                                                                                       Population ages 65 and older (millions)
## 14484                                                                                             Population under age 5 (millions)
## 14485                                                                                    Sex ratio at birth (male to female births)
## 14486                                                                                                   Total population (millions)
## 14487                                                                                                          Urban population (%)
## 14488                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 14489                                                                                                               Education index
## 14490                                                                                           Expected years of schooling (years)
## 14495                                                           Gross enrolment ratio, primary (% of primary school-age population)
## 14496                                                       Gross enrolment ratio, secondary (% of secondary school-age population)
## 14497                                                         Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 14499                                                                                               Mean years of schooling (years)
## 14500                                                                                       Mean years of schooling, female (years)
## 14501                                                                                         Mean years of schooling, male (years)
## 14502                                                       Population with at least some secondary education (% ages 25 and older)
## 14503                                               Population with at least some secondary education, female (% ages 25 and older)
## 14504                                                 Population with at least some secondary education, male (% ages 25 and older)
## 14507                                                                      Pupil-teacher ratio, primary school (pupils per teacher)
## 14509                                                                           Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 14510                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 14511                                                                                            Forest area (% of total land area)
## 14517                                                            Renewable energy consumption (% of total final energy consumption)
## 14518                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 14529                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 14540                                                                                          HIV prevalence, adult (% ages 15-49)
## 14543                                                                                              Life expectancy at birth (years)
## 14544                                                                                      Life expectancy at birth, female (years)
## 14545                                                                                        Life expectancy at birth, male (years)
## 14546                                                                                                         Life expectancy index
## 14548                                                                               Mortality rate, female adult (per 1,000 people)
## 14549                                                                                Mortality rate, infant (per 1,000 live births)
## 14550                                                                                 Mortality rate, male adult (per 1,000 people)
## 14551                                                                            Mortality rate, under-five (per 1,000 live births)
## 14560                                                                       Domestic credit provided by financial sector (% of GDP)
## 14561                                                                                                   GDP per capita (2011 PPP $)
## 14562                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 14563                                                                                      Gross fixed capital formation (% of GDP)
## 14564                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 14565                                                                                                                  Income index
## 14581                                                                                         Net migration rate (per 1,000 people)
## 14596                                                                                               Adjusted net savings (% of GNI)
## 14598                                                                                            Gross capital formation (% of GDP)
## 14604                                                                               Rural population with access to electricity (%)
## 14606                                                       Total debt service (% of exports of goods, services and primary income)
## 14607                                                                                                Exports and imports (% of GDP)
## 14608                                                                             Foreign direct investment, net inflows (% of GDP)
## 14609                                                                       Net official development assistance received (% of GNI)
## 14610                                                                                              Private capital flows (% of GDP)
## 14611                                                                                               Remittances, inflows (% of GDP)
## 14616                                                                         Labour force participation rate (% ages 15 and older)
## 14617                                                                 Labour force participation rate (% ages 15 and older), female
## 14618                                                                   Labour force participation rate (% ages 15 and older), male
## 14625                                                                                                 Human Development Index (HDI)
## 14626                                                                                                            Median age (years)
## 14627                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 14628                                                                                              Population ages 15–64 (millions)
## 14629                                                                                       Population ages 65 and older (millions)
## 14630                                                                                             Population under age 5 (millions)
## 14631                                                                                    Sex ratio at birth (male to female births)
## 14632                                                                                                   Total population (millions)
## 14633                                                                                                          Urban population (%)
## 14634                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 14635                                                                                                               Education index
## 14636                                                                                           Expected years of schooling (years)
## 14642                                                                                    Literacy rate, adult (% ages 15 and older)
## 14643                                                                                               Mean years of schooling (years)
## 14644                                                                                       Mean years of schooling, female (years)
## 14645                                                                                         Mean years of schooling, male (years)
## 14646                                                       Population with at least some secondary education (% ages 25 and older)
## 14647                                               Population with at least some secondary education, female (% ages 25 and older)
## 14648                                                 Population with at least some secondary education, male (% ages 25 and older)
## 14654                                                                      Pupil-teacher ratio, primary school (pupils per teacher)
## 14656                                                                           Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 14657                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 14658                                                                                            Forest area (% of total land area)
## 14660                                                                Fossil fuel energy consumption (% of total energy consumption)
## 14664                                                            Renewable energy consumption (% of total final energy consumption)
## 14665                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 14673                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 14682                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 14683                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 14684                                                                                              Life expectancy at birth (years)
## 14685                                                                                      Life expectancy at birth, female (years)
## 14686                                                                                        Life expectancy at birth, male (years)
## 14687                                                                                                         Life expectancy index
## 14688                                                                               Mortality rate, female adult (per 1,000 people)
## 14689                                                                                Mortality rate, infant (per 1,000 live births)
## 14690                                                                                 Mortality rate, male adult (per 1,000 people)
## 14691                                                                            Mortality rate, under-five (per 1,000 live births)
## 14699                                                                       Domestic credit provided by financial sector (% of GDP)
## 14700                                                                                                   GDP per capita (2011 PPP $)
## 14701                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 14702                                                                                      Gross fixed capital formation (% of GDP)
## 14703                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 14704                                                                                                                  Income index
## 14719                                                                                         Net migration rate (per 1,000 people)
## 14721                                                                                               Adjusted net savings (% of GNI)
## 14723                                                                                            Gross capital formation (% of GDP)
## 14729                                                                                                Exports and imports (% of GDP)
## 14730                                                                             Foreign direct investment, net inflows (% of GDP)
## 14731                                                                       Net official development assistance received (% of GNI)
## 14732                                                                                              Private capital flows (% of GDP)
## 14736                                                                         Labour force participation rate (% ages 15 and older)
## 14737                                                                 Labour force participation rate (% ages 15 and older), female
## 14738                                                                   Labour force participation rate (% ages 15 and older), male
## 14746                                                                                                            Median age (years)
## 14747                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 14748                                                                                              Population ages 15–64 (millions)
## 14749                                                                                       Population ages 65 and older (millions)
## 14750                                                                                             Population under age 5 (millions)
## 14751                                                                                    Sex ratio at birth (male to female births)
## 14752                                                                                                   Total population (millions)
## 14753                                                                                                          Urban population (%)
## 14754                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 14756                                                                                           Expected years of schooling (years)
## 14757                                                                                   Expected years of schooling, female (years)
## 14758                                                                                     Expected years of schooling, male (years)
## 14760                                                              Gross enrolment ratio, pre-primary (% of preschool-age children)
## 14761                                                           Gross enrolment ratio, primary (% of primary school-age population)
## 14762                                                       Gross enrolment ratio, secondary (% of secondary school-age population)
## 14764                                                                      Primary school dropout rate (% of primary school cohort)
## 14766                                                                      Pupil-teacher ratio, primary school (pupils per teacher)
## 14768                                                                           Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 14769                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 14770                                                                                            Forest area (% of total land area)
## 14772                                                                Fossil fuel energy consumption (% of total energy consumption)
## 14776                                                            Renewable energy consumption (% of total final energy consumption)
## 14777                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 14784                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 14785                                                                 Proportion of births attended by skilled health personnel (%)
## 14795                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 14796                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 14797                                                                                              Life expectancy at birth (years)
## 14798                                                                                      Life expectancy at birth, female (years)
## 14799                                                                                        Life expectancy at birth, male (years)
## 14800                                                                                                         Life expectancy index
## 14802                                                                               Mortality rate, female adult (per 1,000 people)
## 14803                                                                                Mortality rate, infant (per 1,000 live births)
## 14804                                                                                 Mortality rate, male adult (per 1,000 people)
## 14805                                                                            Mortality rate, under-five (per 1,000 live births)
## 14814                                                                       Domestic credit provided by financial sector (% of GDP)
## 14815                                                                                                   GDP per capita (2011 PPP $)
## 14816                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 14818                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 14819                                                                                                                  Income index
## 14835                                                                                         Net migration rate (per 1,000 people)
## 14837                                                                                               Adjusted net savings (% of GNI)
## 14839                                                                                            Gross capital formation (% of GDP)
## 14844                                                       Total debt service (% of exports of goods, services and primary income)
## 14845                                                                                                Exports and imports (% of GDP)
## 14846                                                                             Foreign direct investment, net inflows (% of GDP)
## 14847                                                                       Net official development assistance received (% of GNI)
## 14848                                                                                              Private capital flows (% of GDP)
## 14854                                                                         Labour force participation rate (% ages 15 and older)
## 14855                                                                 Labour force participation rate (% ages 15 and older), female
## 14856                                                                   Labour force participation rate (% ages 15 and older), male
## 14861                                                                                                            Median age (years)
## 14862                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 14863                                                                                              Population ages 15–64 (millions)
## 14864                                                                                       Population ages 65 and older (millions)
## 14865                                                                                             Population under age 5 (millions)
## 14866                                                                                    Sex ratio at birth (male to female births)
## 14867                                                                                                   Total population (millions)
## 14868                                                                                                          Urban population (%)
## 14869                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 14875                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 14876                                                                                            Forest area (% of total land area)
## 14882                                                            Renewable energy consumption (% of total final energy consumption)
## 14883                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 14887                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 14895                                                                                          HIV prevalence, adult (% ages 15-49)
## 14896                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 14897                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 14898                                                                                              Life expectancy at birth (years)
## 14899                                                                                      Life expectancy at birth, female (years)
## 14900                                                                                        Life expectancy at birth, male (years)
## 14901                                                                                                         Life expectancy index
## 14903                                                                               Mortality rate, female adult (per 1,000 people)
## 14904                                                                                Mortality rate, infant (per 1,000 live births)
## 14905                                                                                 Mortality rate, male adult (per 1,000 people)
## 14906                                                                            Mortality rate, under-five (per 1,000 live births)
## 14914                                                                                      Gross fixed capital formation (% of GDP)
## 14920                                                                                         Net migration rate (per 1,000 people)
## 14934                                                                                            Gross capital formation (% of GDP)
## 14937                                                                               Rural population with access to electricity (%)
## 14939                                                                                                Exports and imports (% of GDP)
## 14945                                                                         Labour force participation rate (% ages 15 and older)
## 14946                                                                 Labour force participation rate (% ages 15 and older), female
## 14947                                                                   Labour force participation rate (% ages 15 and older), male
## 14952                                                                                                 Human Development Index (HDI)
## 14953                                                                                                            Median age (years)
## 14954                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 14955                                                                                              Population ages 15–64 (millions)
## 14956                                                                                       Population ages 65 and older (millions)
## 14957                                                                                             Population under age 5 (millions)
## 14958                                                                                    Sex ratio at birth (male to female births)
## 14959                                                                                                   Total population (millions)
## 14960                                                                                                          Urban population (%)
## 14961                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 14962                                                                                                               Education index
## 14963                                                                                           Expected years of schooling (years)
## 14964                                                                                   Expected years of schooling, female (years)
## 14965                                                                                     Expected years of schooling, male (years)
## 14966                                                                                Government expenditure on education (% of GDP)
## 14968                                                           Gross enrolment ratio, primary (% of primary school-age population)
## 14969                                                       Gross enrolment ratio, secondary (% of secondary school-age population)
## 14970                                                         Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 14972                                                                                               Mean years of schooling (years)
## 14973                                                                                       Mean years of schooling, female (years)
## 14974                                                                                         Mean years of schooling, male (years)
## 14975                                                       Population with at least some secondary education (% ages 25 and older)
## 14976                                               Population with at least some secondary education, female (% ages 25 and older)
## 14977                                                 Population with at least some secondary education, male (% ages 25 and older)
## 14978                                                                      Primary school dropout rate (% of primary school cohort)
## 14981                                                      Survival rate to the last grade of lower secondary general education (%)
## 14982                                                                           Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 14983                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 14984                                                                                            Forest area (% of total land area)
## 14986                                                                Fossil fuel energy consumption (% of total energy consumption)
## 14987                                                                Fresh water withdrawals (% of total renewable water resources)
## 14991                                                            Renewable energy consumption (% of total final energy consumption)
## 14992                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 15005                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 15015                                                                                          HIV prevalence, adult (% ages 15-49)
## 15016                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 15017                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 15018                                                                                              Life expectancy at birth (years)
## 15019                                                                                      Life expectancy at birth, female (years)
## 15020                                                                                        Life expectancy at birth, male (years)
## 15021                                                                                                         Life expectancy index
## 15023                                                                               Mortality rate, female adult (per 1,000 people)
## 15024                                                                                Mortality rate, infant (per 1,000 live births)
## 15025                                                                                 Mortality rate, male adult (per 1,000 people)
## 15026                                                                            Mortality rate, under-five (per 1,000 live births)
## 15035                                                                       Domestic credit provided by financial sector (% of GDP)
## 15036                                                                                                   GDP per capita (2011 PPP $)
## 15037                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 15038                                                                                      Gross fixed capital formation (% of GDP)
## 15039                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 15040                                                                                                                  Income index
## 15057                                                                                         Net migration rate (per 1,000 people)
## 15072                                                                                               Adjusted net savings (% of GNI)
## 15074                                                                                            Gross capital formation (% of GDP)
## 15081                                                                               Rural population with access to electricity (%)
## 15084                                                                                                Exports and imports (% of GDP)
## 15085                                                                             Foreign direct investment, net inflows (% of GDP)
## 15087                                                                                              Private capital flows (% of GDP)
## 15088                                                                                               Remittances, inflows (% of GDP)
## 15092                                                                         Labour force participation rate (% ages 15 and older)
## 15093                                                                 Labour force participation rate (% ages 15 and older), female
## 15094                                                                   Labour force participation rate (% ages 15 and older), male
## 15101                                                                                                 Human Development Index (HDI)
## 15102                                                                                                            Median age (years)
## 15103                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 15104                                                                                              Population ages 15–64 (millions)
## 15105                                                                                       Population ages 65 and older (millions)
## 15106                                                                                             Population under age 5 (millions)
## 15107                                                                                    Sex ratio at birth (male to female births)
## 15108                                                                                                   Total population (millions)
## 15109                                                                                                          Urban population (%)
## 15110                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 15111                                                                                                               Education index
## 15112                                                                                           Expected years of schooling (years)
## 15113                                                                                   Expected years of schooling, female (years)
## 15114                                                                                     Expected years of schooling, male (years)
## 15115                                                                                Government expenditure on education (% of GDP)
## 15117                                                           Gross enrolment ratio, primary (% of primary school-age population)
## 15118                                                       Gross enrolment ratio, secondary (% of secondary school-age population)
## 15121                                                                                               Mean years of schooling (years)
## 15122                                                                                       Mean years of schooling, female (years)
## 15123                                                                                         Mean years of schooling, male (years)
## 15124                                                       Population with at least some secondary education (% ages 25 and older)
## 15125                                               Population with at least some secondary education, female (% ages 25 and older)
## 15126                                                 Population with at least some secondary education, male (% ages 25 and older)
## 15127                                                                      Primary school dropout rate (% of primary school cohort)
## 15131                                                      Survival rate to the last grade of lower secondary general education (%)
## 15132                                                                           Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 15133                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 15134                                                                                            Forest area (% of total land area)
## 15136                                                                Fossil fuel energy consumption (% of total energy consumption)
## 15137                                                                Fresh water withdrawals (% of total renewable water resources)
## 15141                                                            Renewable energy consumption (% of total final energy consumption)
## 15142                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 15154                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 15164                                                                                          HIV prevalence, adult (% ages 15-49)
## 15165                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 15166                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 15167                                                                                              Life expectancy at birth (years)
## 15168                                                                                      Life expectancy at birth, female (years)
## 15169                                                                                        Life expectancy at birth, male (years)
## 15170                                                                                                         Life expectancy index
## 15172                                                                               Mortality rate, female adult (per 1,000 people)
## 15173                                                                                Mortality rate, infant (per 1,000 live births)
## 15174                                                                                 Mortality rate, male adult (per 1,000 people)
## 15175                                                                            Mortality rate, under-five (per 1,000 live births)
## 15184                                                                       Domestic credit provided by financial sector (% of GDP)
## 15185                                                                                                   GDP per capita (2011 PPP $)
## 15186                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 15187                                                                                      Gross fixed capital formation (% of GDP)
## 15188                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 15189                                                                                                                  Income index
## 15206                                                                                         Net migration rate (per 1,000 people)
## 15208                                                                                               Adjusted net savings (% of GNI)
## 15210                                                                                            Gross capital formation (% of GDP)
## 15217                                                                               Rural population with access to electricity (%)
## 15219                                                       Total debt service (% of exports of goods, services and primary income)
## 15220                                                                                                Exports and imports (% of GDP)
## 15221                                                                             Foreign direct investment, net inflows (% of GDP)
## 15222                                                                       Net official development assistance received (% of GNI)
## 15223                                                                                              Private capital flows (% of GDP)
## 15224                                                                                               Remittances, inflows (% of GDP)
## 15228                                                                         Labour force participation rate (% ages 15 and older)
## 15229                                                                 Labour force participation rate (% ages 15 and older), female
## 15230                                                                   Labour force participation rate (% ages 15 and older), male
## 15237                                                                                                 Human Development Index (HDI)
## 15238                                                                                                            Median age (years)
## 15239                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 15240                                                                                              Population ages 15–64 (millions)
## 15241                                                                                       Population ages 65 and older (millions)
## 15242                                                                                             Population under age 5 (millions)
## 15243                                                                                    Sex ratio at birth (male to female births)
## 15244                                                                                                   Total population (millions)
## 15245                                                                                                          Urban population (%)
## 15246                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 15247                                                                                                               Education index
## 15248                                                                                           Expected years of schooling (years)
## 15257                                                                                               Mean years of schooling (years)
## 15258                                                                                       Mean years of schooling, female (years)
## 15259                                                                                         Mean years of schooling, male (years)
## 15260                                                       Population with at least some secondary education (% ages 25 and older)
## 15261                                               Population with at least some secondary education, female (% ages 25 and older)
## 15262                                                 Population with at least some secondary education, male (% ages 25 and older)
## 15268                                                                           Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 15269                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 15270                                                                                            Forest area (% of total land area)
## 15272                                                                Fossil fuel energy consumption (% of total energy consumption)
## 15277                                                            Renewable energy consumption (% of total final energy consumption)
## 15278                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 15281                        Contraceptive prevalence, any method (% of married or in-union women of reproductive age, 15–49 years)
## 15290                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 15291                                                                 Proportion of births attended by skilled health personnel (%)
## 15295                              Unmet need for family planning (% of married or in-union women of reproductive age, 15–49 years)
## 15300                                                                                          HIV prevalence, adult (% ages 15-49)
## 15301                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 15302                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 15303                                                                                              Life expectancy at birth (years)
## 15304                                                                                      Life expectancy at birth, female (years)
## 15305                                                                                        Life expectancy at birth, male (years)
## 15306                                                                                                         Life expectancy index
## 15308                                                                               Mortality rate, female adult (per 1,000 people)
## 15309                                                                                Mortality rate, infant (per 1,000 live births)
## 15310                                                                                 Mortality rate, male adult (per 1,000 people)
## 15311                                                                            Mortality rate, under-five (per 1,000 live births)
## 15320                                                                       Domestic credit provided by financial sector (% of GDP)
## 15321                                                                                                   GDP per capita (2011 PPP $)
## 15322                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 15323                                                                                      Gross fixed capital formation (% of GDP)
## 15324                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 15325                                                                                                                  Income index
## 15342                                                                                         Net migration rate (per 1,000 people)
## 15359                                                                                            Gross capital formation (% of GDP)
## 15364                                                                               Rural population with access to electricity (%)
## 15365                                                       Total debt service (% of exports of goods, services and primary income)
## 15366                                                                                                Exports and imports (% of GDP)
## 15367                                                                             Foreign direct investment, net inflows (% of GDP)
## 15368                                                                       Net official development assistance received (% of GNI)
## 15369                                                                                              Private capital flows (% of GDP)
## 15370                                                                                               Remittances, inflows (% of GDP)
## 15375                                                                         Labour force participation rate (% ages 15 and older)
## 15376                                                                 Labour force participation rate (% ages 15 and older), female
## 15377                                                                   Labour force participation rate (% ages 15 and older), male
## 15384                                                                                                            Median age (years)
## 15385                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 15386                                                                                              Population ages 15–64 (millions)
## 15387                                                                                       Population ages 65 and older (millions)
## 15388                                                                                             Population under age 5 (millions)
## 15389                                                                                    Sex ratio at birth (male to female births)
## 15390                                                                                                   Total population (millions)
## 15391                                                                                                          Urban population (%)
## 15392                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 15394                                                                                           Expected years of schooling (years)
## 15395                                                                                   Expected years of schooling, female (years)
## 15396                                                                                     Expected years of schooling, male (years)
## 15397                                                              Gross enrolment ratio, pre-primary (% of preschool-age children)
## 15398                                                           Gross enrolment ratio, primary (% of primary school-age population)
## 15399                                                       Gross enrolment ratio, secondary (% of secondary school-age population)
## 15400                                                         Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 15411                                                                      Pupil-teacher ratio, primary school (pupils per teacher)
## 15413                                                                           Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 15414                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 15415                                                                                            Forest area (% of total land area)
## 15423                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 15433                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 15434                                                                 Proportion of births attended by skilled health personnel (%)
## 15442                                                                                          HIV prevalence, adult (% ages 15-49)
## 15443                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 15444                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 15445                                                                                              Life expectancy at birth (years)
## 15446                                                                                      Life expectancy at birth, female (years)
## 15447                                                                                        Life expectancy at birth, male (years)
## 15448                                                                                                         Life expectancy index
## 15450                                                                               Mortality rate, female adult (per 1,000 people)
## 15451                                                                                Mortality rate, infant (per 1,000 live births)
## 15452                                                                                 Mortality rate, male adult (per 1,000 people)
## 15453                                                                            Mortality rate, under-five (per 1,000 live births)
## 15462                                                                       Domestic credit provided by financial sector (% of GDP)
## 15463                                                                                                   GDP per capita (2011 PPP $)
## 15464                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 15465                                                                                      Gross fixed capital formation (% of GDP)
## 15466                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 15467                                                                                                                  Income index
## 15480                                                                                         Net migration rate (per 1,000 people)
## 15495                                                                                            Gross capital formation (% of GDP)
## 15499                                                                               Rural population with access to electricity (%)
## 15501                                                                                                Exports and imports (% of GDP)
## 15502                                                                             Foreign direct investment, net inflows (% of GDP)
## 15503                                                                       Net official development assistance received (% of GNI)
## 15505                                                                                               Remittances, inflows (% of GDP)
## 15510                                                                         Labour force participation rate (% ages 15 and older)
## 15511                                                                 Labour force participation rate (% ages 15 and older), female
## 15512                                                                   Labour force participation rate (% ages 15 and older), male
## 15517                                                                                                 Human Development Index (HDI)
## 15518                                                                                                            Median age (years)
## 15519                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 15520                                                                                              Population ages 15–64 (millions)
## 15521                                                                                       Population ages 65 and older (millions)
## 15522                                                                                             Population under age 5 (millions)
## 15523                                                                                    Sex ratio at birth (male to female births)
## 15524                                                                                                   Total population (millions)
## 15525                                                                                                          Urban population (%)
## 15526                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 15527                                                                                                               Education index
## 15528                                                                                           Expected years of schooling (years)
## 15529                                                                                   Expected years of schooling, female (years)
## 15530                                                                                     Expected years of schooling, male (years)
## 15531                                                                                Government expenditure on education (% of GDP)
## 15532                                                              Gross enrolment ratio, pre-primary (% of preschool-age children)
## 15533                                                           Gross enrolment ratio, primary (% of primary school-age population)
## 15534                                                       Gross enrolment ratio, secondary (% of secondary school-age population)
## 15535                                                         Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 15536                                                                                               Mean years of schooling (years)
## 15537                                                                                       Mean years of schooling, female (years)
## 15538                                                                                         Mean years of schooling, male (years)
## 15539                                                       Population with at least some secondary education (% ages 25 and older)
## 15540                                               Population with at least some secondary education, female (% ages 25 and older)
## 15541                                                 Population with at least some secondary education, male (% ages 25 and older)
## 15542                                                                      Primary school dropout rate (% of primary school cohort)
## 15549                                                                           Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 15550                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 15551                                                                                            Forest area (% of total land area)
## 15553                                                                Fossil fuel energy consumption (% of total energy consumption)
## 15558                                                            Renewable energy consumption (% of total final energy consumption)
## 15559                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 15569                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 15578                                                                                          HIV prevalence, adult (% ages 15-49)
## 15579                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 15580                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 15581                                                                                              Life expectancy at birth (years)
## 15582                                                                                      Life expectancy at birth, female (years)
## 15583                                                                                        Life expectancy at birth, male (years)
## 15584                                                                                                         Life expectancy index
## 15585                                                                               Mortality rate, female adult (per 1,000 people)
## 15586                                                                                Mortality rate, infant (per 1,000 live births)
## 15587                                                                                 Mortality rate, male adult (per 1,000 people)
## 15588                                                                            Mortality rate, under-five (per 1,000 live births)
## 15598                                                                                                   GDP per capita (2011 PPP $)
## 15599                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 15600                                                                                      Gross fixed capital formation (% of GDP)
## 15601                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 15602                                                                                                                  Income index
## 15620                                                                                         Net migration rate (per 1,000 people)
## 15621                                                                                               Adjusted net savings (% of GNI)
## 15623                                                                                            Gross capital formation (% of GDP)
## 15630                                                                               Rural population with access to electricity (%)
## 15632                                                                                                Exports and imports (% of GDP)
## 15633                                                                             Foreign direct investment, net inflows (% of GDP)
## 15634                                                                                              Private capital flows (% of GDP)
## 15635                                                                                               Remittances, inflows (% of GDP)
## 15639                                                                         Labour force participation rate (% ages 15 and older)
## 15640                                                                 Labour force participation rate (% ages 15 and older), female
## 15641                                                                   Labour force participation rate (% ages 15 and older), male
## 15648                                                                                                 Human Development Index (HDI)
## 15649                                                                                                            Median age (years)
## 15650                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 15651                                                                                              Population ages 15–64 (millions)
## 15652                                                                                       Population ages 65 and older (millions)
## 15653                                                                                             Population under age 5 (millions)
## 15654                                                                                    Sex ratio at birth (male to female births)
## 15655                                                                                                   Total population (millions)
## 15656                                                                                                          Urban population (%)
## 15657                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 15658                                                                                                               Education index
## 15659                                                                                           Expected years of schooling (years)
## 15660                                                                                   Expected years of schooling, female (years)
## 15661                                                                                     Expected years of schooling, male (years)
## 15662                                                                                Government expenditure on education (% of GDP)
## 15663                                                              Gross enrolment ratio, pre-primary (% of preschool-age children)
## 15664                                                           Gross enrolment ratio, primary (% of primary school-age population)
## 15665                                                       Gross enrolment ratio, secondary (% of secondary school-age population)
## 15666                                                         Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 15667                                                                                               Mean years of schooling (years)
## 15668                                                                                       Mean years of schooling, female (years)
## 15669                                                                                         Mean years of schooling, male (years)
## 15670                                                       Population with at least some secondary education (% ages 25 and older)
## 15671                                               Population with at least some secondary education, female (% ages 25 and older)
## 15672                                                 Population with at least some secondary education, male (% ages 25 and older)
## 15679                                                                           Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 15680                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 15681                                                                                            Forest area (% of total land area)
## 15683                                                                Fossil fuel energy consumption (% of total energy consumption)
## 15688                                                            Renewable energy consumption (% of total final energy consumption)
## 15689                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 15700                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 15707                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 15708                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 15709                                                                                              Life expectancy at birth (years)
## 15710                                                                                      Life expectancy at birth, female (years)
## 15711                                                                                        Life expectancy at birth, male (years)
## 15712                                                                                                         Life expectancy index
## 15713                                                                               Mortality rate, female adult (per 1,000 people)
## 15714                                                                                Mortality rate, infant (per 1,000 live births)
## 15715                                                                                 Mortality rate, male adult (per 1,000 people)
## 15716                                                                            Mortality rate, under-five (per 1,000 live births)
## 15725                                                                       Domestic credit provided by financial sector (% of GDP)
## 15726                                                                                                   GDP per capita (2011 PPP $)
## 15727                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 15728                                                                                      Gross fixed capital formation (% of GDP)
## 15729                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 15730                                                                                                                  Income index
## 15748                                                                                         Net migration rate (per 1,000 people)
## 15749                                                                                               Adjusted net savings (% of GNI)
## 15751                                                                                            Gross capital formation (% of GDP)
## 15757                                                                               Rural population with access to electricity (%)
## 15759                                                                                                Exports and imports (% of GDP)
## 15760                                                                             Foreign direct investment, net inflows (% of GDP)
## 15761                                                                                              Private capital flows (% of GDP)
## 15762                                                                                               Remittances, inflows (% of GDP)
## 15766                                                                         Labour force participation rate (% ages 15 and older)
## 15767                                                                 Labour force participation rate (% ages 15 and older), female
## 15768                                                                   Labour force participation rate (% ages 15 and older), male
## 15776                                                                                                            Median age (years)
## 15777                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 15778                                                                                              Population ages 15–64 (millions)
## 15779                                                                                       Population ages 65 and older (millions)
## 15780                                                                                             Population under age 5 (millions)
## 15781                                                                                    Sex ratio at birth (male to female births)
## 15782                                                                                                   Total population (millions)
## 15783                                                                                                          Urban population (%)
## 15784                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 15785                                                                                                               Education index
## 15786                                                                                           Expected years of schooling (years)
## 15787                                                                                   Expected years of schooling, female (years)
## 15788                                                                                     Expected years of schooling, male (years)
## 15790                                                              Gross enrolment ratio, pre-primary (% of preschool-age children)
## 15791                                                           Gross enrolment ratio, primary (% of primary school-age population)
## 15792                                                       Gross enrolment ratio, secondary (% of secondary school-age population)
## 15793                                                         Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 15794                                                                                               Mean years of schooling (years)
## 15795                                                                                       Mean years of schooling, female (years)
## 15796                                                                                         Mean years of schooling, male (years)
## 15797                                                       Population with at least some secondary education (% ages 25 and older)
## 15798                                               Population with at least some secondary education, female (% ages 25 and older)
## 15799                                                 Population with at least some secondary education, male (% ages 25 and older)
## 15800                                                                      Primary school dropout rate (% of primary school cohort)
## 15802                                                                      Pupil-teacher ratio, primary school (pupils per teacher)
## 15803                                                      Survival rate to the last grade of lower secondary general education (%)
## 15804                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 15805                                                                                            Forest area (% of total land area)
## 15807                                                                Fossil fuel energy consumption (% of total energy consumption)
## 15812                                                            Renewable energy consumption (% of total final energy consumption)
## 15813                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 15825                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 15835                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 15836                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 15837                                                                                              Life expectancy at birth (years)
## 15838                                                                                      Life expectancy at birth, female (years)
## 15839                                                                                        Life expectancy at birth, male (years)
## 15840                                                                                                         Life expectancy index
## 15841                                                                               Mortality rate, female adult (per 1,000 people)
## 15842                                                                                Mortality rate, infant (per 1,000 live births)
## 15843                                                                                 Mortality rate, male adult (per 1,000 people)
## 15844                                                                            Mortality rate, under-five (per 1,000 live births)
## 15853                                                                       Domestic credit provided by financial sector (% of GDP)
## 15854                                                                                      Gross fixed capital formation (% of GDP)
## 15869                                                                                         Net migration rate (per 1,000 people)
## 15884                                                                                            Gross capital formation (% of GDP)
## 15887                                                                               Rural population with access to electricity (%)
## 15889                                                                                                Exports and imports (% of GDP)
## 15890                                                                             Foreign direct investment, net inflows (% of GDP)
## 15891                                                                       Net official development assistance received (% of GNI)
## 15892                                                                                              Private capital flows (% of GDP)
## 15893                                                                                               Remittances, inflows (% of GDP)
## 15897                                                                         Labour force participation rate (% ages 15 and older)
## 15898                                                                 Labour force participation rate (% ages 15 and older), female
## 15899                                                                   Labour force participation rate (% ages 15 and older), male
## 15905                                                                                                 Human Development Index (HDI)
## 15906                                                                                                            Median age (years)
## 15907                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 15908                                                                                              Population ages 15–64 (millions)
## 15909                                                                                       Population ages 65 and older (millions)
## 15910                                                                                             Population under age 5 (millions)
## 15911                                                                                    Sex ratio at birth (male to female births)
## 15912                                                                                                   Total population (millions)
## 15913                                                                                                          Urban population (%)
## 15914                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 15915                                                                                                               Education index
## 15916                                                                                           Expected years of schooling (years)
## 15923                                                         Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 15925                                                                                               Mean years of schooling (years)
## 15926                                                                                       Mean years of schooling, female (years)
## 15927                                                                                         Mean years of schooling, male (years)
## 15928                                                       Population with at least some secondary education (% ages 25 and older)
## 15929                                               Population with at least some secondary education, female (% ages 25 and older)
## 15930                                                 Population with at least some secondary education, male (% ages 25 and older)
## 15937                                                                                            Forest area (% of total land area)
## 15939                                                                Fossil fuel energy consumption (% of total energy consumption)
## 15944                                                            Renewable energy consumption (% of total final energy consumption)
## 15945                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 15956                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 15967                                                                                          HIV prevalence, adult (% ages 15-49)
## 15970                                                                                              Life expectancy at birth (years)
## 15971                                                                                      Life expectancy at birth, female (years)
## 15972                                                                                        Life expectancy at birth, male (years)
## 15973                                                                                                         Life expectancy index
## 15975                                                                               Mortality rate, female adult (per 1,000 people)
## 15976                                                                                Mortality rate, infant (per 1,000 live births)
## 15977                                                                                 Mortality rate, male adult (per 1,000 people)
## 15978                                                                            Mortality rate, under-five (per 1,000 live births)
## 15988                                                                                                   GDP per capita (2011 PPP $)
## 15989                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 15990                                                                                      Gross fixed capital formation (% of GDP)
## 15991                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 15992                                                                                                                  Income index
## 16009                                                                                         Net migration rate (per 1,000 people)
## 16026                                                                                            Gross capital formation (% of GDP)
## 16033                                                                               Rural population with access to electricity (%)
## 16036                                                                                                Exports and imports (% of GDP)
## 16044                                                                         Labour force participation rate (% ages 15 and older)
## 16045                                                                 Labour force participation rate (% ages 15 and older), female
## 16046                                                                   Labour force participation rate (% ages 15 and older), male
## 16053                                                                                                 Human Development Index (HDI)
## 16054                                                                                                            Median age (years)
## 16055                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 16056                                                                                              Population ages 15–64 (millions)
## 16057                                                                                       Population ages 65 and older (millions)
## 16058                                                                                             Population under age 5 (millions)
## 16059                                                                                    Sex ratio at birth (male to female births)
## 16060                                                                                                   Total population (millions)
## 16061                                                                                                          Urban population (%)
## 16062                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 16063                                                                                                               Education index
## 16064                                                                                           Expected years of schooling (years)
## 16065                                                                                   Expected years of schooling, female (years)
## 16066                                                                                     Expected years of schooling, male (years)
## 16068                                                              Gross enrolment ratio, pre-primary (% of preschool-age children)
## 16069                                                           Gross enrolment ratio, primary (% of primary school-age population)
## 16070                                                       Gross enrolment ratio, secondary (% of secondary school-age population)
## 16071                                                         Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 16073                                                                                               Mean years of schooling (years)
## 16074                                                                                       Mean years of schooling, female (years)
## 16075                                                                                         Mean years of schooling, male (years)
## 16076                                                       Population with at least some secondary education (% ages 25 and older)
## 16077                                               Population with at least some secondary education, female (% ages 25 and older)
## 16078                                                 Population with at least some secondary education, male (% ages 25 and older)
## 16085                                                                      Pupil-teacher ratio, primary school (pupils per teacher)
## 16087                                                                           Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 16088                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 16089                                                                                            Forest area (% of total land area)
## 16091                                                                Fossil fuel energy consumption (% of total energy consumption)
## 16096                                                            Renewable energy consumption (% of total final energy consumption)
## 16097                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 16110                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 16111                                                                 Proportion of births attended by skilled health personnel (%)
## 16120                                                                                          HIV prevalence, adult (% ages 15-49)
## 16121                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 16122                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 16123                                                                                              Life expectancy at birth (years)
## 16124                                                                                      Life expectancy at birth, female (years)
## 16125                                                                                        Life expectancy at birth, male (years)
## 16126                                                                                                         Life expectancy index
## 16128                                                                               Mortality rate, female adult (per 1,000 people)
## 16129                                                                                Mortality rate, infant (per 1,000 live births)
## 16130                                                                                 Mortality rate, male adult (per 1,000 people)
## 16131                                                                            Mortality rate, under-five (per 1,000 live births)
## 16140                                                                       Domestic credit provided by financial sector (% of GDP)
## 16141                                                                                                   GDP per capita (2011 PPP $)
## 16142                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 16143                                                                                      Gross fixed capital formation (% of GDP)
## 16144                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 16145                                                                                                                  Income index
## 16163                                                                                         Net migration rate (per 1,000 people)
## 16178                                                                                               Adjusted net savings (% of GNI)
## 16180                                                                                            Gross capital formation (% of GDP)
## 16187                                                                               Rural population with access to electricity (%)
## 16189                                                       Total debt service (% of exports of goods, services and primary income)
## 16190                                                                                                Exports and imports (% of GDP)
## 16191                                                                             Foreign direct investment, net inflows (% of GDP)
## 16192                                                                       Net official development assistance received (% of GNI)
## 16193                                                                                              Private capital flows (% of GDP)
## 16194                                                                                               Remittances, inflows (% of GDP)
## 16198                                                                         Labour force participation rate (% ages 15 and older)
## 16199                                                                 Labour force participation rate (% ages 15 and older), female
## 16200                                                                   Labour force participation rate (% ages 15 and older), male
## 16208                                                                                                            Median age (years)
## 16209                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 16210                                                                                              Population ages 15–64 (millions)
## 16211                                                                                       Population ages 65 and older (millions)
## 16212                                                                                             Population under age 5 (millions)
## 16213                                                                                    Sex ratio at birth (male to female births)
## 16214                                                                                                   Total population (millions)
## 16215                                                                                                          Urban population (%)
## 16216                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 16218                                                                                           Expected years of schooling (years)
## 16219                                                                                   Expected years of schooling, female (years)
## 16220                                                                                     Expected years of schooling, male (years)
## 16225                                                         Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 16240                                                                                            Forest area (% of total land area)
## 16242                                                                Fossil fuel energy consumption (% of total energy consumption)
## 16247                                                            Renewable energy consumption (% of total final energy consumption)
## 16248                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 16261                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 16262                                                                 Proportion of births attended by skilled health personnel (%)
## 16271                                                                                          HIV prevalence, adult (% ages 15-49)
## 16274                                                                                              Life expectancy at birth (years)
## 16275                                                                                      Life expectancy at birth, female (years)
## 16276                                                                                        Life expectancy at birth, male (years)
## 16277                                                                                                         Life expectancy index
## 16278                                                                               Mortality rate, female adult (per 1,000 people)
## 16279                                                                                Mortality rate, infant (per 1,000 live births)
## 16280                                                                                 Mortality rate, male adult (per 1,000 people)
## 16281                                                                            Mortality rate, under-five (per 1,000 live births)
## 16291                                                                                                   GDP per capita (2011 PPP $)
## 16292                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 16293                                                                                      Gross fixed capital formation (% of GDP)
## 16294                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 16295                                                                                                                  Income index
## 16313                                                                                         Net migration rate (per 1,000 people)
## 16330                                                                                            Gross capital formation (% of GDP)
## 16335                                                                               Rural population with access to electricity (%)
## 16338                                                                                                Exports and imports (% of GDP)
## 16347                                                                         Labour force participation rate (% ages 15 and older)
## 16348                                                                 Labour force participation rate (% ages 15 and older), female
## 16349                                                                   Labour force participation rate (% ages 15 and older), male
## 16356                                                                                                 Human Development Index (HDI)
## 16357                                                                                                            Median age (years)
## 16358                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 16359                                                                                              Population ages 15–64 (millions)
## 16360                                                                                       Population ages 65 and older (millions)
## 16361                                                                                             Population under age 5 (millions)
## 16362                                                                                    Sex ratio at birth (male to female births)
## 16363                                                                                                   Total population (millions)
## 16364                                                                                                          Urban population (%)
## 16365                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 16366                                                                                                               Education index
## 16367                                                                                           Expected years of schooling (years)
## 16368                                                                                   Expected years of schooling, female (years)
## 16369                                                                                     Expected years of schooling, male (years)
## 16371                                                              Gross enrolment ratio, pre-primary (% of preschool-age children)
## 16372                                                           Gross enrolment ratio, primary (% of primary school-age population)
## 16373                                                       Gross enrolment ratio, secondary (% of secondary school-age population)
## 16374                                                         Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 16376                                                                                               Mean years of schooling (years)
## 16377                                                                                       Mean years of schooling, female (years)
## 16378                                                                                         Mean years of schooling, male (years)
## 16379                                                       Population with at least some secondary education (% ages 25 and older)
## 16380                                               Population with at least some secondary education, female (% ages 25 and older)
## 16381                                                 Population with at least some secondary education, male (% ages 25 and older)
## 16382                                                                      Primary school dropout rate (% of primary school cohort)
## 16384                                                                      Pupil-teacher ratio, primary school (pupils per teacher)
## 16385                                                      Survival rate to the last grade of lower secondary general education (%)
## 16386                                                                           Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 16387                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 16388                                                                                            Forest area (% of total land area)
## 16390                                                                Fossil fuel energy consumption (% of total energy consumption)
## 16394                                                            Renewable energy consumption (% of total final energy consumption)
## 16395                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 16406                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 16417                                                                                          HIV prevalence, adult (% ages 15-49)
## 16418                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 16419                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 16420                                                                                              Life expectancy at birth (years)
## 16421                                                                                      Life expectancy at birth, female (years)
## 16422                                                                                        Life expectancy at birth, male (years)
## 16423                                                                                                         Life expectancy index
## 16425                                                                               Mortality rate, female adult (per 1,000 people)
## 16426                                                                                Mortality rate, infant (per 1,000 live births)
## 16427                                                                                 Mortality rate, male adult (per 1,000 people)
## 16428                                                                            Mortality rate, under-five (per 1,000 live births)
## 16437                                                                       Domestic credit provided by financial sector (% of GDP)
## 16438                                                                                                   GDP per capita (2011 PPP $)
## 16439                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 16440                                                                                      Gross fixed capital formation (% of GDP)
## 16441                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 16442                                                                                                                  Income index
## 16459                                                                                         Net migration rate (per 1,000 people)
## 16474                                                                                               Adjusted net savings (% of GNI)
## 16476                                                                                            Gross capital formation (% of GDP)
## 16484                                                       Total debt service (% of exports of goods, services and primary income)
## 16485                                                                                                Exports and imports (% of GDP)
## 16486                                                                             Foreign direct investment, net inflows (% of GDP)
## 16487                                                                       Net official development assistance received (% of GNI)
## 16488                                                                                              Private capital flows (% of GDP)
## 16489                                                                                               Remittances, inflows (% of GDP)
## 16494                                                                         Labour force participation rate (% ages 15 and older)
## 16495                                                                 Labour force participation rate (% ages 15 and older), female
## 16496                                                                   Labour force participation rate (% ages 15 and older), male
## 16503                                                                                                 Human Development Index (HDI)
## 16504                                                                                                            Median age (years)
## 16505                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 16506                                                                                              Population ages 15–64 (millions)
## 16507                                                                                       Population ages 65 and older (millions)
## 16508                                                                                             Population under age 5 (millions)
## 16509                                                                                    Sex ratio at birth (male to female births)
## 16510                                                                                                   Total population (millions)
## 16511                                                                                                          Urban population (%)
## 16512                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 16513                                                                                                               Education index
## 16514                                                                                           Expected years of schooling (years)
## 16519                                                           Gross enrolment ratio, primary (% of primary school-age population)
## 16520                                                       Gross enrolment ratio, secondary (% of secondary school-age population)
## 16523                                                                                               Mean years of schooling (years)
## 16524                                                                                       Mean years of schooling, female (years)
## 16525                                                                                         Mean years of schooling, male (years)
## 16526                                                       Population with at least some secondary education (% ages 25 and older)
## 16527                                               Population with at least some secondary education, female (% ages 25 and older)
## 16528                                                 Population with at least some secondary education, male (% ages 25 and older)
## 16531                                                                      Pupil-teacher ratio, primary school (pupils per teacher)
## 16532                                                                           Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 16533                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 16534                                                                                            Forest area (% of total land area)
## 16536                                                                Fossil fuel energy consumption (% of total energy consumption)
## 16540                                                            Renewable energy consumption (% of total final energy consumption)
## 16541                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 16551                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 16552                                                                 Proportion of births attended by skilled health personnel (%)
## 16562                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 16563                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 16564                                                                                              Life expectancy at birth (years)
## 16565                                                                                      Life expectancy at birth, female (years)
## 16566                                                                                        Life expectancy at birth, male (years)
## 16567                                                                                                         Life expectancy index
## 16568                                                                               Mortality rate, female adult (per 1,000 people)
## 16569                                                                                Mortality rate, infant (per 1,000 live births)
## 16570                                                                                 Mortality rate, male adult (per 1,000 people)
## 16571                                                                            Mortality rate, under-five (per 1,000 live births)
## 16580                                                                       Domestic credit provided by financial sector (% of GDP)
## 16581                                                                                                   GDP per capita (2011 PPP $)
## 16582                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 16583                                                                                      Gross fixed capital formation (% of GDP)
## 16584                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 16585                                                                                                                  Income index
## 16596                                                                                         Net migration rate (per 1,000 people)
## 16597                                                                                               Adjusted net savings (% of GNI)
## 16599                                                                                            Gross capital formation (% of GDP)
## 16603                                                                               Rural population with access to electricity (%)
## 16604                                                       Total debt service (% of exports of goods, services and primary income)
## 16605                                                                                                Exports and imports (% of GDP)
## 16606                                                                             Foreign direct investment, net inflows (% of GDP)
## 16607                                                                       Net official development assistance received (% of GNI)
## 16608                                                                                              Private capital flows (% of GDP)
## 16609                                                                                               Remittances, inflows (% of GDP)
## 16613                                                                         Labour force participation rate (% ages 15 and older)
## 16614                                                                 Labour force participation rate (% ages 15 and older), female
## 16615                                                                   Labour force participation rate (% ages 15 and older), male
## 16621                                                                                                 Human Development Index (HDI)
## 16622                                                                                                            Median age (years)
## 16623                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 16624                                                                                              Population ages 15–64 (millions)
## 16625                                                                                       Population ages 65 and older (millions)
## 16626                                                                                             Population under age 5 (millions)
## 16627                                                                                    Sex ratio at birth (male to female births)
## 16628                                                                                                   Total population (millions)
## 16629                                                                                                          Urban population (%)
## 16630                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 16631                                                                                                               Education index
## 16632                                                                                           Expected years of schooling (years)
## 16633                                                                                   Expected years of schooling, female (years)
## 16634                                                                                     Expected years of schooling, male (years)
## 16635                                                                                Government expenditure on education (% of GDP)
## 16636                                                              Gross enrolment ratio, pre-primary (% of preschool-age children)
## 16637                                                           Gross enrolment ratio, primary (% of primary school-age population)
## 16638                                                       Gross enrolment ratio, secondary (% of secondary school-age population)
## 16640                                                                                    Literacy rate, adult (% ages 15 and older)
## 16641                                                                                               Mean years of schooling (years)
## 16642                                                                                       Mean years of schooling, female (years)
## 16643                                                                                         Mean years of schooling, male (years)
## 16644                                                       Population with at least some secondary education (% ages 25 and older)
## 16645                                               Population with at least some secondary education, female (% ages 25 and older)
## 16646                                                 Population with at least some secondary education, male (% ages 25 and older)
## 16655                                                                           Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 16656                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 16657                                                                                            Forest area (% of total land area)
## 16659                                                                Fossil fuel energy consumption (% of total energy consumption)
## 16664                                                            Renewable energy consumption (% of total final energy consumption)
## 16665                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 16676                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 16688                                                                                          HIV prevalence, adult (% ages 15-49)
## 16689                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 16690                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 16691                                                                                              Life expectancy at birth (years)
## 16692                                                                                      Life expectancy at birth, female (years)
## 16693                                                                                        Life expectancy at birth, male (years)
## 16694                                                                                                         Life expectancy index
## 16695                                                                               Mortality rate, female adult (per 1,000 people)
## 16696                                                                                Mortality rate, infant (per 1,000 live births)
## 16697                                                                                 Mortality rate, male adult (per 1,000 people)
## 16698                                                                            Mortality rate, under-five (per 1,000 live births)
## 16707                                                                       Domestic credit provided by financial sector (% of GDP)
## 16708                                                                                                   GDP per capita (2011 PPP $)
## 16709                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 16710                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 16711                                                                                                                  Income index
## 16725                                                                                         Net migration rate (per 1,000 people)
## 16738                                                                                               Adjusted net savings (% of GNI)
## 16743                                                                               Rural population with access to electricity (%)
## 16745                                                                             Foreign direct investment, net inflows (% of GDP)
## 16746                                                                       Net official development assistance received (% of GNI)
## 16747                                                                                              Private capital flows (% of GDP)
## 16748                                                                                               Remittances, inflows (% of GDP)
## 16752                                                                         Labour force participation rate (% ages 15 and older)
## 16753                                                                 Labour force participation rate (% ages 15 and older), female
## 16754                                                                   Labour force participation rate (% ages 15 and older), male
## 16761                                                                                                 Human Development Index (HDI)
## 16762                                                                                                            Median age (years)
## 16763                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 16764                                                                                              Population ages 15–64 (millions)
## 16765                                                                                       Population ages 65 and older (millions)
## 16766                                                                                             Population under age 5 (millions)
## 16767                                                                                    Sex ratio at birth (male to female births)
## 16768                                                                                                   Total population (millions)
## 16769                                                                                                          Urban population (%)
## 16770                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 16771                                                                                                               Education index
## 16772                                                                                           Expected years of schooling (years)
## 16773                                                                                   Expected years of schooling, female (years)
## 16774                                                                                     Expected years of schooling, male (years)
## 16775                                                                                Government expenditure on education (% of GDP)
## 16776                                                              Gross enrolment ratio, pre-primary (% of preschool-age children)
## 16777                                                           Gross enrolment ratio, primary (% of primary school-age population)
## 16778                                                       Gross enrolment ratio, secondary (% of secondary school-age population)
## 16779                                                         Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 16781                                                                                               Mean years of schooling (years)
## 16782                                                                                       Mean years of schooling, female (years)
## 16783                                                                                         Mean years of schooling, male (years)
## 16784                                                       Population with at least some secondary education (% ages 25 and older)
## 16785                                               Population with at least some secondary education, female (% ages 25 and older)
## 16786                                                 Population with at least some secondary education, male (% ages 25 and older)
## 16787                                                                      Primary school dropout rate (% of primary school cohort)
## 16793                                                                      Pupil-teacher ratio, primary school (pupils per teacher)
## 16794                                                      Survival rate to the last grade of lower secondary general education (%)
## 16795                                                                           Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 16796                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 16797                                                                                            Forest area (% of total land area)
## 16799                                                                Fossil fuel energy consumption (% of total energy consumption)
## 16800                                                                Fresh water withdrawals (% of total renewable water resources)
## 16804                                                            Renewable energy consumption (% of total final energy consumption)
## 16805                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 16817                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 16827                                                                                          HIV prevalence, adult (% ages 15-49)
## 16828                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 16829                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 16830                                                                                              Life expectancy at birth (years)
## 16831                                                                                      Life expectancy at birth, female (years)
## 16832                                                                                        Life expectancy at birth, male (years)
## 16833                                                                                                         Life expectancy index
## 16834                                                                               Mortality rate, female adult (per 1,000 people)
## 16835                                                                                Mortality rate, infant (per 1,000 live births)
## 16836                                                                                 Mortality rate, male adult (per 1,000 people)
## 16837                                                                            Mortality rate, under-five (per 1,000 live births)
## 16846                                                                       Domestic credit provided by financial sector (% of GDP)
## 16847                                                                                                   GDP per capita (2011 PPP $)
## 16848                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 16849                                                                                      Gross fixed capital formation (% of GDP)
## 16850                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 16851                                                                                                                  Income index
## 16868                                                                                         Net migration rate (per 1,000 people)
## 16883                                                                                               Adjusted net savings (% of GNI)
## 16885                                                                                            Gross capital formation (% of GDP)
## 16892                                                                               Rural population with access to electricity (%)
## 16894                                                       Total debt service (% of exports of goods, services and primary income)
## 16895                                                                                                Exports and imports (% of GDP)
## 16896                                                                             Foreign direct investment, net inflows (% of GDP)
## 16897                                                                       Net official development assistance received (% of GNI)
## 16898                                                                                              Private capital flows (% of GDP)
## 16899                                                                                               Remittances, inflows (% of GDP)
## 16904                                                                         Labour force participation rate (% ages 15 and older)
## 16905                                                                 Labour force participation rate (% ages 15 and older), female
## 16906                                                                   Labour force participation rate (% ages 15 and older), male
## 16912                                                                                                 Human Development Index (HDI)
## 16913                                                                                                            Median age (years)
## 16914                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 16915                                                                                              Population ages 15–64 (millions)
## 16916                                                                                       Population ages 65 and older (millions)
## 16917                                                                                             Population under age 5 (millions)
## 16918                                                                                    Sex ratio at birth (male to female births)
## 16919                                                                                                   Total population (millions)
## 16920                                                                                                          Urban population (%)
## 16921                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 16922                                                                                                               Education index
## 16923                                                                                           Expected years of schooling (years)
## 16924                                                                                   Expected years of schooling, female (years)
## 16925                                                                                     Expected years of schooling, male (years)
## 16927                                                              Gross enrolment ratio, pre-primary (% of preschool-age children)
## 16928                                                           Gross enrolment ratio, primary (% of primary school-age population)
## 16929                                                       Gross enrolment ratio, secondary (% of secondary school-age population)
## 16930                                                         Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 16931                                                                                    Literacy rate, adult (% ages 15 and older)
## 16932                                                                                               Mean years of schooling (years)
## 16933                                                                                       Mean years of schooling, female (years)
## 16934                                                                                         Mean years of schooling, male (years)
## 16935                                                       Population with at least some secondary education (% ages 25 and older)
## 16936                                               Population with at least some secondary education, female (% ages 25 and older)
## 16937                                                 Population with at least some secondary education, male (% ages 25 and older)
## 16938                                                                      Primary school dropout rate (% of primary school cohort)
## 16943                                                                      Pupil-teacher ratio, primary school (pupils per teacher)
## 16944                                                      Survival rate to the last grade of lower secondary general education (%)
## 16945                                                                           Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 16946                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 16947                                                                                            Forest area (% of total land area)
## 16949                                                                Fossil fuel energy consumption (% of total energy consumption)
## 16954                                                            Renewable energy consumption (% of total final energy consumption)
## 16955                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 16968                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 16979                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 16980                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 16981                                                                                              Life expectancy at birth (years)
## 16982                                                                                      Life expectancy at birth, female (years)
## 16983                                                                                        Life expectancy at birth, male (years)
## 16984                                                                                                         Life expectancy index
## 16986                                                                               Mortality rate, female adult (per 1,000 people)
## 16987                                                                                Mortality rate, infant (per 1,000 live births)
## 16988                                                                                 Mortality rate, male adult (per 1,000 people)
## 16989                                                                            Mortality rate, under-five (per 1,000 live births)
## 16998                                                                       Domestic credit provided by financial sector (% of GDP)
## 16999                                                                                                   GDP per capita (2011 PPP $)
## 17000                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 17001                                                                                      Gross fixed capital formation (% of GDP)
## 17002                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 17003                                                                                                                  Income index
## 17021                                                                                         Net migration rate (per 1,000 people)
## 17023                                                                                               Adjusted net savings (% of GNI)
## 17025                                                                                            Gross capital formation (% of GDP)
## 17032                                                                               Rural population with access to electricity (%)
## 17034                                                       Total debt service (% of exports of goods, services and primary income)
## 17035                                                                                                Exports and imports (% of GDP)
## 17036                                                                             Foreign direct investment, net inflows (% of GDP)
## 17037                                                                       Net official development assistance received (% of GNI)
## 17038                                                                                              Private capital flows (% of GDP)
## 17039                                                                                               Remittances, inflows (% of GDP)
## 17043                                                                         Labour force participation rate (% ages 15 and older)
## 17044                                                                 Labour force participation rate (% ages 15 and older), female
## 17045                                                                   Labour force participation rate (% ages 15 and older), male
## 17053                                                                                                            Median age (years)
## 17054                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 17055                                                                                              Population ages 15–64 (millions)
## 17056                                                                                       Population ages 65 and older (millions)
## 17057                                                                                             Population under age 5 (millions)
## 17058                                                                                    Sex ratio at birth (male to female births)
## 17059                                                                                                   Total population (millions)
## 17060                                                                                                          Urban population (%)
## 17061                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 17070                                                         Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 17077                                                                                            Forest area (% of total land area)
## 17083                                                            Renewable energy consumption (% of total final energy consumption)
## 17084                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 17090                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 17102                                                                                              Life expectancy at birth (years)
## 17103                                                                                      Life expectancy at birth, female (years)
## 17104                                                                                        Life expectancy at birth, male (years)
## 17105                                                                                                         Life expectancy index
## 17106                                                                               Mortality rate, female adult (per 1,000 people)
## 17107                                                                                Mortality rate, infant (per 1,000 live births)
## 17108                                                                                 Mortality rate, male adult (per 1,000 people)
## 17109                                                                            Mortality rate, under-five (per 1,000 live births)
## 17118                                                                                                   GDP per capita (2011 PPP $)
## 17119                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 17121                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 17122                                                                                                                  Income index
## 17136                                                                                         Net migration rate (per 1,000 people)
## 17150                                                                                            Gross capital formation (% of GDP)
## 17154                                                                               Rural population with access to electricity (%)
## 17163                                                                         Labour force participation rate (% ages 15 and older)
## 17164                                                                 Labour force participation rate (% ages 15 and older), female
## 17165                                                                   Labour force participation rate (% ages 15 and older), male
## 17170                                                                                                 Human Development Index (HDI)
## 17171                                                                                                            Median age (years)
## 17172                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 17173                                                                                              Population ages 15–64 (millions)
## 17174                                                                                       Population ages 65 and older (millions)
## 17175                                                                                             Population under age 5 (millions)
## 17176                                                                                    Sex ratio at birth (male to female births)
## 17177                                                                                                   Total population (millions)
## 17178                                                                                                          Urban population (%)
## 17179                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 17180                                                                                                               Education index
## 17181                                                                                           Expected years of schooling (years)
## 17182                                                                                   Expected years of schooling, female (years)
## 17183                                                                                     Expected years of schooling, male (years)
## 17186                                                           Gross enrolment ratio, primary (% of primary school-age population)
## 17187                                                       Gross enrolment ratio, secondary (% of secondary school-age population)
## 17188                                                         Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 17190                                                                                               Mean years of schooling (years)
## 17191                                                                                       Mean years of schooling, female (years)
## 17192                                                                                         Mean years of schooling, male (years)
## 17193                                                       Population with at least some secondary education (% ages 25 and older)
## 17194                                               Population with at least some secondary education, female (% ages 25 and older)
## 17195                                                 Population with at least some secondary education, male (% ages 25 and older)
## 17197                                                                      Pupil-teacher ratio, primary school (pupils per teacher)
## 17199                                                                           Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 17200                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 17201                                                                                            Forest area (% of total land area)
## 17207                                                            Renewable energy consumption (% of total final energy consumption)
## 17208                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 17220                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 17231                                                                                          HIV prevalence, adult (% ages 15-49)
## 17232                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 17233                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 17234                                                                                              Life expectancy at birth (years)
## 17235                                                                                      Life expectancy at birth, female (years)
## 17236                                                                                        Life expectancy at birth, male (years)
## 17237                                                                                                         Life expectancy index
## 17239                                                                               Mortality rate, female adult (per 1,000 people)
## 17240                                                                                Mortality rate, infant (per 1,000 live births)
## 17241                                                                                 Mortality rate, male adult (per 1,000 people)
## 17242                                                                            Mortality rate, under-five (per 1,000 live births)
## 17252                                                                                                   GDP per capita (2011 PPP $)
## 17253                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 17254                                                                                      Gross fixed capital formation (% of GDP)
## 17255                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 17256                                                                                                                  Income index
## 17273                                                                                         Net migration rate (per 1,000 people)
## 17288                                                                                               Adjusted net savings (% of GNI)
## 17290                                                                                            Gross capital formation (% of GDP)
## 17298                                                       Total debt service (% of exports of goods, services and primary income)
## 17299                                                                                                Exports and imports (% of GDP)
## 17300                                                                             Foreign direct investment, net inflows (% of GDP)
## 17301                                                                       Net official development assistance received (% of GNI)
## 17302                                                                                              Private capital flows (% of GDP)
## 17308                                                                         Labour force participation rate (% ages 15 and older)
## 17309                                                                 Labour force participation rate (% ages 15 and older), female
## 17310                                                                   Labour force participation rate (% ages 15 and older), male
## 17317                                                                                                 Human Development Index (HDI)
## 17318                                                                                                            Median age (years)
## 17319                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 17320                                                                                              Population ages 15–64 (millions)
## 17321                                                                                       Population ages 65 and older (millions)
## 17322                                                                                             Population under age 5 (millions)
## 17323                                                                                    Sex ratio at birth (male to female births)
## 17324                                                                                                   Total population (millions)
## 17325                                                                                                          Urban population (%)
## 17326                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 17327                                                                                                               Education index
## 17328                                                                                           Expected years of schooling (years)
## 17329                                                                                   Expected years of schooling, female (years)
## 17330                                                                                     Expected years of schooling, male (years)
## 17332                                                              Gross enrolment ratio, pre-primary (% of preschool-age children)
## 17333                                                           Gross enrolment ratio, primary (% of primary school-age population)
## 17334                                                       Gross enrolment ratio, secondary (% of secondary school-age population)
## 17335                                                         Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 17337                                                                                               Mean years of schooling (years)
## 17338                                                                                       Mean years of schooling, female (years)
## 17339                                                                                         Mean years of schooling, male (years)
## 17340                                                       Population with at least some secondary education (% ages 25 and older)
## 17341                                               Population with at least some secondary education, female (% ages 25 and older)
## 17342                                                 Population with at least some secondary education, male (% ages 25 and older)
## 17346                                                      Survival rate to the last grade of lower secondary general education (%)
## 17349                                                                                            Forest area (% of total land area)
## 17351                                                                Fossil fuel energy consumption (% of total energy consumption)
## 17356                                                            Renewable energy consumption (% of total final energy consumption)
## 17357                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 17370                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 17371                                                                 Proportion of births attended by skilled health personnel (%)
## 17381                                                                                          HIV prevalence, adult (% ages 15-49)
## 17384                                                                                              Life expectancy at birth (years)
## 17385                                                                                      Life expectancy at birth, female (years)
## 17386                                                                                        Life expectancy at birth, male (years)
## 17387                                                                                                         Life expectancy index
## 17388                                                                               Mortality rate, female adult (per 1,000 people)
## 17389                                                                                Mortality rate, infant (per 1,000 live births)
## 17390                                                                                 Mortality rate, male adult (per 1,000 people)
## 17391                                                                            Mortality rate, under-five (per 1,000 live births)
## 17401                                                                                                   GDP per capita (2011 PPP $)
## 17402                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 17403                                                                                      Gross fixed capital formation (% of GDP)
## 17404                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 17405                                                                                                                  Income index
## 17423                                                                                         Net migration rate (per 1,000 people)
## 17440                                                                                            Gross capital formation (% of GDP)
## 17447                                                                               Rural population with access to electricity (%)
## 17450                                                                                                Exports and imports (% of GDP)
## 17459                                                                         Labour force participation rate (% ages 15 and older)
## 17460                                                                 Labour force participation rate (% ages 15 and older), female
## 17461                                                                   Labour force participation rate (% ages 15 and older), male
## 17468                                                                                                 Human Development Index (HDI)
## 17469                                                                                                            Median age (years)
## 17470                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 17471                                                                                              Population ages 15–64 (millions)
## 17472                                                                                       Population ages 65 and older (millions)
## 17473                                                                                             Population under age 5 (millions)
## 17474                                                                                    Sex ratio at birth (male to female births)
## 17475                                                                                                   Total population (millions)
## 17476                                                                                                          Urban population (%)
## 17477                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 17478                                                                                                               Education index
## 17479                                                                                           Expected years of schooling (years)
## 17480                                                                                   Expected years of schooling, female (years)
## 17481                                                                                     Expected years of schooling, male (years)
## 17482                                                                                Government expenditure on education (% of GDP)
## 17483                                                              Gross enrolment ratio, pre-primary (% of preschool-age children)
## 17484                                                           Gross enrolment ratio, primary (% of primary school-age population)
## 17485                                                       Gross enrolment ratio, secondary (% of secondary school-age population)
## 17486                                                         Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 17487                                                                                               Mean years of schooling (years)
## 17488                                                                                       Mean years of schooling, female (years)
## 17489                                                                                         Mean years of schooling, male (years)
## 17490                                                       Population with at least some secondary education (% ages 25 and older)
## 17491                                               Population with at least some secondary education, female (% ages 25 and older)
## 17492                                                 Population with at least some secondary education, male (% ages 25 and older)
## 17497                                                                      Pupil-teacher ratio, primary school (pupils per teacher)
## 17498                                                                           Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 17499                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 17500                                                                                            Forest area (% of total land area)
## 17502                                                                Fossil fuel energy consumption (% of total energy consumption)
## 17503                                                                Fresh water withdrawals (% of total renewable water resources)
## 17507                                                            Renewable energy consumption (% of total final energy consumption)
## 17508                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 17519                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 17528                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 17529                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 17530                                                                                              Life expectancy at birth (years)
## 17531                                                                                      Life expectancy at birth, female (years)
## 17532                                                                                        Life expectancy at birth, male (years)
## 17533                                                                                                         Life expectancy index
## 17534                                                                               Mortality rate, female adult (per 1,000 people)
## 17535                                                                                Mortality rate, infant (per 1,000 live births)
## 17536                                                                                 Mortality rate, male adult (per 1,000 people)
## 17537                                                                            Mortality rate, under-five (per 1,000 live births)
## 17546                                                                       Domestic credit provided by financial sector (% of GDP)
## 17547                                                                                                   GDP per capita (2011 PPP $)
## 17548                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 17549                                                                                      Gross fixed capital formation (% of GDP)
## 17550                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 17551                                                                                                                  Income index
## 17569                                                                                         Net migration rate (per 1,000 people)
## 17570                                                                                               Adjusted net savings (% of GNI)
## 17572                                                                                            Gross capital formation (% of GDP)
## 17579                                                                               Rural population with access to electricity (%)
## 17581                                                                                                Exports and imports (% of GDP)
## 17582                                                                             Foreign direct investment, net inflows (% of GDP)
## 17583                                                                                              Private capital flows (% of GDP)
## 17584                                                                                               Remittances, inflows (% of GDP)
## 17588                                                                         Labour force participation rate (% ages 15 and older)
## 17589                                                                 Labour force participation rate (% ages 15 and older), female
## 17590                                                                   Labour force participation rate (% ages 15 and older), male
## 17598                                                                                                 Human Development Index (HDI)
## 17599                                                                                                            Median age (years)
## 17600                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 17601                                                                                              Population ages 15–64 (millions)
## 17602                                                                                       Population ages 65 and older (millions)
## 17603                                                                                             Population under age 5 (millions)
## 17604                                                                                    Sex ratio at birth (male to female births)
## 17605                                                                                                   Total population (millions)
## 17606                                                                                                          Urban population (%)
## 17607                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 17608                                                                                                               Education index
## 17609                                                                                           Expected years of schooling (years)
## 17613                                                              Gross enrolment ratio, pre-primary (% of preschool-age children)
## 17614                                                           Gross enrolment ratio, primary (% of primary school-age population)
## 17615                                                       Gross enrolment ratio, secondary (% of secondary school-age population)
## 17616                                                         Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 17618                                                                                               Mean years of schooling (years)
## 17619                                                                                       Mean years of schooling, female (years)
## 17620                                                                                         Mean years of schooling, male (years)
## 17621                                                       Population with at least some secondary education (% ages 25 and older)
## 17622                                               Population with at least some secondary education, female (% ages 25 and older)
## 17623                                                 Population with at least some secondary education, male (% ages 25 and older)
## 17624                                                                      Primary school dropout rate (% of primary school cohort)
## 17630                                                                      Pupil-teacher ratio, primary school (pupils per teacher)
## 17632                                                                           Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 17633                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 17634                                                                                            Forest area (% of total land area)
## 17636                                                                Fossil fuel energy consumption (% of total energy consumption)
## 17641                                                            Renewable energy consumption (% of total final energy consumption)
## 17642                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 17655                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 17656                                                                 Proportion of births attended by skilled health personnel (%)
## 17664                                                                                          HIV prevalence, adult (% ages 15-49)
## 17665                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 17666                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 17667                                                                                              Life expectancy at birth (years)
## 17668                                                                                      Life expectancy at birth, female (years)
## 17669                                                                                        Life expectancy at birth, male (years)
## 17670                                                                                                         Life expectancy index
## 17671                                                                               Mortality rate, female adult (per 1,000 people)
## 17672                                                                                Mortality rate, infant (per 1,000 live births)
## 17673                                                                                 Mortality rate, male adult (per 1,000 people)
## 17674                                                                            Mortality rate, under-five (per 1,000 live births)
## 17683                                                                       Domestic credit provided by financial sector (% of GDP)
## 17684                                                                                                   GDP per capita (2011 PPP $)
## 17685                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 17686                                                                                      Gross fixed capital formation (% of GDP)
## 17687                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 17688                                                                                                                  Income index
## 17705                                                                                         Net migration rate (per 1,000 people)
## 17707                                                                                               Adjusted net savings (% of GNI)
## 17709                                                                                            Gross capital formation (% of GDP)
## 17715                                                                               Rural population with access to electricity (%)
## 17717                                                                                                Exports and imports (% of GDP)
## 17718                                                                             Foreign direct investment, net inflows (% of GDP)
## 17719                                                                       Net official development assistance received (% of GNI)
## 17720                                                                                              Private capital flows (% of GDP)
## 17725                                                                         Labour force participation rate (% ages 15 and older)
## 17726                                                                 Labour force participation rate (% ages 15 and older), female
## 17727                                                                   Labour force participation rate (% ages 15 and older), male
## 17735                                                                                                            Median age (years)
## 17736                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 17737                                                                                              Population ages 15–64 (millions)
## 17738                                                                                       Population ages 65 and older (millions)
## 17739                                                                                             Population under age 5 (millions)
## 17740                                                                                    Sex ratio at birth (male to female births)
## 17741                                                                                                   Total population (millions)
## 17742                                                                                                          Urban population (%)
## 17743                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 17745                                                                                           Expected years of schooling (years)
## 17748                                                              Gross enrolment ratio, pre-primary (% of preschool-age children)
## 17749                                                           Gross enrolment ratio, primary (% of primary school-age population)
## 17750                                                       Gross enrolment ratio, secondary (% of secondary school-age population)
## 17751                                                         Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 17761                                                                      Pupil-teacher ratio, primary school (pupils per teacher)
## 17765                                                                                            Forest area (% of total land area)
## 17767                                                                Fossil fuel energy consumption (% of total energy consumption)
## 17772                                                            Renewable energy consumption (% of total final energy consumption)
## 17773                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 17784                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 17795                                                                                              Life expectancy at birth (years)
## 17796                                                                                      Life expectancy at birth, female (years)
## 17797                                                                                        Life expectancy at birth, male (years)
## 17798                                                                                                         Life expectancy index
## 17800                                                                               Mortality rate, female adult (per 1,000 people)
## 17801                                                                                Mortality rate, infant (per 1,000 live births)
## 17802                                                                                 Mortality rate, male adult (per 1,000 people)
## 17803                                                                            Mortality rate, under-five (per 1,000 live births)
## 17812                                                                                                   GDP per capita (2011 PPP $)
## 17813                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 17814                                                                                      Gross fixed capital formation (% of GDP)
## 17815                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 17816                                                                                                                  Income index
## 17830                                                                                         Net migration rate (per 1,000 people)
## 17845                                                                                            Gross capital formation (% of GDP)
## 17849                                                                               Rural population with access to electricity (%)
## 17850                                                                                                Exports and imports (% of GDP)
## 17857                                                                         Labour force participation rate (% ages 15 and older)
## 17858                                                                 Labour force participation rate (% ages 15 and older), female
## 17859                                                                   Labour force participation rate (% ages 15 and older), male
## 17866                                                                                                            Median age (years)
## 17867                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 17868                                                                                              Population ages 15–64 (millions)
## 17869                                                                                       Population ages 65 and older (millions)
## 17870                                                                                             Population under age 5 (millions)
## 17871                                                                                    Sex ratio at birth (male to female births)
## 17872                                                                                                   Total population (millions)
## 17873                                                                                                          Urban population (%)
## 17874                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 17881                                                           Gross enrolment ratio, primary (% of primary school-age population)
## 17889                                                                           Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 17890                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 17891                                                                                            Forest area (% of total land area)
## 17893                                                                Fossil fuel energy consumption (% of total energy consumption)
## 17897                                                            Renewable energy consumption (% of total final energy consumption)
## 17898                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 17905                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 17906                                                                 Proportion of births attended by skilled health personnel (%)
## 17916                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 17917                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 17918                                                                                              Life expectancy at birth (years)
## 17919                                                                                      Life expectancy at birth, female (years)
## 17920                                                                                        Life expectancy at birth, male (years)
## 17921                                                                                                         Life expectancy index
## 17923                                                                               Mortality rate, female adult (per 1,000 people)
## 17924                                                                                Mortality rate, infant (per 1,000 live births)
## 17925                                                                                 Mortality rate, male adult (per 1,000 people)
## 17926                                                                            Mortality rate, under-five (per 1,000 live births)
## 17935                                                                       Domestic credit provided by financial sector (% of GDP)
## 17936                                                                                                   GDP per capita (2011 PPP $)
## 17937                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 17938                                                                                      Gross fixed capital formation (% of GDP)
## 17939                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 17940                                                                                                                  Income index
## 17956                                                                                         Net migration rate (per 1,000 people)
## 17970                                                                                               Adjusted net savings (% of GNI)
## 17972                                                                                            Gross capital formation (% of GDP)
## 17976                                                       Total debt service (% of exports of goods, services and primary income)
## 17977                                                                                                Exports and imports (% of GDP)
## 17978                                                                             Foreign direct investment, net inflows (% of GDP)
## 17979                                                                       Net official development assistance received (% of GNI)
## 17980                                                                                              Private capital flows (% of GDP)
## 17981                                                                                               Remittances, inflows (% of GDP)
## 17985                                                                         Labour force participation rate (% ages 15 and older)
## 17986                                                                 Labour force participation rate (% ages 15 and older), female
## 17987                                                                   Labour force participation rate (% ages 15 and older), male
## 17993                                                                                                 Human Development Index (HDI)
## 17994                                                                                                            Median age (years)
## 17995                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 17996                                                                                              Population ages 15–64 (millions)
## 17997                                                                                       Population ages 65 and older (millions)
## 17998                                                                                             Population under age 5 (millions)
## 17999                                                                                    Sex ratio at birth (male to female births)
## 18000                                                                                                   Total population (millions)
## 18001                                                                                                          Urban population (%)
## 18002                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 18003                                                                                                               Education index
## 18004                                                                                           Expected years of schooling (years)
## 18007                                                                                Government expenditure on education (% of GDP)
## 18008                                                              Gross enrolment ratio, pre-primary (% of preschool-age children)
## 18009                                                           Gross enrolment ratio, primary (% of primary school-age population)
## 18010                                                       Gross enrolment ratio, secondary (% of secondary school-age population)
## 18011                                                         Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 18012                                                                                    Literacy rate, adult (% ages 15 and older)
## 18013                                                                                               Mean years of schooling (years)
## 18014                                                                                       Mean years of schooling, female (years)
## 18015                                                                                         Mean years of schooling, male (years)
## 18016                                                       Population with at least some secondary education (% ages 25 and older)
## 18017                                               Population with at least some secondary education, female (% ages 25 and older)
## 18018                                                 Population with at least some secondary education, male (% ages 25 and older)
## 18019                                                                      Primary school dropout rate (% of primary school cohort)
## 18021                                                      Survival rate to the last grade of lower secondary general education (%)
## 18022                                                                           Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 18023                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 18024                                                                                            Forest area (% of total land area)
## 18026                                                                Fossil fuel energy consumption (% of total energy consumption)
## 18031                                                            Renewable energy consumption (% of total final energy consumption)
## 18032                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 18042                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 18051                                                                                          HIV prevalence, adult (% ages 15-49)
## 18052                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 18053                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 18054                                                                                              Life expectancy at birth (years)
## 18055                                                                                      Life expectancy at birth, female (years)
## 18056                                                                                        Life expectancy at birth, male (years)
## 18057                                                                                                         Life expectancy index
## 18059                                                                               Mortality rate, female adult (per 1,000 people)
## 18060                                                                                Mortality rate, infant (per 1,000 live births)
## 18061                                                                                 Mortality rate, male adult (per 1,000 people)
## 18062                                                                            Mortality rate, under-five (per 1,000 live births)
## 18071                                                                       Domestic credit provided by financial sector (% of GDP)
## 18072                                                                                                   GDP per capita (2011 PPP $)
## 18073                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 18074                                                                                      Gross fixed capital formation (% of GDP)
## 18075                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 18076                                                                                                                  Income index
## 18093                                                                                         Net migration rate (per 1,000 people)
## 18095                                                                                               Adjusted net savings (% of GNI)
## 18097                                                                                            Gross capital formation (% of GDP)
## 18102                                                                               Rural population with access to electricity (%)
## 18104                                                       Total debt service (% of exports of goods, services and primary income)
## 18105                                                                                                Exports and imports (% of GDP)
## 18106                                                                             Foreign direct investment, net inflows (% of GDP)
## 18107                                                                       Net official development assistance received (% of GNI)
## 18108                                                                                              Private capital flows (% of GDP)
## 18109                                                                                               Remittances, inflows (% of GDP)
## 18113                                                                         Labour force participation rate (% ages 15 and older)
## 18114                                                                 Labour force participation rate (% ages 15 and older), female
## 18115                                                                   Labour force participation rate (% ages 15 and older), male
## 18122                                                                                                 Human Development Index (HDI)
## 18123                                                                                                            Median age (years)
## 18124                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 18125                                                                                              Population ages 15–64 (millions)
## 18126                                                                                       Population ages 65 and older (millions)
## 18127                                                                                             Population under age 5 (millions)
## 18128                                                                                    Sex ratio at birth (male to female births)
## 18129                                                                                                   Total population (millions)
## 18130                                                                                                          Urban population (%)
## 18131                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 18132                                                                                                               Education index
## 18133                                                                                           Expected years of schooling (years)
## 18141                                                                                               Mean years of schooling (years)
## 18142                                                                                       Mean years of schooling, female (years)
## 18143                                                                                         Mean years of schooling, male (years)
## 18144                                                       Population with at least some secondary education (% ages 25 and older)
## 18145                                               Population with at least some secondary education, female (% ages 25 and older)
## 18146                                                 Population with at least some secondary education, male (% ages 25 and older)
## 18150                                                                           Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 18151                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 18152                                                                                            Forest area (% of total land area)
## 18154                                                                Fossil fuel energy consumption (% of total energy consumption)
## 18155                                                                Fresh water withdrawals (% of total renewable water resources)
## 18159                                                            Renewable energy consumption (% of total final energy consumption)
## 18160                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 18171                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 18181                                                                                          HIV prevalence, adult (% ages 15-49)
## 18182                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 18183                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 18184                                                                                              Life expectancy at birth (years)
## 18185                                                                                      Life expectancy at birth, female (years)
## 18186                                                                                        Life expectancy at birth, male (years)
## 18187                                                                                                         Life expectancy index
## 18189                                                                               Mortality rate, female adult (per 1,000 people)
## 18190                                                                                Mortality rate, infant (per 1,000 live births)
## 18191                                                                                 Mortality rate, male adult (per 1,000 people)
## 18192                                                                            Mortality rate, under-five (per 1,000 live births)
## 18201                                                                       Domestic credit provided by financial sector (% of GDP)
## 18202                                                                                                   GDP per capita (2011 PPP $)
## 18203                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 18204                                                                                      Gross fixed capital formation (% of GDP)
## 18205                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 18206                                                                                                                  Income index
## 18223                                                                                         Net migration rate (per 1,000 people)
## 18240                                                                                            Gross capital formation (% of GDP)
## 18246                                                                               Rural population with access to electricity (%)
## 18248                                                       Total debt service (% of exports of goods, services and primary income)
## 18249                                                                                                Exports and imports (% of GDP)
## 18250                                                                             Foreign direct investment, net inflows (% of GDP)
## 18251                                                                       Net official development assistance received (% of GNI)
## 18253                                                                                               Remittances, inflows (% of GDP)
## 18257                                                                         Labour force participation rate (% ages 15 and older)
## 18258                                                                 Labour force participation rate (% ages 15 and older), female
## 18259                                                                   Labour force participation rate (% ages 15 and older), male
## 18266                                                                                                 Human Development Index (HDI)
## 18267                                                                                                            Median age (years)
## 18268                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 18269                                                                                              Population ages 15–64 (millions)
## 18270                                                                                       Population ages 65 and older (millions)
## 18271                                                                                             Population under age 5 (millions)
## 18272                                                                                    Sex ratio at birth (male to female births)
## 18273                                                                                                   Total population (millions)
## 18274                                                                                                          Urban population (%)
## 18275                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 18276                                                                                                               Education index
## 18277                                                                                           Expected years of schooling (years)
## 18281                                                           Gross enrolment ratio, primary (% of primary school-age population)
## 18282                                                       Gross enrolment ratio, secondary (% of secondary school-age population)
## 18283                                                         Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 18284                                                                                    Literacy rate, adult (% ages 15 and older)
## 18285                                                                                               Mean years of schooling (years)
## 18286                                                                                       Mean years of schooling, female (years)
## 18287                                                                                         Mean years of schooling, male (years)
## 18288                                                       Population with at least some secondary education (% ages 25 and older)
## 18289                                               Population with at least some secondary education, female (% ages 25 and older)
## 18290                                                 Population with at least some secondary education, male (% ages 25 and older)
## 18293                                                                      Pupil-teacher ratio, primary school (pupils per teacher)
## 18295                                                                           Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 18296                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 18297                                                                                            Forest area (% of total land area)
## 18299                                                                Fossil fuel energy consumption (% of total energy consumption)
## 18304                                                            Renewable energy consumption (% of total final energy consumption)
## 18305                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 18316                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 18327                                                                                          HIV prevalence, adult (% ages 15-49)
## 18328                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 18329                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 18330                                                                                              Life expectancy at birth (years)
## 18331                                                                                      Life expectancy at birth, female (years)
## 18332                                                                                        Life expectancy at birth, male (years)
## 18333                                                                                                         Life expectancy index
## 18335                                                                               Mortality rate, female adult (per 1,000 people)
## 18336                                                                                Mortality rate, infant (per 1,000 live births)
## 18337                                                                                 Mortality rate, male adult (per 1,000 people)
## 18338                                                                            Mortality rate, under-five (per 1,000 live births)
## 18347                                                                       Domestic credit provided by financial sector (% of GDP)
## 18348                                                                                                   GDP per capita (2011 PPP $)
## 18349                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 18351                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 18352                                                                                                                  Income index
## 18368                                                                                         Net migration rate (per 1,000 people)
## 18392                                                                               Rural population with access to electricity (%)
## 18393                                                       Total debt service (% of exports of goods, services and primary income)
## 18395                                                                             Foreign direct investment, net inflows (% of GDP)
## 18396                                                                       Net official development assistance received (% of GNI)
## 18397                                                                                              Private capital flows (% of GDP)
## 18402                                                                         Labour force participation rate (% ages 15 and older)
## 18403                                                                 Labour force participation rate (% ages 15 and older), female
## 18404                                                                   Labour force participation rate (% ages 15 and older), male
## 18411                                                                                                 Human Development Index (HDI)
## 18412                                                                                                            Median age (years)
## 18413                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 18414                                                                                              Population ages 15–64 (millions)
## 18415                                                                                       Population ages 65 and older (millions)
## 18416                                                                                             Population under age 5 (millions)
## 18417                                                                                    Sex ratio at birth (male to female births)
## 18418                                                                                                   Total population (millions)
## 18419                                                                                                          Urban population (%)
## 18420                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 18421                                                                                                               Education index
## 18422                                                                                           Expected years of schooling (years)
## 18423                                                                                   Expected years of schooling, female (years)
## 18424                                                                                     Expected years of schooling, male (years)
## 18425                                                                                Government expenditure on education (% of GDP)
## 18427                                                           Gross enrolment ratio, primary (% of primary school-age population)
## 18428                                                       Gross enrolment ratio, secondary (% of secondary school-age population)
## 18429                                                         Gross enrolment ratio, tertiary (% of tertiary school-age population)
## 18431                                                                                               Mean years of schooling (years)
## 18432                                                                                       Mean years of schooling, female (years)
## 18433                                                                                         Mean years of schooling, male (years)
## 18434                                                       Population with at least some secondary education (% ages 25 and older)
## 18435                                               Population with at least some secondary education, female (% ages 25 and older)
## 18436                                                 Population with at least some secondary education, male (% ages 25 and older)
## 18439                                                                      Pupil-teacher ratio, primary school (pupils per teacher)
## 18441                                                                           Carbon dioxide emissions (kg per 2011 PPP $ of GDP)
## 18442                                                                                 Carbon dioxide emissions, per capita (tonnes)
## 18443                                                                                            Forest area (% of total land area)
## 18445                                                                Fossil fuel energy consumption (% of total energy consumption)
## 18450                                                            Renewable energy consumption (% of total final energy consumption)
## 18451                                                                     Adolescent birth rate (births per 1,000 women ages 15-19)
## 18463                                                                     Maternal mortality ratio (deaths per 100,000 live births)
## 18474                                                                                          HIV prevalence, adult (% ages 15-49)
## 18475                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 18476                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 18477                                                                                              Life expectancy at birth (years)
## 18478                                                                                      Life expectancy at birth, female (years)
## 18479                                                                                        Life expectancy at birth, male (years)
## 18480                                                                                                         Life expectancy index
## 18482                                                                               Mortality rate, female adult (per 1,000 people)
## 18483                                                                                Mortality rate, infant (per 1,000 live births)
## 18484                                                                                 Mortality rate, male adult (per 1,000 people)
## 18485                                                                            Mortality rate, under-five (per 1,000 live births)
## 18494                                                                       Domestic credit provided by financial sector (% of GDP)
## 18495                                                                                                   GDP per capita (2011 PPP $)
## 18496                                                                     Gross domestic product (GDP), total (2011 PPP $ billions)
## 18497                                                                                      Gross fixed capital formation (% of GDP)
## 18498                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 18499                                                                                                                  Income index
## 18517                                                                                         Net migration rate (per 1,000 people)
## 18532                                                                                               Adjusted net savings (% of GNI)
## 18534                                                                                            Gross capital formation (% of GDP)
## 18538                                                                               Rural population with access to electricity (%)
## 18540                                                       Total debt service (% of exports of goods, services and primary income)
## 18541                                                                                                Exports and imports (% of GDP)
## 18542                                                                             Foreign direct investment, net inflows (% of GDP)
## 18543                                                                       Net official development assistance received (% of GNI)
## 18544                                                                                              Private capital flows (% of GDP)
## 18545                                                                                               Remittances, inflows (% of GDP)
## 18549                                                                         Labour force participation rate (% ages 15 and older)
## 18550                                                                 Labour force participation rate (% ages 15 and older), female
## 18551                                                                   Labour force participation rate (% ages 15 and older), male
## 18558                                                                                                 Human Development Index (HDI)
## 18560                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 18561                                                                                              Population ages 15–64 (millions)
## 18562                                                                                       Population ages 65 and older (millions)
## 18563                                                                                             Population under age 5 (millions)
## 18565                                                                                                   Total population (millions)
## 18566                                                                                                          Urban population (%)
## 18567                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 18568                                                                                                               Education index
## 18569                                                                                           Expected years of schooling (years)
## 18570                                                                                   Expected years of schooling, female (years)
## 18571                                                                                     Expected years of schooling, male (years)
## 18578                                                                                               Mean years of schooling (years)
## 18579                                                                                       Mean years of schooling, female (years)
## 18580                                                                                         Mean years of schooling, male (years)
## 18582                                               Population with at least some secondary education, female (% ages 25 and older)
## 18583                                                 Population with at least some secondary education, male (% ages 25 and older)
## 18616                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 18618                                                                                Total unemployment rate (female to male ratio)
## 18622                                                                                Youth unemployment rate (female to male ratio)
## 18625                                                                                          HIV prevalence, adult (% ages 15-49)
## 18626                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 18627                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 18628                                                                                              Life expectancy at birth (years)
## 18629                                                                                      Life expectancy at birth, female (years)
## 18630                                                                                        Life expectancy at birth, male (years)
## 18631                                                                                                         Life expectancy index
## 18632                                                                               Mortality rate, female adult (per 1,000 people)
## 18633                                                                                Mortality rate, infant (per 1,000 live births)
## 18634                                                                                 Mortality rate, male adult (per 1,000 people)
## 18635                                                                            Mortality rate, under-five (per 1,000 live births)
## 18648                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 18649                                                                                                                  Income index
## 18680                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 18693                                                                                                Exports and imports (% of GDP)
## 18695                                                                       Net official development assistance received (% of GNI)
## 18696                                                                                              Private capital flows (% of GDP)
## 18699                                                                             Employment in agriculture (% of total employment)
## 18700                                                                                Employment in services (% of total employment)
## 18701                                                                          Employment to population ratio (% ages 15 and older)
## 18706                                                                                       Unemployment, total (% of labour force)
## 18707                                                                                            Unemployment, youth (% ages 15–24)
## 18708                                                                                 Vulnerable employment (% of total employment)
## 18711                                                                                                 Human Development Index (HDI)
## 18713                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 18714                                                                                              Population ages 15–64 (millions)
## 18715                                                                                       Population ages 65 and older (millions)
## 18716                                                                                             Population under age 5 (millions)
## 18718                                                                                                   Total population (millions)
## 18719                                                                                                          Urban population (%)
## 18720                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 18721                                                                                                               Education index
## 18722                                                                                           Expected years of schooling (years)
## 18731                                                                                               Mean years of schooling (years)
## 18732                                                                                       Mean years of schooling, female (years)
## 18733                                                                                         Mean years of schooling, male (years)
## 18735                                               Population with at least some secondary education, female (% ages 25 and older)
## 18736                                                 Population with at least some secondary education, male (% ages 25 and older)
## 18770                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 18772                                                                                Total unemployment rate (female to male ratio)
## 18775                                                                                Youth unemployment rate (female to male ratio)
## 18778                                                                                          HIV prevalence, adult (% ages 15-49)
## 18779                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 18780                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 18781                                                                                              Life expectancy at birth (years)
## 18782                                                                                      Life expectancy at birth, female (years)
## 18783                                                                                        Life expectancy at birth, male (years)
## 18784                                                                                                         Life expectancy index
## 18786                                                                               Mortality rate, female adult (per 1,000 people)
## 18787                                                                                Mortality rate, infant (per 1,000 live births)
## 18788                                                                                 Mortality rate, male adult (per 1,000 people)
## 18789                                                                            Mortality rate, under-five (per 1,000 live births)
## 18802                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 18803                                                                                                                  Income index
## 18834                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 18845                                                                                                Exports and imports (% of GDP)
## 18846                                                                             Foreign direct investment, net inflows (% of GDP)
## 18847                                                                       Net official development assistance received (% of GNI)
## 18848                                                                                              Private capital flows (% of GDP)
## 18849                                                                                               Remittances, inflows (% of GDP)
## 18851                                                                             Employment in agriculture (% of total employment)
## 18852                                                                                Employment in services (% of total employment)
## 18853                                                                          Employment to population ratio (% ages 15 and older)
## 18858                                                                                       Unemployment, total (% of labour force)
## 18859                                                                                            Unemployment, youth (% ages 15–24)
## 18860                                                                                 Vulnerable employment (% of total employment)
## 18865                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 18866                                                                                              Population ages 15–64 (millions)
## 18867                                                                                       Population ages 65 and older (millions)
## 18868                                                                                             Population under age 5 (millions)
## 18870                                                                                                   Total population (millions)
## 18871                                                                                                          Urban population (%)
## 18872                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 18874                                                                                           Expected years of schooling (years)
## 18907                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 18909                                                                                Total unemployment rate (female to male ratio)
## 18913                                                                                Youth unemployment rate (female to male ratio)
## 18916                                                                                          HIV prevalence, adult (% ages 15-49)
## 18917                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 18918                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 18919                                                                                              Life expectancy at birth (years)
## 18920                                                                                      Life expectancy at birth, female (years)
## 18921                                                                                        Life expectancy at birth, male (years)
## 18922                                                                                                         Life expectancy index
## 18924                                                                               Mortality rate, female adult (per 1,000 people)
## 18925                                                                                Mortality rate, infant (per 1,000 live births)
## 18926                                                                                 Mortality rate, male adult (per 1,000 people)
## 18927                                                                            Mortality rate, under-five (per 1,000 live births)
## 18940                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 18941                                                                                                                  Income index
## 18972                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 18983                                                                                                Exports and imports (% of GDP)
## 18989                                                                             Employment in agriculture (% of total employment)
## 18990                                                                                Employment in services (% of total employment)
## 18991                                                                          Employment to population ratio (% ages 15 and older)
## 18996                                                                                       Unemployment, total (% of labour force)
## 18997                                                                                            Unemployment, youth (% ages 15–24)
## 18998                                                                                 Vulnerable employment (% of total employment)
## 19003                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 19004                                                                                              Population ages 15–64 (millions)
## 19005                                                                                       Population ages 65 and older (millions)
## 19006                                                                                             Population under age 5 (millions)
## 19008                                                                                                   Total population (millions)
## 19009                                                                                                          Urban population (%)
## 19010                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 19041                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 19042                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 19043                                                                                              Life expectancy at birth (years)
## 19044                                                                                      Life expectancy at birth, female (years)
## 19045                                                                                        Life expectancy at birth, male (years)
## 19046                                                                                                         Life expectancy index
## 19047                                                                               Mortality rate, female adult (per 1,000 people)
## 19048                                                                                Mortality rate, infant (per 1,000 live births)
## 19049                                                                                 Mortality rate, male adult (per 1,000 people)
## 19050                                                                            Mortality rate, under-five (per 1,000 live births)
## 19061                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 19062                                                                                                                  Income index
## 19074                                                                                                Exports and imports (% of GDP)
## 19075                                                                             Foreign direct investment, net inflows (% of GDP)
## 19076                                                                       Net official development assistance received (% of GNI)
## 19077                                                                                              Private capital flows (% of GDP)
## 19078                                                                                               Remittances, inflows (% of GDP)
## 19081                                                                                                 Human Development Index (HDI)
## 19083                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 19084                                                                                              Population ages 15–64 (millions)
## 19085                                                                                       Population ages 65 and older (millions)
## 19086                                                                                             Population under age 5 (millions)
## 19088                                                                                                   Total population (millions)
## 19089                                                                                                          Urban population (%)
## 19090                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 19091                                                                                                               Education index
## 19092                                                                                           Expected years of schooling (years)
## 19101                                                                                               Mean years of schooling (years)
## 19102                                                                                       Mean years of schooling, female (years)
## 19103                                                                                         Mean years of schooling, male (years)
## 19105                                               Population with at least some secondary education, female (% ages 25 and older)
## 19106                                                 Population with at least some secondary education, male (% ages 25 and older)
## 19138                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 19140                                                                                Total unemployment rate (female to male ratio)
## 19142                                                                                Youth unemployment rate (female to male ratio)
## 19144                                                                                          HIV prevalence, adult (% ages 15-49)
## 19145                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 19146                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 19147                                                                                              Life expectancy at birth (years)
## 19148                                                                                      Life expectancy at birth, female (years)
## 19149                                                                                        Life expectancy at birth, male (years)
## 19150                                                                                                         Life expectancy index
## 19152                                                                               Mortality rate, female adult (per 1,000 people)
## 19153                                                                                Mortality rate, infant (per 1,000 live births)
## 19154                                                                                 Mortality rate, male adult (per 1,000 people)
## 19155                                                                            Mortality rate, under-five (per 1,000 live births)
## 19168                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 19169                                                                                                                  Income index
## 19188                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 19201                                                                                                Exports and imports (% of GDP)
## 19202                                                                             Foreign direct investment, net inflows (% of GDP)
## 19203                                                                       Net official development assistance received (% of GNI)
## 19204                                                                                              Private capital flows (% of GDP)
## 19205                                                                                               Remittances, inflows (% of GDP)
## 19206                                                                             Employment in agriculture (% of total employment)
## 19207                                                                                Employment in services (% of total employment)
## 19208                                                                          Employment to population ratio (% ages 15 and older)
## 19213                                                                                       Unemployment, total (% of labour force)
## 19214                                                                                            Unemployment, youth (% ages 15–24)
## 19215                                                                                 Vulnerable employment (% of total employment)
## 19218                                                                                                 Human Development Index (HDI)
## 19220                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 19221                                                                                              Population ages 15–64 (millions)
## 19222                                                                                       Population ages 65 and older (millions)
## 19223                                                                                             Population under age 5 (millions)
## 19225                                                                                                   Total population (millions)
## 19226                                                                                                          Urban population (%)
## 19227                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 19228                                                                                                               Education index
## 19229                                                                                           Expected years of schooling (years)
## 19238                                                                                               Mean years of schooling (years)
## 19239                                                                                       Mean years of schooling, female (years)
## 19240                                                                                         Mean years of schooling, male (years)
## 19242                                               Population with at least some secondary education, female (% ages 25 and older)
## 19243                                                 Population with at least some secondary education, male (% ages 25 and older)
## 19273                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 19275                                                                                Total unemployment rate (female to male ratio)
## 19279                                                                                Youth unemployment rate (female to male ratio)
## 19282                                                                                          HIV prevalence, adult (% ages 15-49)
## 19285                                                                                              Life expectancy at birth (years)
## 19286                                                                                      Life expectancy at birth, female (years)
## 19287                                                                                        Life expectancy at birth, male (years)
## 19288                                                                                                         Life expectancy index
## 19289                                                                               Mortality rate, female adult (per 1,000 people)
## 19290                                                                                Mortality rate, infant (per 1,000 live births)
## 19291                                                                                 Mortality rate, male adult (per 1,000 people)
## 19292                                                                            Mortality rate, under-five (per 1,000 live births)
## 19305                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 19306                                                                                                                  Income index
## 19338                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 19351                                                                                                Exports and imports (% of GDP)
## 19353                                                                       Net official development assistance received (% of GNI)
## 19357                                                                             Employment in agriculture (% of total employment)
## 19358                                                                                Employment in services (% of total employment)
## 19359                                                                          Employment to population ratio (% ages 15 and older)
## 19364                                                                                       Unemployment, total (% of labour force)
## 19365                                                                                            Unemployment, youth (% ages 15–24)
## 19366                                                                                 Vulnerable employment (% of total employment)
## 19369                                                                                                 Human Development Index (HDI)
## 19371                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 19372                                                                                              Population ages 15–64 (millions)
## 19373                                                                                       Population ages 65 and older (millions)
## 19374                                                                                             Population under age 5 (millions)
## 19376                                                                                                   Total population (millions)
## 19377                                                                                                          Urban population (%)
## 19378                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 19379                                                                                                               Education index
## 19380                                                                                           Expected years of schooling (years)
## 19381                                                                                   Expected years of schooling, female (years)
## 19382                                                                                     Expected years of schooling, male (years)
## 19388                                                                                               Mean years of schooling (years)
## 19389                                                                                       Mean years of schooling, female (years)
## 19390                                                                                         Mean years of schooling, male (years)
## 19392                                               Population with at least some secondary education, female (% ages 25 and older)
## 19393                                                 Population with at least some secondary education, male (% ages 25 and older)
## 19413                                                                Female share of employment in senior and middle management (%)
## 19422                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 19424                                                                                Total unemployment rate (female to male ratio)
## 19427                                                                                Youth unemployment rate (female to male ratio)
## 19430                                                                                          HIV prevalence, adult (% ages 15-49)
## 19431                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 19432                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 19433                                                                                              Life expectancy at birth (years)
## 19434                                                                                      Life expectancy at birth, female (years)
## 19435                                                                                        Life expectancy at birth, male (years)
## 19436                                                                                                         Life expectancy index
## 19437                                                                               Mortality rate, female adult (per 1,000 people)
## 19438                                                                                Mortality rate, infant (per 1,000 live births)
## 19439                                                                                 Mortality rate, male adult (per 1,000 people)
## 19440                                                                            Mortality rate, under-five (per 1,000 live births)
## 19453                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 19454                                                                                                                  Income index
## 19484                                                                                                Exports and imports (% of GDP)
## 19485                                                                             Foreign direct investment, net inflows (% of GDP)
## 19486                                                                                              Private capital flows (% of GDP)
## 19487                                                                                               Remittances, inflows (% of GDP)
## 19488                                                                             Employment in agriculture (% of total employment)
## 19489                                                                                Employment in services (% of total employment)
## 19490                                                                          Employment to population ratio (% ages 15 and older)
## 19495                                                                                       Unemployment, total (% of labour force)
## 19496                                                                                            Unemployment, youth (% ages 15–24)
## 19497                                                                                 Vulnerable employment (% of total employment)
## 19500                                                                                                 Human Development Index (HDI)
## 19502                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 19503                                                                                              Population ages 15–64 (millions)
## 19504                                                                                       Population ages 65 and older (millions)
## 19505                                                                                             Population under age 5 (millions)
## 19507                                                                                                   Total population (millions)
## 19508                                                                                                          Urban population (%)
## 19509                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 19510                                                                                                               Education index
## 19511                                                                                           Expected years of schooling (years)
## 19512                                                                                   Expected years of schooling, female (years)
## 19513                                                                                     Expected years of schooling, male (years)
## 19519                                                                                               Mean years of schooling (years)
## 19520                                                                                       Mean years of schooling, female (years)
## 19521                                                                                         Mean years of schooling, male (years)
## 19523                                               Population with at least some secondary education, female (% ages 25 and older)
## 19524                                                 Population with at least some secondary education, male (% ages 25 and older)
## 19555                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 19557                                                                                Total unemployment rate (female to male ratio)
## 19561                                                                                Youth unemployment rate (female to male ratio)
## 19563                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 19564                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 19565                                                                                              Life expectancy at birth (years)
## 19566                                                                                      Life expectancy at birth, female (years)
## 19567                                                                                        Life expectancy at birth, male (years)
## 19568                                                                                                         Life expectancy index
## 19569                                                                               Mortality rate, female adult (per 1,000 people)
## 19570                                                                                Mortality rate, infant (per 1,000 live births)
## 19571                                                                                 Mortality rate, male adult (per 1,000 people)
## 19572                                                                            Mortality rate, under-five (per 1,000 live births)
## 19585                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 19586                                                                                                                  Income index
## 19616                                                                                                Exports and imports (% of GDP)
## 19617                                                                             Foreign direct investment, net inflows (% of GDP)
## 19619                                                                                               Remittances, inflows (% of GDP)
## 19620                                                                             Employment in agriculture (% of total employment)
## 19621                                                                                Employment in services (% of total employment)
## 19622                                                                          Employment to population ratio (% ages 15 and older)
## 19627                                                                                       Unemployment, total (% of labour force)
## 19628                                                                                            Unemployment, youth (% ages 15–24)
## 19629                                                                                 Vulnerable employment (% of total employment)
## 19634                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 19635                                                                                              Population ages 15–64 (millions)
## 19636                                                                                       Population ages 65 and older (millions)
## 19637                                                                                             Population under age 5 (millions)
## 19639                                                                                                   Total population (millions)
## 19640                                                                                                          Urban population (%)
## 19641                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 19643                                                                                           Expected years of schooling (years)
## 19644                                                                                   Expected years of schooling, female (years)
## 19645                                                                                     Expected years of schooling, male (years)
## 19687                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 19689                                                                                Total unemployment rate (female to male ratio)
## 19693                                                                                Youth unemployment rate (female to male ratio)
## 19696                                                                                          HIV prevalence, adult (% ages 15-49)
## 19699                                                                                              Life expectancy at birth (years)
## 19700                                                                                      Life expectancy at birth, female (years)
## 19701                                                                                        Life expectancy at birth, male (years)
## 19702                                                                                                         Life expectancy index
## 19704                                                                               Mortality rate, female adult (per 1,000 people)
## 19705                                                                                Mortality rate, infant (per 1,000 live births)
## 19706                                                                                 Mortality rate, male adult (per 1,000 people)
## 19707                                                                            Mortality rate, under-five (per 1,000 live births)
## 19720                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 19721                                                                                                                  Income index
## 19752                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 19765                                                                                                Exports and imports (% of GDP)
## 19770                                                                             Employment in agriculture (% of total employment)
## 19771                                                                                Employment in services (% of total employment)
## 19772                                                                          Employment to population ratio (% ages 15 and older)
## 19777                                                                                       Unemployment, total (% of labour force)
## 19778                                                                                            Unemployment, youth (% ages 15–24)
## 19779                                                                                 Vulnerable employment (% of total employment)
## 19783                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 19784                                                                                              Population ages 15–64 (millions)
## 19785                                                                                       Population ages 65 and older (millions)
## 19786                                                                                             Population under age 5 (millions)
## 19788                                                                                                   Total population (millions)
## 19789                                                                                                          Urban population (%)
## 19790                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 19792                                                                                           Expected years of schooling (years)
## 19793                                                                                   Expected years of schooling, female (years)
## 19794                                                                                     Expected years of schooling, male (years)
## 19830                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 19832                                                                                Total unemployment rate (female to male ratio)
## 19833                                                                                Youth unemployment rate (female to male ratio)
## 19835                                                                                          HIV prevalence, adult (% ages 15-49)
## 19836                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 19837                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 19838                                                                                              Life expectancy at birth (years)
## 19839                                                                                      Life expectancy at birth, female (years)
## 19840                                                                                        Life expectancy at birth, male (years)
## 19841                                                                                                         Life expectancy index
## 19842                                                                               Mortality rate, female adult (per 1,000 people)
## 19843                                                                                Mortality rate, infant (per 1,000 live births)
## 19844                                                                                 Mortality rate, male adult (per 1,000 people)
## 19845                                                                            Mortality rate, under-five (per 1,000 live births)
## 19857                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 19858                                                                                                                  Income index
## 19872                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 19880                                                                                                Exports and imports (% of GDP)
## 19881                                                                             Foreign direct investment, net inflows (% of GDP)
## 19882                                                                       Net official development assistance received (% of GNI)
## 19884                                                                             Employment in agriculture (% of total employment)
## 19885                                                                                Employment in services (% of total employment)
## 19886                                                                          Employment to population ratio (% ages 15 and older)
## 19891                                                                                       Unemployment, total (% of labour force)
## 19892                                                                                            Unemployment, youth (% ages 15–24)
## 19893                                                                                 Vulnerable employment (% of total employment)
## 19895                                                                                                 Human Development Index (HDI)
## 19897                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 19898                                                                                              Population ages 15–64 (millions)
## 19899                                                                                       Population ages 65 and older (millions)
## 19900                                                                                             Population under age 5 (millions)
## 19902                                                                                                   Total population (millions)
## 19903                                                                                                          Urban population (%)
## 19904                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 19905                                                                                                               Education index
## 19906                                                                                           Expected years of schooling (years)
## 19907                                                                                   Expected years of schooling, female (years)
## 19908                                                                                     Expected years of schooling, male (years)
## 19915                                                                                               Mean years of schooling (years)
## 19916                                                                                       Mean years of schooling, female (years)
## 19917                                                                                         Mean years of schooling, male (years)
## 19919                                               Population with at least some secondary education, female (% ages 25 and older)
## 19920                                                 Population with at least some secondary education, male (% ages 25 and older)
## 19950                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 19952                                                                                Total unemployment rate (female to male ratio)
## 19956                                                                                Youth unemployment rate (female to male ratio)
## 19959                                                                                          HIV prevalence, adult (% ages 15-49)
## 19960                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 19961                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 19962                                                                                              Life expectancy at birth (years)
## 19963                                                                                      Life expectancy at birth, female (years)
## 19964                                                                                        Life expectancy at birth, male (years)
## 19965                                                                                                         Life expectancy index
## 19967                                                                               Mortality rate, female adult (per 1,000 people)
## 19968                                                                                Mortality rate, infant (per 1,000 live births)
## 19969                                                                                 Mortality rate, male adult (per 1,000 people)
## 19970                                                                            Mortality rate, under-five (per 1,000 live births)
## 19983                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 19984                                                                                                                  Income index
## 20016                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 20028                                                                                                Exports and imports (% of GDP)
## 20029                                                                             Foreign direct investment, net inflows (% of GDP)
## 20030                                                                       Net official development assistance received (% of GNI)
## 20031                                                                                              Private capital flows (% of GDP)
## 20032                                                                                               Remittances, inflows (% of GDP)
## 20033                                                                             Employment in agriculture (% of total employment)
## 20034                                                                                Employment in services (% of total employment)
## 20035                                                                          Employment to population ratio (% ages 15 and older)
## 20040                                                                                       Unemployment, total (% of labour force)
## 20041                                                                                            Unemployment, youth (% ages 15–24)
## 20042                                                                                 Vulnerable employment (% of total employment)
## 20045                                                                                                 Human Development Index (HDI)
## 20047                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 20048                                                                                              Population ages 15–64 (millions)
## 20049                                                                                       Population ages 65 and older (millions)
## 20050                                                                                             Population under age 5 (millions)
## 20052                                                                                                   Total population (millions)
## 20053                                                                                                          Urban population (%)
## 20054                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 20055                                                                                                               Education index
## 20056                                                                                           Expected years of schooling (years)
## 20057                                                                                   Expected years of schooling, female (years)
## 20058                                                                                     Expected years of schooling, male (years)
## 20064                                                                                               Mean years of schooling (years)
## 20065                                                                                       Mean years of schooling, female (years)
## 20066                                                                                         Mean years of schooling, male (years)
## 20068                                               Population with at least some secondary education, female (% ages 25 and older)
## 20069                                                 Population with at least some secondary education, male (% ages 25 and older)
## 20098                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 20100                                                                                Total unemployment rate (female to male ratio)
## 20102                                                                                Youth unemployment rate (female to male ratio)
## 20105                                                                                          HIV prevalence, adult (% ages 15-49)
## 20106                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 20107                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 20108                                                                                              Life expectancy at birth (years)
## 20109                                                                                      Life expectancy at birth, female (years)
## 20110                                                                                        Life expectancy at birth, male (years)
## 20111                                                                                                         Life expectancy index
## 20112                                                                               Mortality rate, female adult (per 1,000 people)
## 20113                                                                                Mortality rate, infant (per 1,000 live births)
## 20114                                                                                 Mortality rate, male adult (per 1,000 people)
## 20115                                                                            Mortality rate, under-five (per 1,000 live births)
## 20128                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 20129                                                                                                                  Income index
## 20155                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 20162                                                                                                Exports and imports (% of GDP)
## 20163                                                                             Foreign direct investment, net inflows (% of GDP)
## 20164                                                                       Net official development assistance received (% of GNI)
## 20165                                                                                              Private capital flows (% of GDP)
## 20166                                                                                               Remittances, inflows (% of GDP)
## 20168                                                                             Employment in agriculture (% of total employment)
## 20169                                                                                Employment in services (% of total employment)
## 20170                                                                          Employment to population ratio (% ages 15 and older)
## 20175                                                                                       Unemployment, total (% of labour force)
## 20176                                                                                            Unemployment, youth (% ages 15–24)
## 20177                                                                                 Vulnerable employment (% of total employment)
## 20181                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 20182                                                                                              Population ages 15–64 (millions)
## 20183                                                                                       Population ages 65 and older (millions)
## 20184                                                                                             Population under age 5 (millions)
## 20186                                                                                                   Total population (millions)
## 20187                                                                                                          Urban population (%)
## 20188                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 20190                                                                                           Expected years of schooling (years)
## 20235                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 20237                                                                                Total unemployment rate (female to male ratio)
## 20240                                                                                Youth unemployment rate (female to male ratio)
## 20242                                                                                          HIV prevalence, adult (% ages 15-49)
## 20245                                                                                              Life expectancy at birth (years)
## 20246                                                                                      Life expectancy at birth, female (years)
## 20247                                                                                        Life expectancy at birth, male (years)
## 20248                                                                                                         Life expectancy index
## 20249                                                                               Mortality rate, female adult (per 1,000 people)
## 20250                                                                                Mortality rate, infant (per 1,000 live births)
## 20251                                                                                 Mortality rate, male adult (per 1,000 people)
## 20252                                                                            Mortality rate, under-five (per 1,000 live births)
## 20265                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 20266                                                                                                                  Income index
## 20285                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 20298                                                                                                Exports and imports (% of GDP)
## 20304                                                                             Employment in agriculture (% of total employment)
## 20305                                                                                Employment in services (% of total employment)
## 20306                                                                          Employment to population ratio (% ages 15 and older)
## 20311                                                                                       Unemployment, total (% of labour force)
## 20312                                                                                            Unemployment, youth (% ages 15–24)
## 20313                                                                                 Vulnerable employment (% of total employment)
## 20316                                                                                                 Human Development Index (HDI)
## 20318                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 20319                                                                                              Population ages 15–64 (millions)
## 20320                                                                                       Population ages 65 and older (millions)
## 20321                                                                                             Population under age 5 (millions)
## 20323                                                                                                   Total population (millions)
## 20324                                                                                                          Urban population (%)
## 20325                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 20326                                                                                                               Education index
## 20327                                                                                           Expected years of schooling (years)
## 20335                                                                                               Mean years of schooling (years)
## 20336                                                                                       Mean years of schooling, female (years)
## 20337                                                                                         Mean years of schooling, male (years)
## 20339                                               Population with at least some secondary education, female (% ages 25 and older)
## 20340                                                 Population with at least some secondary education, male (% ages 25 and older)
## 20370                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 20372                                                                                Total unemployment rate (female to male ratio)
## 20375                                                                                Youth unemployment rate (female to male ratio)
## 20378                                                                                          HIV prevalence, adult (% ages 15-49)
## 20379                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 20380                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 20381                                                                                              Life expectancy at birth (years)
## 20382                                                                                      Life expectancy at birth, female (years)
## 20383                                                                                        Life expectancy at birth, male (years)
## 20384                                                                                                         Life expectancy index
## 20386                                                                               Mortality rate, female adult (per 1,000 people)
## 20387                                                                                Mortality rate, infant (per 1,000 live births)
## 20388                                                                                 Mortality rate, male adult (per 1,000 people)
## 20389                                                                            Mortality rate, under-five (per 1,000 live births)
## 20402                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 20403                                                                                                                  Income index
## 20428                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 20439                                                                                                Exports and imports (% of GDP)
## 20440                                                                             Foreign direct investment, net inflows (% of GDP)
## 20441                                                                       Net official development assistance received (% of GNI)
## 20442                                                                                              Private capital flows (% of GDP)
## 20443                                                                                               Remittances, inflows (% of GDP)
## 20445                                                                             Employment in agriculture (% of total employment)
## 20446                                                                                Employment in services (% of total employment)
## 20447                                                                          Employment to population ratio (% ages 15 and older)
## 20452                                                                                       Unemployment, total (% of labour force)
## 20453                                                                                            Unemployment, youth (% ages 15–24)
## 20454                                                                                 Vulnerable employment (% of total employment)
## 20457                                                                                                 Human Development Index (HDI)
## 20459                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 20460                                                                                              Population ages 15–64 (millions)
## 20461                                                                                       Population ages 65 and older (millions)
## 20462                                                                                             Population under age 5 (millions)
## 20464                                                                                                   Total population (millions)
## 20465                                                                                                          Urban population (%)
## 20466                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 20467                                                                                                               Education index
## 20468                                                                                           Expected years of schooling (years)
## 20477                                                                                               Mean years of schooling (years)
## 20478                                                                                       Mean years of schooling, female (years)
## 20479                                                                                         Mean years of schooling, male (years)
## 20481                                               Population with at least some secondary education, female (% ages 25 and older)
## 20482                                                 Population with at least some secondary education, male (% ages 25 and older)
## 20511                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 20513                                                                                Total unemployment rate (female to male ratio)
## 20516                                                                                Youth unemployment rate (female to male ratio)
## 20519                                                                                          HIV prevalence, adult (% ages 15-49)
## 20520                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 20521                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 20522                                                                                              Life expectancy at birth (years)
## 20523                                                                                      Life expectancy at birth, female (years)
## 20524                                                                                        Life expectancy at birth, male (years)
## 20525                                                                                                         Life expectancy index
## 20527                                                                               Mortality rate, female adult (per 1,000 people)
## 20528                                                                                Mortality rate, infant (per 1,000 live births)
## 20529                                                                                 Mortality rate, male adult (per 1,000 people)
## 20530                                                                            Mortality rate, under-five (per 1,000 live births)
## 20543                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 20544                                                                                                                  Income index
## 20575                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 20587                                                                                                Exports and imports (% of GDP)
## 20588                                                                             Foreign direct investment, net inflows (% of GDP)
## 20589                                                                       Net official development assistance received (% of GNI)
## 20590                                                                                              Private capital flows (% of GDP)
## 20591                                                                                               Remittances, inflows (% of GDP)
## 20593                                                                             Employment in agriculture (% of total employment)
## 20594                                                                                Employment in services (% of total employment)
## 20595                                                                          Employment to population ratio (% ages 15 and older)
## 20600                                                                                       Unemployment, total (% of labour force)
## 20601                                                                                            Unemployment, youth (% ages 15–24)
## 20602                                                                                 Vulnerable employment (% of total employment)
## 20607                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 20608                                                                                              Population ages 15–64 (millions)
## 20609                                                                                       Population ages 65 and older (millions)
## 20610                                                                                             Population under age 5 (millions)
## 20612                                                                                                   Total population (millions)
## 20613                                                                                                          Urban population (%)
## 20614                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 20616                                                                                           Expected years of schooling (years)
## 20659                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 20661                                                                                Total unemployment rate (female to male ratio)
## 20666                                                                                Youth unemployment rate (female to male ratio)
## 20669                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 20670                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 20671                                                                                              Life expectancy at birth (years)
## 20672                                                                                      Life expectancy at birth, female (years)
## 20673                                                                                        Life expectancy at birth, male (years)
## 20674                                                                                                         Life expectancy index
## 20676                                                                               Mortality rate, female adult (per 1,000 people)
## 20677                                                                                Mortality rate, infant (per 1,000 live births)
## 20678                                                                                 Mortality rate, male adult (per 1,000 people)
## 20679                                                                            Mortality rate, under-five (per 1,000 live births)
## 20692                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 20693                                                                                                                  Income index
## 20724                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 20734                                                                                                Exports and imports (% of GDP)
## 20735                                                                             Foreign direct investment, net inflows (% of GDP)
## 20736                                                                       Net official development assistance received (% of GNI)
## 20740                                                                             Employment in agriculture (% of total employment)
## 20741                                                                                Employment in services (% of total employment)
## 20742                                                                          Employment to population ratio (% ages 15 and older)
## 20747                                                                                       Unemployment, total (% of labour force)
## 20748                                                                                            Unemployment, youth (% ages 15–24)
## 20749                                                                                 Vulnerable employment (% of total employment)
## 20751                                                                                                 Human Development Index (HDI)
## 20753                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 20754                                                                                              Population ages 15–64 (millions)
## 20755                                                                                       Population ages 65 and older (millions)
## 20756                                                                                             Population under age 5 (millions)
## 20758                                                                                                   Total population (millions)
## 20759                                                                                                          Urban population (%)
## 20760                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 20761                                                                                                               Education index
## 20762                                                                                           Expected years of schooling (years)
## 20770                                                                                               Mean years of schooling (years)
## 20771                                                                                       Mean years of schooling, female (years)
## 20772                                                                                         Mean years of schooling, male (years)
## 20774                                               Population with at least some secondary education, female (% ages 25 and older)
## 20775                                                 Population with at least some secondary education, male (% ages 25 and older)
## 20803                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 20805                                                                                Total unemployment rate (female to male ratio)
## 20809                                                                                Youth unemployment rate (female to male ratio)
## 20812                                                                                          HIV prevalence, adult (% ages 15-49)
## 20813                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 20814                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 20815                                                                                              Life expectancy at birth (years)
## 20816                                                                                      Life expectancy at birth, female (years)
## 20817                                                                                        Life expectancy at birth, male (years)
## 20818                                                                                                         Life expectancy index
## 20820                                                                               Mortality rate, female adult (per 1,000 people)
## 20821                                                                                Mortality rate, infant (per 1,000 live births)
## 20822                                                                                 Mortality rate, male adult (per 1,000 people)
## 20823                                                                            Mortality rate, under-five (per 1,000 live births)
## 20836                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 20837                                                                                                                  Income index
## 20868                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 20880                                                                                                Exports and imports (% of GDP)
## 20881                                                                             Foreign direct investment, net inflows (% of GDP)
## 20882                                                                       Net official development assistance received (% of GNI)
## 20883                                                                                              Private capital flows (% of GDP)
## 20884                                                                                               Remittances, inflows (% of GDP)
## 20885                                                                             Employment in agriculture (% of total employment)
## 20886                                                                                Employment in services (% of total employment)
## 20887                                                                          Employment to population ratio (% ages 15 and older)
## 20892                                                                                       Unemployment, total (% of labour force)
## 20893                                                                                            Unemployment, youth (% ages 15–24)
## 20894                                                                                 Vulnerable employment (% of total employment)
## 20897                                                                                                 Human Development Index (HDI)
## 20899                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 20900                                                                                              Population ages 15–64 (millions)
## 20901                                                                                       Population ages 65 and older (millions)
## 20902                                                                                             Population under age 5 (millions)
## 20904                                                                                                   Total population (millions)
## 20905                                                                                                          Urban population (%)
## 20906                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 20907                                                                                                               Education index
## 20908                                                                                           Expected years of schooling (years)
## 20909                                                                                   Expected years of schooling, female (years)
## 20910                                                                                     Expected years of schooling, male (years)
## 20916                                                                                               Mean years of schooling (years)
## 20917                                                                                       Mean years of schooling, female (years)
## 20918                                                                                         Mean years of schooling, male (years)
## 20920                                               Population with at least some secondary education, female (% ages 25 and older)
## 20921                                                 Population with at least some secondary education, male (% ages 25 and older)
## 20949                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 20951                                                                                Total unemployment rate (female to male ratio)
## 20954                                                                                Youth unemployment rate (female to male ratio)
## 20957                                                                                          HIV prevalence, adult (% ages 15-49)
## 20958                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 20959                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 20960                                                                                              Life expectancy at birth (years)
## 20961                                                                                      Life expectancy at birth, female (years)
## 20962                                                                                        Life expectancy at birth, male (years)
## 20963                                                                                                         Life expectancy index
## 20965                                                                               Mortality rate, female adult (per 1,000 people)
## 20966                                                                                Mortality rate, infant (per 1,000 live births)
## 20967                                                                                 Mortality rate, male adult (per 1,000 people)
## 20968                                                                            Mortality rate, under-five (per 1,000 live births)
## 20981                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 20982                                                                                                                  Income index
## 21001                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 21012                                                                                                Exports and imports (% of GDP)
## 21013                                                                             Foreign direct investment, net inflows (% of GDP)
## 21014                                                                       Net official development assistance received (% of GNI)
## 21015                                                                                              Private capital flows (% of GDP)
## 21016                                                                                               Remittances, inflows (% of GDP)
## 21017                                                                             Employment in agriculture (% of total employment)
## 21018                                                                                Employment in services (% of total employment)
## 21019                                                                          Employment to population ratio (% ages 15 and older)
## 21024                                                                                       Unemployment, total (% of labour force)
## 21025                                                                                            Unemployment, youth (% ages 15–24)
## 21026                                                                                 Vulnerable employment (% of total employment)
## 21029                                                                                                 Human Development Index (HDI)
## 21031                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 21032                                                                                              Population ages 15–64 (millions)
## 21033                                                                                       Population ages 65 and older (millions)
## 21034                                                                                             Population under age 5 (millions)
## 21036                                                                                                   Total population (millions)
## 21037                                                                                                          Urban population (%)
## 21038                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 21039                                                                                                               Education index
## 21040                                                                                           Expected years of schooling (years)
## 21049                                                                                               Mean years of schooling (years)
## 21050                                                                                       Mean years of schooling, female (years)
## 21051                                                                                         Mean years of schooling, male (years)
## 21053                                               Population with at least some secondary education, female (% ages 25 and older)
## 21054                                                 Population with at least some secondary education, male (% ages 25 and older)
## 21087                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 21089                                                                                Total unemployment rate (female to male ratio)
## 21092                                                                                Youth unemployment rate (female to male ratio)
## 21095                                                                                          HIV prevalence, adult (% ages 15-49)
## 21096                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 21097                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 21098                                                                                              Life expectancy at birth (years)
## 21099                                                                                      Life expectancy at birth, female (years)
## 21100                                                                                        Life expectancy at birth, male (years)
## 21101                                                                                                         Life expectancy index
## 21103                                                                               Mortality rate, female adult (per 1,000 people)
## 21104                                                                                Mortality rate, infant (per 1,000 live births)
## 21105                                                                                 Mortality rate, male adult (per 1,000 people)
## 21106                                                                            Mortality rate, under-five (per 1,000 live births)
## 21119                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 21120                                                                                                                  Income index
## 21152                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 21165                                                                                                Exports and imports (% of GDP)
## 21166                                                                             Foreign direct investment, net inflows (% of GDP)
## 21167                                                                       Net official development assistance received (% of GNI)
## 21168                                                                                              Private capital flows (% of GDP)
## 21169                                                                                               Remittances, inflows (% of GDP)
## 21171                                                                             Employment in agriculture (% of total employment)
## 21172                                                                                Employment in services (% of total employment)
## 21173                                                                          Employment to population ratio (% ages 15 and older)
## 21178                                                                                       Unemployment, total (% of labour force)
## 21179                                                                                            Unemployment, youth (% ages 15–24)
## 21180                                                                                 Vulnerable employment (% of total employment)
## 21183                                                                                                 Human Development Index (HDI)
## 21185                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 21186                                                                                              Population ages 15–64 (millions)
## 21187                                                                                       Population ages 65 and older (millions)
## 21188                                                                                             Population under age 5 (millions)
## 21190                                                                                                   Total population (millions)
## 21191                                                                                                          Urban population (%)
## 21192                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 21193                                                                                                               Education index
## 21194                                                                                           Expected years of schooling (years)
## 21195                                                                                   Expected years of schooling, female (years)
## 21196                                                                                     Expected years of schooling, male (years)
## 21203                                                                                               Mean years of schooling (years)
## 21204                                                                                       Mean years of schooling, female (years)
## 21205                                                                                         Mean years of schooling, male (years)
## 21207                                               Population with at least some secondary education, female (% ages 25 and older)
## 21208                                                 Population with at least some secondary education, male (% ages 25 and older)
## 21236                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 21238                                                                                Total unemployment rate (female to male ratio)
## 21239                                                                                Youth unemployment rate (female to male ratio)
## 21242                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 21243                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 21244                                                                                              Life expectancy at birth (years)
## 21245                                                                                      Life expectancy at birth, female (years)
## 21246                                                                                        Life expectancy at birth, male (years)
## 21247                                                                                                         Life expectancy index
## 21248                                                                               Mortality rate, female adult (per 1,000 people)
## 21249                                                                                Mortality rate, infant (per 1,000 live births)
## 21250                                                                                 Mortality rate, male adult (per 1,000 people)
## 21251                                                                            Mortality rate, under-five (per 1,000 live births)
## 21263                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 21264                                                                                                                  Income index
## 21273                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 21282                                                                                                Exports and imports (% of GDP)
## 21284                                                                       Net official development assistance received (% of GNI)
## 21286                                                                             Employment in agriculture (% of total employment)
## 21287                                                                                Employment in services (% of total employment)
## 21288                                                                          Employment to population ratio (% ages 15 and older)
## 21293                                                                                       Unemployment, total (% of labour force)
## 21294                                                                                            Unemployment, youth (% ages 15–24)
## 21295                                                                                 Vulnerable employment (% of total employment)
## 21298                                                                                                 Human Development Index (HDI)
## 21300                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 21301                                                                                              Population ages 15–64 (millions)
## 21302                                                                                       Population ages 65 and older (millions)
## 21303                                                                                             Population under age 5 (millions)
## 21305                                                                                                   Total population (millions)
## 21306                                                                                                          Urban population (%)
## 21307                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 21308                                                                                                               Education index
## 21309                                                                                           Expected years of schooling (years)
## 21310                                                                                   Expected years of schooling, female (years)
## 21311                                                                                     Expected years of schooling, male (years)
## 21318                                                                                               Mean years of schooling (years)
## 21319                                                                                       Mean years of schooling, female (years)
## 21320                                                                                         Mean years of schooling, male (years)
## 21322                                               Population with at least some secondary education, female (% ages 25 and older)
## 21323                                                 Population with at least some secondary education, male (% ages 25 and older)
## 21353                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 21355                                                                                Total unemployment rate (female to male ratio)
## 21359                                                                                Youth unemployment rate (female to male ratio)
## 21361                                                                                          HIV prevalence, adult (% ages 15-49)
## 21362                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 21363                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 21364                                                                                              Life expectancy at birth (years)
## 21365                                                                                      Life expectancy at birth, female (years)
## 21366                                                                                        Life expectancy at birth, male (years)
## 21367                                                                                                         Life expectancy index
## 21368                                                                               Mortality rate, female adult (per 1,000 people)
## 21369                                                                                Mortality rate, infant (per 1,000 live births)
## 21370                                                                                 Mortality rate, male adult (per 1,000 people)
## 21371                                                                            Mortality rate, under-five (per 1,000 live births)
## 21384                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 21385                                                                                                                  Income index
## 21415                                                                                                Exports and imports (% of GDP)
## 21416                                                                             Foreign direct investment, net inflows (% of GDP)
## 21419                                                                             Employment in agriculture (% of total employment)
## 21420                                                                                Employment in services (% of total employment)
## 21421                                                                          Employment to population ratio (% ages 15 and older)
## 21426                                                                                       Unemployment, total (% of labour force)
## 21427                                                                                            Unemployment, youth (% ages 15–24)
## 21428                                                                                 Vulnerable employment (% of total employment)
## 21433                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 21434                                                                                              Population ages 15–64 (millions)
## 21435                                                                                       Population ages 65 and older (millions)
## 21436                                                                                             Population under age 5 (millions)
## 21438                                                                                                   Total population (millions)
## 21439                                                                                                          Urban population (%)
## 21440                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 21442                                                                                           Expected years of schooling (years)
## 21443                                                                                   Expected years of schooling, female (years)
## 21444                                                                                     Expected years of schooling, male (years)
## 21484                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 21486                                                                                Total unemployment rate (female to male ratio)
## 21490                                                                                Youth unemployment rate (female to male ratio)
## 21493                                                                                          HIV prevalence, adult (% ages 15-49)
## 21494                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 21495                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 21496                                                                                              Life expectancy at birth (years)
## 21497                                                                                      Life expectancy at birth, female (years)
## 21498                                                                                        Life expectancy at birth, male (years)
## 21499                                                                                                         Life expectancy index
## 21501                                                                               Mortality rate, female adult (per 1,000 people)
## 21502                                                                                Mortality rate, infant (per 1,000 live births)
## 21503                                                                                 Mortality rate, male adult (per 1,000 people)
## 21504                                                                            Mortality rate, under-five (per 1,000 live births)
## 21517                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 21518                                                                                                                  Income index
## 21549                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 21562                                                                                                Exports and imports (% of GDP)
## 21563                                                                             Foreign direct investment, net inflows (% of GDP)
## 21564                                                                       Net official development assistance received (% of GNI)
## 21566                                                                                               Remittances, inflows (% of GDP)
## 21568                                                                             Employment in agriculture (% of total employment)
## 21569                                                                                Employment in services (% of total employment)
## 21570                                                                          Employment to population ratio (% ages 15 and older)
## 21575                                                                                       Unemployment, total (% of labour force)
## 21576                                                                                            Unemployment, youth (% ages 15–24)
## 21577                                                                                 Vulnerable employment (% of total employment)
## 21579                                                                                                 Human Development Index (HDI)
## 21581                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 21582                                                                                              Population ages 15–64 (millions)
## 21583                                                                                       Population ages 65 and older (millions)
## 21584                                                                                             Population under age 5 (millions)
## 21586                                                                                                   Total population (millions)
## 21587                                                                                                          Urban population (%)
## 21588                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 21589                                                                                                               Education index
## 21590                                                                                           Expected years of schooling (years)
## 21591                                                                                   Expected years of schooling, female (years)
## 21592                                                                                     Expected years of schooling, male (years)
## 21599                                                                                               Mean years of schooling (years)
## 21600                                                                                       Mean years of schooling, female (years)
## 21601                                                                                         Mean years of schooling, male (years)
## 21603                                               Population with at least some secondary education, female (% ages 25 and older)
## 21604                                                 Population with at least some secondary education, male (% ages 25 and older)
## 21632                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 21634                                                                                Total unemployment rate (female to male ratio)
## 21637                                                                                Youth unemployment rate (female to male ratio)
## 21640                                                                                          HIV prevalence, adult (% ages 15-49)
## 21641                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 21642                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 21643                                                                                              Life expectancy at birth (years)
## 21644                                                                                      Life expectancy at birth, female (years)
## 21645                                                                                        Life expectancy at birth, male (years)
## 21646                                                                                                         Life expectancy index
## 21648                                                                               Mortality rate, female adult (per 1,000 people)
## 21649                                                                                Mortality rate, infant (per 1,000 live births)
## 21650                                                                                 Mortality rate, male adult (per 1,000 people)
## 21651                                                                            Mortality rate, under-five (per 1,000 live births)
## 21664                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 21665                                                                                                                  Income index
## 21697                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 21708                                                                                                Exports and imports (% of GDP)
## 21709                                                                             Foreign direct investment, net inflows (% of GDP)
## 21710                                                                       Net official development assistance received (% of GNI)
## 21711                                                                                              Private capital flows (% of GDP)
## 21714                                                                             Employment in agriculture (% of total employment)
## 21715                                                                                Employment in services (% of total employment)
## 21716                                                                          Employment to population ratio (% ages 15 and older)
## 21721                                                                                       Unemployment, total (% of labour force)
## 21722                                                                                            Unemployment, youth (% ages 15–24)
## 21723                                                                                 Vulnerable employment (% of total employment)
## 21726                                                                                                 Human Development Index (HDI)
## 21728                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 21729                                                                                              Population ages 15–64 (millions)
## 21730                                                                                       Population ages 65 and older (millions)
## 21731                                                                                             Population under age 5 (millions)
## 21733                                                                                                   Total population (millions)
## 21734                                                                                                          Urban population (%)
## 21735                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 21736                                                                                                               Education index
## 21737                                                                                           Expected years of schooling (years)
## 21738                                                                                   Expected years of schooling, female (years)
## 21746                                                                                               Mean years of schooling (years)
## 21747                                                                                       Mean years of schooling, female (years)
## 21748                                                                                         Mean years of schooling, male (years)
## 21750                                               Population with at least some secondary education, female (% ages 25 and older)
## 21751                                                 Population with at least some secondary education, male (% ages 25 and older)
## 21779                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 21781                                                                                Total unemployment rate (female to male ratio)
## 21786                                                                                Youth unemployment rate (female to male ratio)
## 21789                                                                                          HIV prevalence, adult (% ages 15-49)
## 21790                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 21791                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 21792                                                                                              Life expectancy at birth (years)
## 21793                                                                                      Life expectancy at birth, female (years)
## 21794                                                                                        Life expectancy at birth, male (years)
## 21795                                                                                                         Life expectancy index
## 21797                                                                               Mortality rate, female adult (per 1,000 people)
## 21798                                                                                Mortality rate, infant (per 1,000 live births)
## 21799                                                                                 Mortality rate, male adult (per 1,000 people)
## 21800                                                                            Mortality rate, under-five (per 1,000 live births)
## 21813                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 21814                                                                                                                  Income index
## 21845                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 21857                                                                                                Exports and imports (% of GDP)
## 21858                                                                             Foreign direct investment, net inflows (% of GDP)
## 21859                                                                       Net official development assistance received (% of GNI)
## 21860                                                                                              Private capital flows (% of GDP)
## 21861                                                                                               Remittances, inflows (% of GDP)
## 21863                                                                             Employment in agriculture (% of total employment)
## 21864                                                                                Employment in services (% of total employment)
## 21865                                                                          Employment to population ratio (% ages 15 and older)
## 21870                                                                                       Unemployment, total (% of labour force)
## 21871                                                                                            Unemployment, youth (% ages 15–24)
## 21872                                                                                 Vulnerable employment (% of total employment)
## 21875                                                                                                 Human Development Index (HDI)
## 21877                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 21878                                                                                              Population ages 15–64 (millions)
## 21879                                                                                       Population ages 65 and older (millions)
## 21880                                                                                             Population under age 5 (millions)
## 21882                                                                                                   Total population (millions)
## 21883                                                                                                          Urban population (%)
## 21884                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 21885                                                                                                               Education index
## 21886                                                                                           Expected years of schooling (years)
## 21887                                                                                   Expected years of schooling, female (years)
## 21888                                                                                     Expected years of schooling, male (years)
## 21895                                                                                               Mean years of schooling (years)
## 21896                                                                                       Mean years of schooling, female (years)
## 21897                                                                                         Mean years of schooling, male (years)
## 21899                                               Population with at least some secondary education, female (% ages 25 and older)
## 21900                                                 Population with at least some secondary education, male (% ages 25 and older)
## 21927                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 21929                                                                                Total unemployment rate (female to male ratio)
## 21933                                                                                Youth unemployment rate (female to male ratio)
## 21936                                                                                          HIV prevalence, adult (% ages 15-49)
## 21937                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 21938                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 21939                                                                                              Life expectancy at birth (years)
## 21940                                                                                      Life expectancy at birth, female (years)
## 21941                                                                                        Life expectancy at birth, male (years)
## 21942                                                                                                         Life expectancy index
## 21944                                                                               Mortality rate, female adult (per 1,000 people)
## 21945                                                                                Mortality rate, infant (per 1,000 live births)
## 21946                                                                                 Mortality rate, male adult (per 1,000 people)
## 21947                                                                            Mortality rate, under-five (per 1,000 live births)
## 21960                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 21961                                                                                                                  Income index
## 21992                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 22003                                                                                                Exports and imports (% of GDP)
## 22004                                                                             Foreign direct investment, net inflows (% of GDP)
## 22005                                                                       Net official development assistance received (% of GNI)
## 22006                                                                                              Private capital flows (% of GDP)
## 22007                                                                                               Remittances, inflows (% of GDP)
## 22009                                                                             Employment in agriculture (% of total employment)
## 22010                                                                                Employment in services (% of total employment)
## 22011                                                                          Employment to population ratio (% ages 15 and older)
## 22015                                                                                       Unemployment, total (% of labour force)
## 22016                                                                                            Unemployment, youth (% ages 15–24)
## 22017                                                                                 Vulnerable employment (% of total employment)
## 22021                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 22022                                                                                              Population ages 15–64 (millions)
## 22023                                                                                       Population ages 65 and older (millions)
## 22024                                                                                             Population under age 5 (millions)
## 22026                                                                                                   Total population (millions)
## 22027                                                                                                          Urban population (%)
## 22028                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 22030                                                                                           Expected years of schooling (years)
## 22071                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 22073                                                                                Total unemployment rate (female to male ratio)
## 22077                                                                                Youth unemployment rate (female to male ratio)
## 22080                                                                                          HIV prevalence, adult (% ages 15-49)
## 22081                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 22082                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 22083                                                                                              Life expectancy at birth (years)
## 22084                                                                                      Life expectancy at birth, female (years)
## 22085                                                                                        Life expectancy at birth, male (years)
## 22086                                                                                                         Life expectancy index
## 22088                                                                               Mortality rate, female adult (per 1,000 people)
## 22089                                                                                Mortality rate, infant (per 1,000 live births)
## 22090                                                                                 Mortality rate, male adult (per 1,000 people)
## 22091                                                                            Mortality rate, under-five (per 1,000 live births)
## 22104                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 22105                                                                                                                  Income index
## 22136                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 22147                                                                                                Exports and imports (% of GDP)
## 22148                                                                             Foreign direct investment, net inflows (% of GDP)
## 22149                                                                       Net official development assistance received (% of GNI)
## 22150                                                                                              Private capital flows (% of GDP)
## 22153                                                                             Employment in agriculture (% of total employment)
## 22154                                                                                Employment in services (% of total employment)
## 22155                                                                          Employment to population ratio (% ages 15 and older)
## 22160                                                                                       Unemployment, total (% of labour force)
## 22161                                                                                            Unemployment, youth (% ages 15–24)
## 22162                                                                                 Vulnerable employment (% of total employment)
## 22164                                                                                                 Human Development Index (HDI)
## 22166                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 22167                                                                                              Population ages 15–64 (millions)
## 22168                                                                                       Population ages 65 and older (millions)
## 22169                                                                                             Population under age 5 (millions)
## 22171                                                                                                   Total population (millions)
## 22172                                                                                                          Urban population (%)
## 22173                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 22174                                                                                                               Education index
## 22175                                                                                           Expected years of schooling (years)
## 22176                                                                                   Expected years of schooling, female (years)
## 22177                                                                                     Expected years of schooling, male (years)
## 22184                                                                                               Mean years of schooling (years)
## 22185                                                                                       Mean years of schooling, female (years)
## 22186                                                                                         Mean years of schooling, male (years)
## 22188                                               Population with at least some secondary education, female (% ages 25 and older)
## 22189                                                 Population with at least some secondary education, male (% ages 25 and older)
## 22219                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 22221                                                                                Total unemployment rate (female to male ratio)
## 22223                                                                                Youth unemployment rate (female to male ratio)
## 22226                                                                                          HIV prevalence, adult (% ages 15-49)
## 22227                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 22228                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 22229                                                                                              Life expectancy at birth (years)
## 22230                                                                                      Life expectancy at birth, female (years)
## 22231                                                                                        Life expectancy at birth, male (years)
## 22232                                                                                                         Life expectancy index
## 22233                                                                               Mortality rate, female adult (per 1,000 people)
## 22234                                                                                Mortality rate, infant (per 1,000 live births)
## 22235                                                                                 Mortality rate, male adult (per 1,000 people)
## 22236                                                                            Mortality rate, under-five (per 1,000 live births)
## 22249                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 22250                                                                                                                  Income index
## 22268                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 22280                                                                                                Exports and imports (% of GDP)
## 22281                                                                             Foreign direct investment, net inflows (% of GDP)
## 22282                                                                       Net official development assistance received (% of GNI)
## 22283                                                                                              Private capital flows (% of GDP)
## 22286                                                                             Employment in agriculture (% of total employment)
## 22287                                                                                Employment in services (% of total employment)
## 22288                                                                          Employment to population ratio (% ages 15 and older)
## 22293                                                                                       Unemployment, total (% of labour force)
## 22294                                                                                            Unemployment, youth (% ages 15–24)
## 22295                                                                                 Vulnerable employment (% of total employment)
## 22298                                                                                                 Human Development Index (HDI)
## 22300                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 22301                                                                                              Population ages 15–64 (millions)
## 22302                                                                                       Population ages 65 and older (millions)
## 22303                                                                                             Population under age 5 (millions)
## 22305                                                                                                   Total population (millions)
## 22306                                                                                                          Urban population (%)
## 22307                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 22308                                                                                                               Education index
## 22309                                                                                           Expected years of schooling (years)
## 22310                                                                                   Expected years of schooling, female (years)
## 22311                                                                                     Expected years of schooling, male (years)
## 22318                                                                                               Mean years of schooling (years)
## 22319                                                                                       Mean years of schooling, female (years)
## 22320                                                                                         Mean years of schooling, male (years)
## 22322                                               Population with at least some secondary education, female (% ages 25 and older)
## 22323                                                 Population with at least some secondary education, male (% ages 25 and older)
## 22352                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 22354                                                                                Total unemployment rate (female to male ratio)
## 22356                                                                                Youth unemployment rate (female to male ratio)
## 22359                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 22360                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 22361                                                                                              Life expectancy at birth (years)
## 22362                                                                                      Life expectancy at birth, female (years)
## 22363                                                                                        Life expectancy at birth, male (years)
## 22364                                                                                                         Life expectancy index
## 22366                                                                               Mortality rate, female adult (per 1,000 people)
## 22367                                                                                Mortality rate, infant (per 1,000 live births)
## 22368                                                                                 Mortality rate, male adult (per 1,000 people)
## 22369                                                                            Mortality rate, under-five (per 1,000 live births)
## 22381                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 22382                                                                                                                  Income index
## 22413                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 22424                                                                                                Exports and imports (% of GDP)
## 22425                                                                             Foreign direct investment, net inflows (% of GDP)
## 22426                                                                       Net official development assistance received (% of GNI)
## 22427                                                                                              Private capital flows (% of GDP)
## 22428                                                                                               Remittances, inflows (% of GDP)
## 22429                                                                             Employment in agriculture (% of total employment)
## 22430                                                                                Employment in services (% of total employment)
## 22431                                                                          Employment to population ratio (% ages 15 and older)
## 22436                                                                                       Unemployment, total (% of labour force)
## 22437                                                                                            Unemployment, youth (% ages 15–24)
## 22438                                                                                 Vulnerable employment (% of total employment)
## 22440                                                                                                 Human Development Index (HDI)
## 22442                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 22443                                                                                              Population ages 15–64 (millions)
## 22444                                                                                       Population ages 65 and older (millions)
## 22445                                                                                             Population under age 5 (millions)
## 22447                                                                                                   Total population (millions)
## 22448                                                                                                          Urban population (%)
## 22449                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 22450                                                                                                               Education index
## 22451                                                                                           Expected years of schooling (years)
## 22452                                                                                   Expected years of schooling, female (years)
## 22453                                                                                     Expected years of schooling, male (years)
## 22460                                                                                               Mean years of schooling (years)
## 22461                                                                                       Mean years of schooling, female (years)
## 22462                                                                                         Mean years of schooling, male (years)
## 22464                                               Population with at least some secondary education, female (% ages 25 and older)
## 22465                                                 Population with at least some secondary education, male (% ages 25 and older)
## 22498                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 22500                                                                                Total unemployment rate (female to male ratio)
## 22503                                                                                Youth unemployment rate (female to male ratio)
## 22506                                                                                          HIV prevalence, adult (% ages 15-49)
## 22507                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 22508                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 22509                                                                                              Life expectancy at birth (years)
## 22510                                                                                      Life expectancy at birth, female (years)
## 22511                                                                                        Life expectancy at birth, male (years)
## 22512                                                                                                         Life expectancy index
## 22514                                                                               Mortality rate, female adult (per 1,000 people)
## 22515                                                                                Mortality rate, infant (per 1,000 live births)
## 22516                                                                                 Mortality rate, male adult (per 1,000 people)
## 22517                                                                            Mortality rate, under-five (per 1,000 live births)
## 22530                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 22531                                                                                                                  Income index
## 22563                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 22576                                                                                                Exports and imports (% of GDP)
## 22577                                                                             Foreign direct investment, net inflows (% of GDP)
## 22578                                                                       Net official development assistance received (% of GNI)
## 22579                                                                                              Private capital flows (% of GDP)
## 22580                                                                                               Remittances, inflows (% of GDP)
## 22582                                                                             Employment in agriculture (% of total employment)
## 22583                                                                                Employment in services (% of total employment)
## 22584                                                                          Employment to population ratio (% ages 15 and older)
## 22589                                                                                       Unemployment, total (% of labour force)
## 22590                                                                                            Unemployment, youth (% ages 15–24)
## 22591                                                                                 Vulnerable employment (% of total employment)
## 22594                                                                                                 Human Development Index (HDI)
## 22596                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 22597                                                                                              Population ages 15–64 (millions)
## 22598                                                                                       Population ages 65 and older (millions)
## 22599                                                                                             Population under age 5 (millions)
## 22601                                                                                                   Total population (millions)
## 22602                                                                                                          Urban population (%)
## 22603                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 22604                                                                                                               Education index
## 22605                                                                                           Expected years of schooling (years)
## 22606                                                                                   Expected years of schooling, female (years)
## 22607                                                                                     Expected years of schooling, male (years)
## 22614                                                                                               Mean years of schooling (years)
## 22615                                                                                       Mean years of schooling, female (years)
## 22616                                                                                         Mean years of schooling, male (years)
## 22618                                               Population with at least some secondary education, female (% ages 25 and older)
## 22619                                                 Population with at least some secondary education, male (% ages 25 and older)
## 22646                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 22648                                                                                Total unemployment rate (female to male ratio)
## 22651                                                                                Youth unemployment rate (female to male ratio)
## 22654                                                                                          HIV prevalence, adult (% ages 15-49)
## 22655                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 22656                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 22657                                                                                              Life expectancy at birth (years)
## 22658                                                                                      Life expectancy at birth, female (years)
## 22659                                                                                        Life expectancy at birth, male (years)
## 22660                                                                                                         Life expectancy index
## 22662                                                                               Mortality rate, female adult (per 1,000 people)
## 22663                                                                                Mortality rate, infant (per 1,000 live births)
## 22664                                                                                 Mortality rate, male adult (per 1,000 people)
## 22665                                                                            Mortality rate, under-five (per 1,000 live births)
## 22678                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 22679                                                                                                                  Income index
## 22710                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 22722                                                                                                Exports and imports (% of GDP)
## 22723                                                                             Foreign direct investment, net inflows (% of GDP)
## 22724                                                                       Net official development assistance received (% of GNI)
## 22725                                                                                              Private capital flows (% of GDP)
## 22726                                                                                               Remittances, inflows (% of GDP)
## 22728                                                                             Employment in agriculture (% of total employment)
## 22729                                                                                Employment in services (% of total employment)
## 22730                                                                          Employment to population ratio (% ages 15 and older)
## 22735                                                                                       Unemployment, total (% of labour force)
## 22736                                                                                            Unemployment, youth (% ages 15–24)
## 22737                                                                                 Vulnerable employment (% of total employment)
## 22740                                                                                                 Human Development Index (HDI)
## 22742                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 22743                                                                                              Population ages 15–64 (millions)
## 22744                                                                                       Population ages 65 and older (millions)
## 22745                                                                                             Population under age 5 (millions)
## 22747                                                                                                   Total population (millions)
## 22748                                                                                                          Urban population (%)
## 22749                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 22750                                                                                                               Education index
## 22751                                                                                           Expected years of schooling (years)
## 22760                                                                                               Mean years of schooling (years)
## 22761                                                                                       Mean years of schooling, female (years)
## 22762                                                                                         Mean years of schooling, male (years)
## 22764                                               Population with at least some secondary education, female (% ages 25 and older)
## 22765                                                 Population with at least some secondary education, male (% ages 25 and older)
## 22788                                                               Estimated gross national income per capita, female (2011 PPP $)
## 22789                                                                 Estimated gross national income per capita, male (2011 PPP $)
## 22799                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 22801                                                                                Total unemployment rate (female to male ratio)
## 22804                                                                                Youth unemployment rate (female to male ratio)
## 22807                                                                                          HIV prevalence, adult (% ages 15-49)
## 22808                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 22809                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 22810                                                                                              Life expectancy at birth (years)
## 22811                                                                                      Life expectancy at birth, female (years)
## 22812                                                                                        Life expectancy at birth, male (years)
## 22813                                                                                                         Life expectancy index
## 22815                                                                               Mortality rate, female adult (per 1,000 people)
## 22816                                                                                Mortality rate, infant (per 1,000 live births)
## 22817                                                                                 Mortality rate, male adult (per 1,000 people)
## 22818                                                                            Mortality rate, under-five (per 1,000 live births)
## 22831                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 22832                                                                                                                  Income index
## 22851                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 22863                                                                                                Exports and imports (% of GDP)
## 22864                                                                             Foreign direct investment, net inflows (% of GDP)
## 22865                                                                       Net official development assistance received (% of GNI)
## 22866                                                                                              Private capital flows (% of GDP)
## 22867                                                                                               Remittances, inflows (% of GDP)
## 22869                                                                             Employment in agriculture (% of total employment)
## 22870                                                                                Employment in services (% of total employment)
## 22871                                                                          Employment to population ratio (% ages 15 and older)
## 22876                                                                                       Unemployment, total (% of labour force)
## 22877                                                                                            Unemployment, youth (% ages 15–24)
## 22878                                                                                 Vulnerable employment (% of total employment)
## 22881                                                                                                 Human Development Index (HDI)
## 22883                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 22884                                                                                              Population ages 15–64 (millions)
## 22885                                                                                       Population ages 65 and older (millions)
## 22886                                                                                             Population under age 5 (millions)
## 22888                                                                                                   Total population (millions)
## 22889                                                                                                          Urban population (%)
## 22890                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 22891                                                                                                               Education index
## 22892                                                                                           Expected years of schooling (years)
## 22893                                                                                   Expected years of schooling, female (years)
## 22894                                                                                     Expected years of schooling, male (years)
## 22901                                                                                               Mean years of schooling (years)
## 22902                                                                                       Mean years of schooling, female (years)
## 22903                                                                                         Mean years of schooling, male (years)
## 22905                                               Population with at least some secondary education, female (% ages 25 and older)
## 22906                                                 Population with at least some secondary education, male (% ages 25 and older)
## 22933                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 22935                                                                                Total unemployment rate (female to male ratio)
## 22937                                                                                Youth unemployment rate (female to male ratio)
## 22938                                                                                          HIV prevalence, adult (% ages 15-49)
## 22939                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 22940                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 22941                                                                                              Life expectancy at birth (years)
## 22942                                                                                      Life expectancy at birth, female (years)
## 22943                                                                                        Life expectancy at birth, male (years)
## 22944                                                                                                         Life expectancy index
## 22945                                                                               Mortality rate, female adult (per 1,000 people)
## 22946                                                                                Mortality rate, infant (per 1,000 live births)
## 22947                                                                                 Mortality rate, male adult (per 1,000 people)
## 22948                                                                            Mortality rate, under-five (per 1,000 live births)
## 22958                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 22959                                                                                                                  Income index
## 22970                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 22979                                                                                                Exports and imports (% of GDP)
## 22980                                                                       Net official development assistance received (% of GNI)
## 22981                                                                             Employment in agriculture (% of total employment)
## 22982                                                                                Employment in services (% of total employment)
## 22983                                                                          Employment to population ratio (% ages 15 and older)
## 22987                                                                                       Unemployment, total (% of labour force)
## 22988                                                                                            Unemployment, youth (% ages 15–24)
## 22989                                                                                 Vulnerable employment (% of total employment)
## 22991                                                                                                 Human Development Index (HDI)
## 22993                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 22994                                                                                              Population ages 15–64 (millions)
## 22995                                                                                       Population ages 65 and older (millions)
## 22996                                                                                             Population under age 5 (millions)
## 22998                                                                                                   Total population (millions)
## 22999                                                                                                          Urban population (%)
## 23000                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 23001                                                                                                               Education index
## 23002                                                                                           Expected years of schooling (years)
## 23003                                                                                   Expected years of schooling, female (years)
## 23004                                                                                     Expected years of schooling, male (years)
## 23011                                                                                               Mean years of schooling (years)
## 23012                                                                                       Mean years of schooling, female (years)
## 23013                                                                                         Mean years of schooling, male (years)
## 23015                                               Population with at least some secondary education, female (% ages 25 and older)
## 23016                                                 Population with at least some secondary education, male (% ages 25 and older)
## 23047                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 23049                                                                                Total unemployment rate (female to male ratio)
## 23053                                                                                Youth unemployment rate (female to male ratio)
## 23055                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 23056                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 23057                                                                                              Life expectancy at birth (years)
## 23058                                                                                      Life expectancy at birth, female (years)
## 23059                                                                                        Life expectancy at birth, male (years)
## 23060                                                                                                         Life expectancy index
## 23061                                                                               Mortality rate, female adult (per 1,000 people)
## 23062                                                                                Mortality rate, infant (per 1,000 live births)
## 23063                                                                                 Mortality rate, male adult (per 1,000 people)
## 23064                                                                            Mortality rate, under-five (per 1,000 live births)
## 23077                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 23078                                                                                                                  Income index
## 23108                                                                                                Exports and imports (% of GDP)
## 23109                                                                             Foreign direct investment, net inflows (% of GDP)
## 23110                                                                       Net official development assistance received (% of GNI)
## 23111                                                                                              Private capital flows (% of GDP)
## 23112                                                                                               Remittances, inflows (% of GDP)
## 23113                                                                             Employment in agriculture (% of total employment)
## 23114                                                                                Employment in services (% of total employment)
## 23115                                                                          Employment to population ratio (% ages 15 and older)
## 23120                                                                                       Unemployment, total (% of labour force)
## 23121                                                                                            Unemployment, youth (% ages 15–24)
## 23122                                                                                 Vulnerable employment (% of total employment)
## 23126                                                                                                 Human Development Index (HDI)
## 23128                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 23129                                                                                              Population ages 15–64 (millions)
## 23130                                                                                       Population ages 65 and older (millions)
## 23131                                                                                             Population under age 5 (millions)
## 23133                                                                                                   Total population (millions)
## 23134                                                                                                          Urban population (%)
## 23135                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 23136                                                                                                               Education index
## 23137                                                                                           Expected years of schooling (years)
## 23138                                                                                   Expected years of schooling, female (years)
## 23139                                                                                     Expected years of schooling, male (years)
## 23145                                                                                               Mean years of schooling (years)
## 23146                                                                                       Mean years of schooling, female (years)
## 23147                                                                                         Mean years of schooling, male (years)
## 23149                                               Population with at least some secondary education, female (% ages 25 and older)
## 23150                                                 Population with at least some secondary education, male (% ages 25 and older)
## 23180                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 23182                                                                                Total unemployment rate (female to male ratio)
## 23186                                                                                Youth unemployment rate (female to male ratio)
## 23188                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 23189                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 23190                                                                                              Life expectancy at birth (years)
## 23191                                                                                      Life expectancy at birth, female (years)
## 23192                                                                                        Life expectancy at birth, male (years)
## 23193                                                                                                         Life expectancy index
## 23194                                                                               Mortality rate, female adult (per 1,000 people)
## 23195                                                                                Mortality rate, infant (per 1,000 live births)
## 23196                                                                                 Mortality rate, male adult (per 1,000 people)
## 23197                                                                            Mortality rate, under-five (per 1,000 live births)
## 23210                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 23211                                                                                                                  Income index
## 23241                                                                                                Exports and imports (% of GDP)
## 23242                                                                             Foreign direct investment, net inflows (% of GDP)
## 23243                                                                                              Private capital flows (% of GDP)
## 23245                                                                             Employment in agriculture (% of total employment)
## 23246                                                                                Employment in services (% of total employment)
## 23247                                                                          Employment to population ratio (% ages 15 and older)
## 23252                                                                                       Unemployment, total (% of labour force)
## 23253                                                                                            Unemployment, youth (% ages 15–24)
## 23254                                                                                 Vulnerable employment (% of total employment)
## 23259                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 23260                                                                                              Population ages 15–64 (millions)
## 23261                                                                                       Population ages 65 and older (millions)
## 23262                                                                                             Population under age 5 (millions)
## 23264                                                                                                   Total population (millions)
## 23265                                                                                                          Urban population (%)
## 23266                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 23268                                                                                           Expected years of schooling (years)
## 23269                                                                                   Expected years of schooling, female (years)
## 23270                                                                                     Expected years of schooling, male (years)
## 23300                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 23302                                                                                Total unemployment rate (female to male ratio)
## 23304                                                                                Youth unemployment rate (female to male ratio)
## 23307                                                                                          HIV prevalence, adult (% ages 15-49)
## 23308                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 23309                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 23310                                                                                              Life expectancy at birth (years)
## 23311                                                                                      Life expectancy at birth, female (years)
## 23312                                                                                        Life expectancy at birth, male (years)
## 23313                                                                                                         Life expectancy index
## 23315                                                                               Mortality rate, female adult (per 1,000 people)
## 23316                                                                                Mortality rate, infant (per 1,000 live births)
## 23317                                                                                 Mortality rate, male adult (per 1,000 people)
## 23318                                                                            Mortality rate, under-five (per 1,000 live births)
## 23331                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 23332                                                                                                                  Income index
## 23374                                                                             Foreign direct investment, net inflows (% of GDP)
## 23376                                                                                               Remittances, inflows (% of GDP)
## 23377                                                                             Employment in agriculture (% of total employment)
## 23378                                                                                Employment in services (% of total employment)
## 23379                                                                          Employment to population ratio (% ages 15 and older)
## 23384                                                                                       Unemployment, total (% of labour force)
## 23385                                                                                            Unemployment, youth (% ages 15–24)
## 23386                                                                                 Vulnerable employment (% of total employment)
## 23389                                                                                                   Total population (millions)
## 23390                                                                                                          Urban population (%)
## 23392                                                                                           Expected years of schooling (years)
## 23419                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 23420                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 23421                                                                                              Life expectancy at birth (years)
## 23422                                                                                                         Life expectancy index
## 23424                                                                                Mortality rate, infant (per 1,000 live births)
## 23426                                                                            Mortality rate, under-five (per 1,000 live births)
## 23435                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 23436                                                                                                                  Income index
## 23445                                                                                                Exports and imports (% of GDP)
## 23446                                                                             Foreign direct investment, net inflows (% of GDP)
## 23447                                                                       Net official development assistance received (% of GNI)
## 23448                                                                                              Private capital flows (% of GDP)
## 23449                                                                                               Remittances, inflows (% of GDP)
## 23452                                                                                                 Human Development Index (HDI)
## 23454                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 23455                                                                                              Population ages 15–64 (millions)
## 23456                                                                                       Population ages 65 and older (millions)
## 23457                                                                                             Population under age 5 (millions)
## 23459                                                                                                   Total population (millions)
## 23460                                                                                                          Urban population (%)
## 23461                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 23462                                                                                                               Education index
## 23463                                                                                           Expected years of schooling (years)
## 23472                                                                                               Mean years of schooling (years)
## 23473                                                                                       Mean years of schooling, female (years)
## 23474                                                                                         Mean years of schooling, male (years)
## 23476                                               Population with at least some secondary education, female (% ages 25 and older)
## 23477                                                 Population with at least some secondary education, male (% ages 25 and older)
## 23511                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 23513                                                                                Total unemployment rate (female to male ratio)
## 23517                                                                                Youth unemployment rate (female to male ratio)
## 23520                                                                                          HIV prevalence, adult (% ages 15-49)
## 23521                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 23522                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 23523                                                                                              Life expectancy at birth (years)
## 23524                                                                                      Life expectancy at birth, female (years)
## 23525                                                                                        Life expectancy at birth, male (years)
## 23526                                                                                                         Life expectancy index
## 23528                                                                               Mortality rate, female adult (per 1,000 people)
## 23529                                                                                Mortality rate, infant (per 1,000 live births)
## 23530                                                                                 Mortality rate, male adult (per 1,000 people)
## 23531                                                                            Mortality rate, under-five (per 1,000 live births)
## 23544                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 23545                                                                                                                  Income index
## 23576                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 23588                                                                                                Exports and imports (% of GDP)
## 23589                                                                             Foreign direct investment, net inflows (% of GDP)
## 23590                                                                       Net official development assistance received (% of GNI)
## 23591                                                                                              Private capital flows (% of GDP)
## 23592                                                                                               Remittances, inflows (% of GDP)
## 23594                                                                             Employment in agriculture (% of total employment)
## 23595                                                                                Employment in services (% of total employment)
## 23596                                                                          Employment to population ratio (% ages 15 and older)
## 23601                                                                                       Unemployment, total (% of labour force)
## 23602                                                                                            Unemployment, youth (% ages 15–24)
## 23603                                                                                 Vulnerable employment (% of total employment)
## 23606                                                                                                 Human Development Index (HDI)
## 23608                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 23609                                                                                              Population ages 15–64 (millions)
## 23610                                                                                       Population ages 65 and older (millions)
## 23611                                                                                             Population under age 5 (millions)
## 23613                                                                                                   Total population (millions)
## 23614                                                                                                          Urban population (%)
## 23615                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 23616                                                                                                               Education index
## 23617                                                                                           Expected years of schooling (years)
## 23626                                                                                               Mean years of schooling (years)
## 23627                                                                                       Mean years of schooling, female (years)
## 23628                                                                                         Mean years of schooling, male (years)
## 23630                                               Population with at least some secondary education, female (% ages 25 and older)
## 23631                                                 Population with at least some secondary education, male (% ages 25 and older)
## 23662                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 23664                                                                                Total unemployment rate (female to male ratio)
## 23668                                                                                Youth unemployment rate (female to male ratio)
## 23671                                                                                          HIV prevalence, adult (% ages 15-49)
## 23672                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 23673                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 23674                                                                                              Life expectancy at birth (years)
## 23675                                                                                      Life expectancy at birth, female (years)
## 23676                                                                                        Life expectancy at birth, male (years)
## 23677                                                                                                         Life expectancy index
## 23679                                                                               Mortality rate, female adult (per 1,000 people)
## 23680                                                                                Mortality rate, infant (per 1,000 live births)
## 23681                                                                                 Mortality rate, male adult (per 1,000 people)
## 23682                                                                            Mortality rate, under-five (per 1,000 live births)
## 23695                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 23696                                                                                                                  Income index
## 23728                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 23741                                                                                                Exports and imports (% of GDP)
## 23742                                                                             Foreign direct investment, net inflows (% of GDP)
## 23743                                                                       Net official development assistance received (% of GNI)
## 23745                                                                                               Remittances, inflows (% of GDP)
## 23746                                                                             Employment in agriculture (% of total employment)
## 23747                                                                                Employment in services (% of total employment)
## 23748                                                                          Employment to population ratio (% ages 15 and older)
## 23753                                                                                       Unemployment, total (% of labour force)
## 23754                                                                                            Unemployment, youth (% ages 15–24)
## 23755                                                                                 Vulnerable employment (% of total employment)
## 23758                                                                                                 Human Development Index (HDI)
## 23760                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 23761                                                                                              Population ages 15–64 (millions)
## 23762                                                                                       Population ages 65 and older (millions)
## 23763                                                                                             Population under age 5 (millions)
## 23765                                                                                                   Total population (millions)
## 23766                                                                                                          Urban population (%)
## 23767                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 23768                                                                                                               Education index
## 23769                                                                                           Expected years of schooling (years)
## 23770                                                                                   Expected years of schooling, female (years)
## 23771                                                                                     Expected years of schooling, male (years)
## 23778                                                                                               Mean years of schooling (years)
## 23779                                                                                       Mean years of schooling, female (years)
## 23780                                                                                         Mean years of schooling, male (years)
## 23782                                               Population with at least some secondary education, female (% ages 25 and older)
## 23783                                                 Population with at least some secondary education, male (% ages 25 and older)
## 23813                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 23815                                                                                Total unemployment rate (female to male ratio)
## 23819                                                                                Youth unemployment rate (female to male ratio)
## 23822                                                                                          HIV prevalence, adult (% ages 15-49)
## 23823                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 23824                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 23825                                                                                              Life expectancy at birth (years)
## 23826                                                                                      Life expectancy at birth, female (years)
## 23827                                                                                        Life expectancy at birth, male (years)
## 23828                                                                                                         Life expectancy index
## 23829                                                                               Mortality rate, female adult (per 1,000 people)
## 23830                                                                                Mortality rate, infant (per 1,000 live births)
## 23831                                                                                 Mortality rate, male adult (per 1,000 people)
## 23832                                                                            Mortality rate, under-five (per 1,000 live births)
## 23845                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 23846                                                                                                                  Income index
## 23878                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 23891                                                                                                Exports and imports (% of GDP)
## 23892                                                                             Foreign direct investment, net inflows (% of GDP)
## 23893                                                                       Net official development assistance received (% of GNI)
## 23894                                                                                              Private capital flows (% of GDP)
## 23895                                                                                               Remittances, inflows (% of GDP)
## 23897                                                                             Employment in agriculture (% of total employment)
## 23898                                                                                Employment in services (% of total employment)
## 23899                                                                          Employment to population ratio (% ages 15 and older)
## 23904                                                                                       Unemployment, total (% of labour force)
## 23905                                                                                            Unemployment, youth (% ages 15–24)
## 23906                                                                                 Vulnerable employment (% of total employment)
## 23909                                                                                                 Human Development Index (HDI)
## 23911                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 23912                                                                                              Population ages 15–64 (millions)
## 23913                                                                                       Population ages 65 and older (millions)
## 23914                                                                                             Population under age 5 (millions)
## 23916                                                                                                   Total population (millions)
## 23917                                                                                                          Urban population (%)
## 23918                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 23919                                                                                                               Education index
## 23920                                                                                           Expected years of schooling (years)
## 23929                                                                                               Mean years of schooling (years)
## 23930                                                                                       Mean years of schooling, female (years)
## 23931                                                                                         Mean years of schooling, male (years)
## 23933                                               Population with at least some secondary education, female (% ages 25 and older)
## 23934                                                 Population with at least some secondary education, male (% ages 25 and older)
## 23965                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 23967                                                                                Total unemployment rate (female to male ratio)
## 23971                                                                                Youth unemployment rate (female to male ratio)
## 23974                                                                                          HIV prevalence, adult (% ages 15-49)
## 23975                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 23976                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 23977                                                                                              Life expectancy at birth (years)
## 23978                                                                                      Life expectancy at birth, female (years)
## 23979                                                                                        Life expectancy at birth, male (years)
## 23980                                                                                                         Life expectancy index
## 23982                                                                               Mortality rate, female adult (per 1,000 people)
## 23983                                                                                Mortality rate, infant (per 1,000 live births)
## 23984                                                                                 Mortality rate, male adult (per 1,000 people)
## 23985                                                                            Mortality rate, under-five (per 1,000 live births)
## 23998                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 23999                                                                                                                  Income index
## 24031                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 24044                                                                                                Exports and imports (% of GDP)
## 24045                                                                             Foreign direct investment, net inflows (% of GDP)
## 24046                                                                       Net official development assistance received (% of GNI)
## 24048                                                                                               Remittances, inflows (% of GDP)
## 24050                                                                             Employment in agriculture (% of total employment)
## 24051                                                                                Employment in services (% of total employment)
## 24052                                                                          Employment to population ratio (% ages 15 and older)
## 24057                                                                                       Unemployment, total (% of labour force)
## 24058                                                                                            Unemployment, youth (% ages 15–24)
## 24059                                                                                 Vulnerable employment (% of total employment)
## 24065                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 24066                                                                                              Population ages 15–64 (millions)
## 24067                                                                                       Population ages 65 and older (millions)
## 24068                                                                                             Population under age 5 (millions)
## 24070                                                                                                   Total population (millions)
## 24071                                                                                                          Urban population (%)
## 24072                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 24074                                                                                           Expected years of schooling (years)
## 24075                                                                                   Expected years of schooling, female (years)
## 24076                                                                                     Expected years of schooling, male (years)
## 24119                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 24121                                                                                Total unemployment rate (female to male ratio)
## 24125                                                                                Youth unemployment rate (female to male ratio)
## 24128                                                                                          HIV prevalence, adult (% ages 15-49)
## 24129                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 24130                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 24131                                                                                              Life expectancy at birth (years)
## 24132                                                                                      Life expectancy at birth, female (years)
## 24133                                                                                        Life expectancy at birth, male (years)
## 24134                                                                                                         Life expectancy index
## 24136                                                                               Mortality rate, female adult (per 1,000 people)
## 24137                                                                                Mortality rate, infant (per 1,000 live births)
## 24138                                                                                 Mortality rate, male adult (per 1,000 people)
## 24139                                                                            Mortality rate, under-five (per 1,000 live births)
## 24152                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 24153                                                                                                                  Income index
## 24183                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 24198                                                                       Net official development assistance received (% of GNI)
## 24199                                                                                              Private capital flows (% of GDP)
## 24200                                                                                               Remittances, inflows (% of GDP)
## 24202                                                                             Employment in agriculture (% of total employment)
## 24203                                                                                Employment in services (% of total employment)
## 24204                                                                          Employment to population ratio (% ages 15 and older)
## 24209                                                                                       Unemployment, total (% of labour force)
## 24210                                                                                            Unemployment, youth (% ages 15–24)
## 24211                                                                                 Vulnerable employment (% of total employment)
## 24214                                                                                                 Human Development Index (HDI)
## 24216                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 24217                                                                                              Population ages 15–64 (millions)
## 24218                                                                                       Population ages 65 and older (millions)
## 24219                                                                                             Population under age 5 (millions)
## 24221                                                                                                   Total population (millions)
## 24222                                                                                                          Urban population (%)
## 24223                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 24224                                                                                                               Education index
## 24225                                                                                           Expected years of schooling (years)
## 24233                                                                                               Mean years of schooling (years)
## 24234                                                                                       Mean years of schooling, female (years)
## 24235                                                                                         Mean years of schooling, male (years)
## 24237                                               Population with at least some secondary education, female (% ages 25 and older)
## 24238                                                 Population with at least some secondary education, male (% ages 25 and older)
## 24265                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 24267                                                                                Total unemployment rate (female to male ratio)
## 24270                                                                                Youth unemployment rate (female to male ratio)
## 24272                                                                                          HIV prevalence, adult (% ages 15-49)
## 24273                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 24274                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 24275                                                                                              Life expectancy at birth (years)
## 24276                                                                                      Life expectancy at birth, female (years)
## 24277                                                                                        Life expectancy at birth, male (years)
## 24278                                                                                                         Life expectancy index
## 24279                                                                               Mortality rate, female adult (per 1,000 people)
## 24280                                                                                Mortality rate, infant (per 1,000 live births)
## 24281                                                                                 Mortality rate, male adult (per 1,000 people)
## 24282                                                                            Mortality rate, under-five (per 1,000 live births)
## 24294                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 24295                                                                                                                  Income index
## 24313                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 24324                                                                                                Exports and imports (% of GDP)
## 24325                                                                             Foreign direct investment, net inflows (% of GDP)
## 24326                                                                       Net official development assistance received (% of GNI)
## 24327                                                                                              Private capital flows (% of GDP)
## 24328                                                                                               Remittances, inflows (% of GDP)
## 24329                                                                             Employment in agriculture (% of total employment)
## 24330                                                                                Employment in services (% of total employment)
## 24331                                                                          Employment to population ratio (% ages 15 and older)
## 24336                                                                                       Unemployment, total (% of labour force)
## 24337                                                                                            Unemployment, youth (% ages 15–24)
## 24338                                                                                 Vulnerable employment (% of total employment)
## 24341                                                                                                 Human Development Index (HDI)
## 24343                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 24344                                                                                              Population ages 15–64 (millions)
## 24345                                                                                       Population ages 65 and older (millions)
## 24346                                                                                             Population under age 5 (millions)
## 24348                                                                                                   Total population (millions)
## 24349                                                                                                          Urban population (%)
## 24350                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 24351                                                                                                               Education index
## 24352                                                                                           Expected years of schooling (years)
## 24353                                                                                   Expected years of schooling, female (years)
## 24354                                                                                     Expected years of schooling, male (years)
## 24360                                                                                               Mean years of schooling (years)
## 24361                                                                                       Mean years of schooling, female (years)
## 24362                                                                                         Mean years of schooling, male (years)
## 24364                                               Population with at least some secondary education, female (% ages 25 and older)
## 24365                                                 Population with at least some secondary education, male (% ages 25 and older)
## 24396                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 24398                                                                                Total unemployment rate (female to male ratio)
## 24402                                                                                Youth unemployment rate (female to male ratio)
## 24404                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 24405                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 24406                                                                                              Life expectancy at birth (years)
## 24407                                                                                      Life expectancy at birth, female (years)
## 24408                                                                                        Life expectancy at birth, male (years)
## 24409                                                                                                         Life expectancy index
## 24410                                                                               Mortality rate, female adult (per 1,000 people)
## 24411                                                                                Mortality rate, infant (per 1,000 live births)
## 24412                                                                                 Mortality rate, male adult (per 1,000 people)
## 24413                                                                            Mortality rate, under-five (per 1,000 live births)
## 24426                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 24427                                                                                                                  Income index
## 24457                                                                                                Exports and imports (% of GDP)
## 24458                                                                             Foreign direct investment, net inflows (% of GDP)
## 24459                                                                                              Private capital flows (% of GDP)
## 24460                                                                                               Remittances, inflows (% of GDP)
## 24461                                                                             Employment in agriculture (% of total employment)
## 24462                                                                                Employment in services (% of total employment)
## 24463                                                                          Employment to population ratio (% ages 15 and older)
## 24468                                                                                       Unemployment, total (% of labour force)
## 24469                                                                                            Unemployment, youth (% ages 15–24)
## 24470                                                                                 Vulnerable employment (% of total employment)
## 24473                                                                                                 Human Development Index (HDI)
## 24475                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 24476                                                                                              Population ages 15–64 (millions)
## 24477                                                                                       Population ages 65 and older (millions)
## 24478                                                                                             Population under age 5 (millions)
## 24480                                                                                                   Total population (millions)
## 24481                                                                                                          Urban population (%)
## 24482                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 24483                                                                                                               Education index
## 24484                                                                                           Expected years of schooling (years)
## 24485                                                                                   Expected years of schooling, female (years)
## 24486                                                                                     Expected years of schooling, male (years)
## 24492                                                                                               Mean years of schooling (years)
## 24493                                                                                       Mean years of schooling, female (years)
## 24494                                                                                         Mean years of schooling, male (years)
## 24496                                               Population with at least some secondary education, female (% ages 25 and older)
## 24497                                                 Population with at least some secondary education, male (% ages 25 and older)
## 24527                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 24529                                                                                Total unemployment rate (female to male ratio)
## 24534                                                                                Youth unemployment rate (female to male ratio)
## 24536                                                                                          HIV prevalence, adult (% ages 15-49)
## 24537                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 24538                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 24539                                                                                              Life expectancy at birth (years)
## 24540                                                                                      Life expectancy at birth, female (years)
## 24541                                                                                        Life expectancy at birth, male (years)
## 24542                                                                                                         Life expectancy index
## 24543                                                                               Mortality rate, female adult (per 1,000 people)
## 24544                                                                                Mortality rate, infant (per 1,000 live births)
## 24545                                                                                 Mortality rate, male adult (per 1,000 people)
## 24546                                                                            Mortality rate, under-five (per 1,000 live births)
## 24559                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 24560                                                                                                                  Income index
## 24590                                                                                                Exports and imports (% of GDP)
## 24591                                                                             Foreign direct investment, net inflows (% of GDP)
## 24592                                                                                              Private capital flows (% of GDP)
## 24593                                                                                               Remittances, inflows (% of GDP)
## 24594                                                                             Employment in agriculture (% of total employment)
## 24595                                                                                Employment in services (% of total employment)
## 24596                                                                          Employment to population ratio (% ages 15 and older)
## 24601                                                                                       Unemployment, total (% of labour force)
## 24602                                                                                            Unemployment, youth (% ages 15–24)
## 24603                                                                                 Vulnerable employment (% of total employment)
## 24608                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 24609                                                                                              Population ages 15–64 (millions)
## 24610                                                                                       Population ages 65 and older (millions)
## 24611                                                                                             Population under age 5 (millions)
## 24613                                                                                                   Total population (millions)
## 24614                                                                                                          Urban population (%)
## 24615                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 24617                                                                                           Expected years of schooling (years)
## 24618                                                                                   Expected years of schooling, female (years)
## 24619                                                                                     Expected years of schooling, male (years)
## 24630                                               Population with at least some secondary education, female (% ages 25 and older)
## 24631                                                 Population with at least some secondary education, male (% ages 25 and older)
## 24664                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 24666                                                                                Total unemployment rate (female to male ratio)
## 24671                                                                                Youth unemployment rate (female to male ratio)
## 24674                                                                                          HIV prevalence, adult (% ages 15-49)
## 24677                                                                                              Life expectancy at birth (years)
## 24678                                                                                      Life expectancy at birth, female (years)
## 24679                                                                                        Life expectancy at birth, male (years)
## 24680                                                                                                         Life expectancy index
## 24682                                                                               Mortality rate, female adult (per 1,000 people)
## 24683                                                                                Mortality rate, infant (per 1,000 live births)
## 24684                                                                                 Mortality rate, male adult (per 1,000 people)
## 24685                                                                            Mortality rate, under-five (per 1,000 live births)
## 24698                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 24699                                                                                                                  Income index
## 24718                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 24731                                                                                                Exports and imports (% of GDP)
## 24737                                                                             Employment in agriculture (% of total employment)
## 24738                                                                                Employment in services (% of total employment)
## 24739                                                                          Employment to population ratio (% ages 15 and older)
## 24744                                                                                       Unemployment, total (% of labour force)
## 24745                                                                                            Unemployment, youth (% ages 15–24)
## 24746                                                                                 Vulnerable employment (% of total employment)
## 24748                                                                                                 Human Development Index (HDI)
## 24750                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 24751                                                                                              Population ages 15–64 (millions)
## 24752                                                                                       Population ages 65 and older (millions)
## 24753                                                                                             Population under age 5 (millions)
## 24755                                                                                                   Total population (millions)
## 24756                                                                                                          Urban population (%)
## 24757                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 24758                                                                                                               Education index
## 24759                                                                                           Expected years of schooling (years)
## 24760                                                                                   Expected years of schooling, female (years)
## 24761                                                                                     Expected years of schooling, male (years)
## 24767                                                                                               Mean years of schooling (years)
## 24768                                                                                       Mean years of schooling, female (years)
## 24769                                                                                         Mean years of schooling, male (years)
## 24771                                               Population with at least some secondary education, female (% ages 25 and older)
## 24772                                                 Population with at least some secondary education, male (% ages 25 and older)
## 24801                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 24803                                                                                Total unemployment rate (female to male ratio)
## 24807                                                                                Youth unemployment rate (female to male ratio)
## 24809                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 24810                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 24811                                                                                              Life expectancy at birth (years)
## 24812                                                                                      Life expectancy at birth, female (years)
## 24813                                                                                        Life expectancy at birth, male (years)
## 24814                                                                                                         Life expectancy index
## 24815                                                                               Mortality rate, female adult (per 1,000 people)
## 24816                                                                                Mortality rate, infant (per 1,000 live births)
## 24817                                                                                 Mortality rate, male adult (per 1,000 people)
## 24818                                                                            Mortality rate, under-five (per 1,000 live births)
## 24831                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 24832                                                                                                                  Income index
## 24862                                                                                                Exports and imports (% of GDP)
## 24863                                                                             Foreign direct investment, net inflows (% of GDP)
## 24864                                                                                              Private capital flows (% of GDP)
## 24865                                                                                               Remittances, inflows (% of GDP)
## 24866                                                                             Employment in agriculture (% of total employment)
## 24867                                                                                Employment in services (% of total employment)
## 24868                                                                          Employment to population ratio (% ages 15 and older)
## 24873                                                                                       Unemployment, total (% of labour force)
## 24874                                                                                            Unemployment, youth (% ages 15–24)
## 24875                                                                                 Vulnerable employment (% of total employment)
## 24878                                                                                                 Human Development Index (HDI)
## 24880                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 24881                                                                                              Population ages 15–64 (millions)
## 24882                                                                                       Population ages 65 and older (millions)
## 24883                                                                                             Population under age 5 (millions)
## 24885                                                                                                   Total population (millions)
## 24886                                                                                                          Urban population (%)
## 24887                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 24888                                                                                                               Education index
## 24889                                                                                           Expected years of schooling (years)
## 24898                                                                                               Mean years of schooling (years)
## 24899                                                                                       Mean years of schooling, female (years)
## 24900                                                                                         Mean years of schooling, male (years)
## 24902                                               Population with at least some secondary education, female (% ages 25 and older)
## 24903                                                 Population with at least some secondary education, male (% ages 25 and older)
## 24933                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 24935                                                                                Total unemployment rate (female to male ratio)
## 24940                                                                                Youth unemployment rate (female to male ratio)
## 24943                                                                                          HIV prevalence, adult (% ages 15-49)
## 24944                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 24945                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 24946                                                                                              Life expectancy at birth (years)
## 24947                                                                                      Life expectancy at birth, female (years)
## 24948                                                                                        Life expectancy at birth, male (years)
## 24949                                                                                                         Life expectancy index
## 24951                                                                               Mortality rate, female adult (per 1,000 people)
## 24952                                                                                Mortality rate, infant (per 1,000 live births)
## 24953                                                                                 Mortality rate, male adult (per 1,000 people)
## 24954                                                                            Mortality rate, under-five (per 1,000 live births)
## 24967                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 24968                                                                                                                  Income index
## 24999                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 25012                                                                                                Exports and imports (% of GDP)
## 25013                                                                             Foreign direct investment, net inflows (% of GDP)
## 25014                                                                       Net official development assistance received (% of GNI)
## 25015                                                                                              Private capital flows (% of GDP)
## 25016                                                                                               Remittances, inflows (% of GDP)
## 25018                                                                             Employment in agriculture (% of total employment)
## 25019                                                                                Employment in services (% of total employment)
## 25020                                                                          Employment to population ratio (% ages 15 and older)
## 25025                                                                                       Unemployment, total (% of labour force)
## 25026                                                                                            Unemployment, youth (% ages 15–24)
## 25027                                                                                 Vulnerable employment (% of total employment)
## 25032                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 25033                                                                                              Population ages 15–64 (millions)
## 25034                                                                                       Population ages 65 and older (millions)
## 25035                                                                                             Population under age 5 (millions)
## 25037                                                                                                   Total population (millions)
## 25038                                                                                                          Urban population (%)
## 25039                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 25041                                                                                           Expected years of schooling (years)
## 25073                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 25074                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 25075                                                                                              Life expectancy at birth (years)
## 25076                                                                                      Life expectancy at birth, female (years)
## 25077                                                                                        Life expectancy at birth, male (years)
## 25078                                                                                                         Life expectancy index
## 25079                                                                               Mortality rate, female adult (per 1,000 people)
## 25080                                                                                Mortality rate, infant (per 1,000 live births)
## 25081                                                                                 Mortality rate, male adult (per 1,000 people)
## 25082                                                                            Mortality rate, under-five (per 1,000 live births)
## 25093                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 25094                                                                                                                  Income index
## 25107                                                                                                Exports and imports (% of GDP)
## 25108                                                                             Foreign direct investment, net inflows (% of GDP)
## 25109                                                                       Net official development assistance received (% of GNI)
## 25110                                                                                              Private capital flows (% of GDP)
## 25111                                                                                               Remittances, inflows (% of GDP)
## 25114                                                                                                 Human Development Index (HDI)
## 25116                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 25117                                                                                              Population ages 15–64 (millions)
## 25118                                                                                       Population ages 65 and older (millions)
## 25119                                                                                             Population under age 5 (millions)
## 25121                                                                                                   Total population (millions)
## 25122                                                                                                          Urban population (%)
## 25123                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 25124                                                                                                               Education index
## 25125                                                                                           Expected years of schooling (years)
## 25126                                                                                   Expected years of schooling, female (years)
## 25127                                                                                     Expected years of schooling, male (years)
## 25134                                                                                               Mean years of schooling (years)
## 25162                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 25164                                                                                Total unemployment rate (female to male ratio)
## 25167                                                                                Youth unemployment rate (female to male ratio)
## 25170                                                                                          HIV prevalence, adult (% ages 15-49)
## 25171                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 25172                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 25173                                                                                              Life expectancy at birth (years)
## 25174                                                                                      Life expectancy at birth, female (years)
## 25175                                                                                        Life expectancy at birth, male (years)
## 25176                                                                                                         Life expectancy index
## 25178                                                                               Mortality rate, female adult (per 1,000 people)
## 25179                                                                                Mortality rate, infant (per 1,000 live births)
## 25180                                                                                 Mortality rate, male adult (per 1,000 people)
## 25181                                                                            Mortality rate, under-five (per 1,000 live births)
## 25194                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 25195                                                                                                                  Income index
## 25226                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 25237                                                                                                Exports and imports (% of GDP)
## 25238                                                                             Foreign direct investment, net inflows (% of GDP)
## 25239                                                                       Net official development assistance received (% of GNI)
## 25241                                                                                               Remittances, inflows (% of GDP)
## 25243                                                                             Employment in agriculture (% of total employment)
## 25244                                                                                Employment in services (% of total employment)
## 25245                                                                          Employment to population ratio (% ages 15 and older)
## 25250                                                                                       Unemployment, total (% of labour force)
## 25251                                                                                            Unemployment, youth (% ages 15–24)
## 25252                                                                                 Vulnerable employment (% of total employment)
## 25256                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 25257                                                                                              Population ages 15–64 (millions)
## 25258                                                                                       Population ages 65 and older (millions)
## 25259                                                                                             Population under age 5 (millions)
## 25261                                                                                                   Total population (millions)
## 25262                                                                                                          Urban population (%)
## 25263                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 25265                                                                                           Expected years of schooling (years)
## 25296                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 25298                                                                                Total unemployment rate (female to male ratio)
## 25300                                                                                Youth unemployment rate (female to male ratio)
## 25303                                                                                          HIV prevalence, adult (% ages 15-49)
## 25304                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 25305                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 25306                                                                                              Life expectancy at birth (years)
## 25307                                                                                      Life expectancy at birth, female (years)
## 25308                                                                                        Life expectancy at birth, male (years)
## 25309                                                                                                         Life expectancy index
## 25311                                                                               Mortality rate, female adult (per 1,000 people)
## 25312                                                                                Mortality rate, infant (per 1,000 live births)
## 25313                                                                                 Mortality rate, male adult (per 1,000 people)
## 25314                                                                            Mortality rate, under-five (per 1,000 live births)
## 25326                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 25327                                                                                                                  Income index
## 25357                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 25368                                                                                                Exports and imports (% of GDP)
## 25369                                                                             Foreign direct investment, net inflows (% of GDP)
## 25370                                                                       Net official development assistance received (% of GNI)
## 25371                                                                                              Private capital flows (% of GDP)
## 25372                                                                                               Remittances, inflows (% of GDP)
## 25374                                                                             Employment in agriculture (% of total employment)
## 25375                                                                                Employment in services (% of total employment)
## 25376                                                                          Employment to population ratio (% ages 15 and older)
## 25381                                                                                       Unemployment, total (% of labour force)
## 25382                                                                                            Unemployment, youth (% ages 15–24)
## 25383                                                                                 Vulnerable employment (% of total employment)
## 25385                                                                                                 Human Development Index (HDI)
## 25387                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 25388                                                                                              Population ages 15–64 (millions)
## 25389                                                                                       Population ages 65 and older (millions)
## 25390                                                                                             Population under age 5 (millions)
## 25392                                                                                                   Total population (millions)
## 25393                                                                                                          Urban population (%)
## 25394                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 25395                                                                                                               Education index
## 25396                                                                                           Expected years of schooling (years)
## 25405                                                                                               Mean years of schooling (years)
## 25406                                                                                       Mean years of schooling, female (years)
## 25407                                                                                         Mean years of schooling, male (years)
## 25409                                               Population with at least some secondary education, female (% ages 25 and older)
## 25410                                                 Population with at least some secondary education, male (% ages 25 and older)
## 25441                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 25443                                                                                Total unemployment rate (female to male ratio)
## 25445                                                                                Youth unemployment rate (female to male ratio)
## 25448                                                                                          HIV prevalence, adult (% ages 15-49)
## 25449                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 25450                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 25451                                                                                              Life expectancy at birth (years)
## 25452                                                                                      Life expectancy at birth, female (years)
## 25453                                                                                        Life expectancy at birth, male (years)
## 25454                                                                                                         Life expectancy index
## 25456                                                                               Mortality rate, female adult (per 1,000 people)
## 25457                                                                                Mortality rate, infant (per 1,000 live births)
## 25458                                                                                 Mortality rate, male adult (per 1,000 people)
## 25459                                                                            Mortality rate, under-five (per 1,000 live births)
## 25472                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 25473                                                                                                                  Income index
## 25499                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 25509                                                                                                Exports and imports (% of GDP)
## 25510                                                                             Foreign direct investment, net inflows (% of GDP)
## 25511                                                                       Net official development assistance received (% of GNI)
## 25515                                                                             Employment in agriculture (% of total employment)
## 25516                                                                                Employment in services (% of total employment)
## 25517                                                                          Employment to population ratio (% ages 15 and older)
## 25522                                                                                       Unemployment, total (% of labour force)
## 25523                                                                                            Unemployment, youth (% ages 15–24)
## 25524                                                                                 Vulnerable employment (% of total employment)
## 25527                                                                                                 Human Development Index (HDI)
## 25529                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 25530                                                                                              Population ages 15–64 (millions)
## 25531                                                                                       Population ages 65 and older (millions)
## 25532                                                                                             Population under age 5 (millions)
## 25534                                                                                                   Total population (millions)
## 25535                                                                                                          Urban population (%)
## 25536                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 25537                                                                                                               Education index
## 25538                                                                                           Expected years of schooling (years)
## 25539                                                                                   Expected years of schooling, female (years)
## 25540                                                                                     Expected years of schooling, male (years)
## 25547                                                                                               Mean years of schooling (years)
## 25548                                                                                       Mean years of schooling, female (years)
## 25549                                                                                         Mean years of schooling, male (years)
## 25551                                               Population with at least some secondary education, female (% ages 25 and older)
## 25552                                                 Population with at least some secondary education, male (% ages 25 and older)
## 25580                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 25582                                                                                Total unemployment rate (female to male ratio)
## 25586                                                                                Youth unemployment rate (female to male ratio)
## 25589                                                                                          HIV prevalence, adult (% ages 15-49)
## 25590                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 25591                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 25592                                                                                              Life expectancy at birth (years)
## 25593                                                                                      Life expectancy at birth, female (years)
## 25594                                                                                        Life expectancy at birth, male (years)
## 25595                                                                                                         Life expectancy index
## 25597                                                                               Mortality rate, female adult (per 1,000 people)
## 25598                                                                                Mortality rate, infant (per 1,000 live births)
## 25599                                                                                 Mortality rate, male adult (per 1,000 people)
## 25600                                                                            Mortality rate, under-five (per 1,000 live births)
## 25613                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 25614                                                                                                                  Income index
## 25645                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 25658                                                                                                Exports and imports (% of GDP)
## 25659                                                                             Foreign direct investment, net inflows (% of GDP)
## 25660                                                                       Net official development assistance received (% of GNI)
## 25661                                                                                              Private capital flows (% of GDP)
## 25662                                                                                               Remittances, inflows (% of GDP)
## 25663                                                                             Employment in agriculture (% of total employment)
## 25664                                                                                Employment in services (% of total employment)
## 25665                                                                          Employment to population ratio (% ages 15 and older)
## 25670                                                                                       Unemployment, total (% of labour force)
## 25671                                                                                            Unemployment, youth (% ages 15–24)
## 25672                                                                                 Vulnerable employment (% of total employment)
## 25675                                                                                                 Human Development Index (HDI)
## 25677                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 25678                                                                                              Population ages 15–64 (millions)
## 25679                                                                                       Population ages 65 and older (millions)
## 25680                                                                                             Population under age 5 (millions)
## 25682                                                                                                   Total population (millions)
## 25683                                                                                                          Urban population (%)
## 25684                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 25685                                                                                                               Education index
## 25686                                                                                           Expected years of schooling (years)
## 25687                                                                                   Expected years of schooling, female (years)
## 25688                                                                                     Expected years of schooling, male (years)
## 25695                                                                                               Mean years of schooling (years)
## 25696                                                                                       Mean years of schooling, female (years)
## 25697                                                                                         Mean years of schooling, male (years)
## 25699                                               Population with at least some secondary education, female (% ages 25 and older)
## 25700                                                 Population with at least some secondary education, male (% ages 25 and older)
## 25729                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 25731                                                                                Total unemployment rate (female to male ratio)
## 25735                                                                                Youth unemployment rate (female to male ratio)
## 25738                                                                                          HIV prevalence, adult (% ages 15-49)
## 25739                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 25740                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 25741                                                                                              Life expectancy at birth (years)
## 25742                                                                                      Life expectancy at birth, female (years)
## 25743                                                                                        Life expectancy at birth, male (years)
## 25744                                                                                                         Life expectancy index
## 25746                                                                               Mortality rate, female adult (per 1,000 people)
## 25747                                                                                Mortality rate, infant (per 1,000 live births)
## 25748                                                                                 Mortality rate, male adult (per 1,000 people)
## 25749                                                                            Mortality rate, under-five (per 1,000 live births)
## 25762                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 25763                                                                                                                  Income index
## 25794                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 25806                                                                                                Exports and imports (% of GDP)
## 25807                                                                             Foreign direct investment, net inflows (% of GDP)
## 25808                                                                       Net official development assistance received (% of GNI)
## 25809                                                                                              Private capital flows (% of GDP)
## 25810                                                                                               Remittances, inflows (% of GDP)
## 25811                                                                             Employment in agriculture (% of total employment)
## 25812                                                                                Employment in services (% of total employment)
## 25813                                                                          Employment to population ratio (% ages 15 and older)
## 25818                                                                                       Unemployment, total (% of labour force)
## 25819                                                                                            Unemployment, youth (% ages 15–24)
## 25820                                                                                 Vulnerable employment (% of total employment)
## 25823                                                                                                 Human Development Index (HDI)
## 25825                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 25826                                                                                              Population ages 15–64 (millions)
## 25827                                                                                       Population ages 65 and older (millions)
## 25828                                                                                             Population under age 5 (millions)
## 25830                                                                                                   Total population (millions)
## 25831                                                                                                          Urban population (%)
## 25832                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 25833                                                                                                               Education index
## 25834                                                                                           Expected years of schooling (years)
## 25843                                                                                               Mean years of schooling (years)
## 25844                                                                                       Mean years of schooling, female (years)
## 25845                                                                                         Mean years of schooling, male (years)
## 25847                                               Population with at least some secondary education, female (% ages 25 and older)
## 25848                                                 Population with at least some secondary education, male (% ages 25 and older)
## 25878                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 25880                                                                                Total unemployment rate (female to male ratio)
## 25883                                                                                Youth unemployment rate (female to male ratio)
## 25886                                                                                          HIV prevalence, adult (% ages 15-49)
## 25887                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 25888                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 25889                                                                                              Life expectancy at birth (years)
## 25890                                                                                      Life expectancy at birth, female (years)
## 25891                                                                                        Life expectancy at birth, male (years)
## 25892                                                                                                         Life expectancy index
## 25894                                                                               Mortality rate, female adult (per 1,000 people)
## 25895                                                                                Mortality rate, infant (per 1,000 live births)
## 25896                                                                                 Mortality rate, male adult (per 1,000 people)
## 25897                                                                            Mortality rate, under-five (per 1,000 live births)
## 25910                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 25911                                                                                                                  Income index
## 25930                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 25941                                                                                                Exports and imports (% of GDP)
## 25946                                                                             Employment in agriculture (% of total employment)
## 25947                                                                                Employment in services (% of total employment)
## 25948                                                                          Employment to population ratio (% ages 15 and older)
## 25953                                                                                       Unemployment, total (% of labour force)
## 25954                                                                                            Unemployment, youth (% ages 15–24)
## 25955                                                                                 Vulnerable employment (% of total employment)
## 25958                                                                                                 Human Development Index (HDI)
## 25960                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 25961                                                                                              Population ages 15–64 (millions)
## 25962                                                                                       Population ages 65 and older (millions)
## 25963                                                                                             Population under age 5 (millions)
## 25965                                                                                                   Total population (millions)
## 25966                                                                                                          Urban population (%)
## 25967                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 25968                                                                                                               Education index
## 25969                                                                                           Expected years of schooling (years)
## 25970                                                                                   Expected years of schooling, female (years)
## 25971                                                                                     Expected years of schooling, male (years)
## 25978                                                                                               Mean years of schooling (years)
## 25979                                                                                       Mean years of schooling, female (years)
## 25980                                                                                         Mean years of schooling, male (years)
## 25982                                               Population with at least some secondary education, female (% ages 25 and older)
## 25983                                                 Population with at least some secondary education, male (% ages 25 and older)
## 26013                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 26015                                                                                Total unemployment rate (female to male ratio)
## 26019                                                                                Youth unemployment rate (female to male ratio)
## 26021                                                                                          HIV prevalence, adult (% ages 15-49)
## 26022                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 26023                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 26024                                                                                              Life expectancy at birth (years)
## 26025                                                                                      Life expectancy at birth, female (years)
## 26026                                                                                        Life expectancy at birth, male (years)
## 26027                                                                                                         Life expectancy index
## 26028                                                                               Mortality rate, female adult (per 1,000 people)
## 26029                                                                                Mortality rate, infant (per 1,000 live births)
## 26030                                                                                 Mortality rate, male adult (per 1,000 people)
## 26031                                                                            Mortality rate, under-five (per 1,000 live births)
## 26044                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 26045                                                                                                                  Income index
## 26075                                                                                                Exports and imports (% of GDP)
## 26076                                                                             Foreign direct investment, net inflows (% of GDP)
## 26077                                                                                              Private capital flows (% of GDP)
## 26078                                                                                               Remittances, inflows (% of GDP)
## 26079                                                                             Employment in agriculture (% of total employment)
## 26080                                                                                Employment in services (% of total employment)
## 26081                                                                          Employment to population ratio (% ages 15 and older)
## 26086                                                                                       Unemployment, total (% of labour force)
## 26087                                                                                            Unemployment, youth (% ages 15–24)
## 26088                                                                                 Vulnerable employment (% of total employment)
## 26091                                                                                                 Human Development Index (HDI)
## 26093                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 26094                                                                                              Population ages 15–64 (millions)
## 26095                                                                                       Population ages 65 and older (millions)
## 26096                                                                                             Population under age 5 (millions)
## 26098                                                                                                   Total population (millions)
## 26099                                                                                                          Urban population (%)
## 26100                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 26101                                                                                                               Education index
## 26102                                                                                           Expected years of schooling (years)
## 26103                                                                                   Expected years of schooling, female (years)
## 26104                                                                                     Expected years of schooling, male (years)
## 26111                                                                                               Mean years of schooling (years)
## 26112                                                                                       Mean years of schooling, female (years)
## 26113                                                                                         Mean years of schooling, male (years)
## 26115                                               Population with at least some secondary education, female (% ages 25 and older)
## 26116                                                 Population with at least some secondary education, male (% ages 25 and older)
## 26149                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 26151                                                                                Total unemployment rate (female to male ratio)
## 26155                                                                                Youth unemployment rate (female to male ratio)
## 26158                                                                                          HIV prevalence, adult (% ages 15-49)
## 26159                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 26160                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 26161                                                                                              Life expectancy at birth (years)
## 26162                                                                                      Life expectancy at birth, female (years)
## 26163                                                                                        Life expectancy at birth, male (years)
## 26164                                                                                                         Life expectancy index
## 26165                                                                               Mortality rate, female adult (per 1,000 people)
## 26166                                                                                Mortality rate, infant (per 1,000 live births)
## 26167                                                                                 Mortality rate, male adult (per 1,000 people)
## 26168                                                                            Mortality rate, under-five (per 1,000 live births)
## 26181                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 26182                                                                                                                  Income index
## 26213                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 26224                                                                                                Exports and imports (% of GDP)
## 26225                                                                             Foreign direct investment, net inflows (% of GDP)
## 26226                                                                       Net official development assistance received (% of GNI)
## 26227                                                                                              Private capital flows (% of GDP)
## 26228                                                                                               Remittances, inflows (% of GDP)
## 26230                                                                             Employment in agriculture (% of total employment)
## 26231                                                                                Employment in services (% of total employment)
## 26232                                                                          Employment to population ratio (% ages 15 and older)
## 26237                                                                                       Unemployment, total (% of labour force)
## 26238                                                                                            Unemployment, youth (% ages 15–24)
## 26239                                                                                 Vulnerable employment (% of total employment)
## 26241                                                                                                 Human Development Index (HDI)
## 26243                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 26244                                                                                              Population ages 15–64 (millions)
## 26245                                                                                       Population ages 65 and older (millions)
## 26246                                                                                             Population under age 5 (millions)
## 26248                                                                                                   Total population (millions)
## 26249                                                                                                          Urban population (%)
## 26250                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 26251                                                                                                               Education index
## 26252                                                                                           Expected years of schooling (years)
## 26261                                                                                               Mean years of schooling (years)
## 26262                                                                                       Mean years of schooling, female (years)
## 26263                                                                                         Mean years of schooling, male (years)
## 26265                                               Population with at least some secondary education, female (% ages 25 and older)
## 26266                                                 Population with at least some secondary education, male (% ages 25 and older)
## 26294                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 26296                                                                                Total unemployment rate (female to male ratio)
## 26300                                                                                Youth unemployment rate (female to male ratio)
## 26303                                                                                          HIV prevalence, adult (% ages 15-49)
## 26304                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 26305                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 26306                                                                                              Life expectancy at birth (years)
## 26307                                                                                      Life expectancy at birth, female (years)
## 26308                                                                                        Life expectancy at birth, male (years)
## 26309                                                                                                         Life expectancy index
## 26311                                                                               Mortality rate, female adult (per 1,000 people)
## 26312                                                                                Mortality rate, infant (per 1,000 live births)
## 26313                                                                                 Mortality rate, male adult (per 1,000 people)
## 26314                                                                            Mortality rate, under-five (per 1,000 live births)
## 26327                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 26328                                                                                                                  Income index
## 26357                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 26369                                                                                                Exports and imports (% of GDP)
## 26370                                                                             Foreign direct investment, net inflows (% of GDP)
## 26371                                                                       Net official development assistance received (% of GNI)
## 26372                                                                                              Private capital flows (% of GDP)
## 26373                                                                                               Remittances, inflows (% of GDP)
## 26374                                                                             Employment in agriculture (% of total employment)
## 26375                                                                                Employment in services (% of total employment)
## 26376                                                                          Employment to population ratio (% ages 15 and older)
## 26381                                                                                       Unemployment, total (% of labour force)
## 26382                                                                                            Unemployment, youth (% ages 15–24)
## 26383                                                                                 Vulnerable employment (% of total employment)
## 26387                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 26388                                                                                              Population ages 15–64 (millions)
## 26389                                                                                       Population ages 65 and older (millions)
## 26390                                                                                             Population under age 5 (millions)
## 26392                                                                                                   Total population (millions)
## 26393                                                                                                          Urban population (%)
## 26394                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 26396                                                                                           Expected years of schooling (years)
## 26397                                                                                   Expected years of schooling, female (years)
## 26398                                                                                     Expected years of schooling, male (years)
## 26428                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 26429                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 26430                                                                                              Life expectancy at birth (years)
## 26431                                                                                      Life expectancy at birth, female (years)
## 26432                                                                                        Life expectancy at birth, male (years)
## 26433                                                                                                         Life expectancy index
## 26434                                                                               Mortality rate, female adult (per 1,000 people)
## 26435                                                                                Mortality rate, infant (per 1,000 live births)
## 26436                                                                                 Mortality rate, male adult (per 1,000 people)
## 26437                                                                            Mortality rate, under-five (per 1,000 live births)
## 26449                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 26450                                                                                                                  Income index
## 26472                                                                                                Exports and imports (% of GDP)
## 26473                                                                             Foreign direct investment, net inflows (% of GDP)
## 26474                                                                       Net official development assistance received (% of GNI)
## 26475                                                                                              Private capital flows (% of GDP)
## 26476                                                                                               Remittances, inflows (% of GDP)
## 26478                                                                                                 Human Development Index (HDI)
## 26480                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 26481                                                                                              Population ages 15–64 (millions)
## 26482                                                                                       Population ages 65 and older (millions)
## 26483                                                                                             Population under age 5 (millions)
## 26485                                                                                                   Total population (millions)
## 26486                                                                                                          Urban population (%)
## 26487                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 26488                                                                                                               Education index
## 26489                                                                                           Expected years of schooling (years)
## 26498                                                                                               Mean years of schooling (years)
## 26499                                                                                       Mean years of schooling, female (years)
## 26500                                                                                         Mean years of schooling, male (years)
## 26502                                               Population with at least some secondary education, female (% ages 25 and older)
## 26503                                                 Population with at least some secondary education, male (% ages 25 and older)
## 26533                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 26535                                                                                Total unemployment rate (female to male ratio)
## 26540                                                                                Youth unemployment rate (female to male ratio)
## 26543                                                                                          HIV prevalence, adult (% ages 15-49)
## 26546                                                                                              Life expectancy at birth (years)
## 26547                                                                                      Life expectancy at birth, female (years)
## 26548                                                                                        Life expectancy at birth, male (years)
## 26549                                                                                                         Life expectancy index
## 26551                                                                               Mortality rate, female adult (per 1,000 people)
## 26552                                                                                Mortality rate, infant (per 1,000 live births)
## 26553                                                                                 Mortality rate, male adult (per 1,000 people)
## 26554                                                                            Mortality rate, under-five (per 1,000 live births)
## 26567                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 26568                                                                                                                  Income index
## 26599                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 26612                                                                                                Exports and imports (% of GDP)
## 26618                                                                             Employment in agriculture (% of total employment)
## 26619                                                                                Employment in services (% of total employment)
## 26620                                                                          Employment to population ratio (% ages 15 and older)
## 26625                                                                                       Unemployment, total (% of labour force)
## 26626                                                                                            Unemployment, youth (% ages 15–24)
## 26627                                                                                 Vulnerable employment (% of total employment)
## 26630                                                                                                 Human Development Index (HDI)
## 26632                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 26633                                                                                              Population ages 15–64 (millions)
## 26634                                                                                       Population ages 65 and older (millions)
## 26635                                                                                             Population under age 5 (millions)
## 26637                                                                                                   Total population (millions)
## 26638                                                                                                          Urban population (%)
## 26639                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 26640                                                                                                               Education index
## 26641                                                                                           Expected years of schooling (years)
## 26642                                                                                   Expected years of schooling, female (years)
## 26643                                                                                     Expected years of schooling, male (years)
## 26650                                                                                               Mean years of schooling (years)
## 26651                                                                                       Mean years of schooling, female (years)
## 26652                                                                                         Mean years of schooling, male (years)
## 26654                                               Population with at least some secondary education, female (% ages 25 and older)
## 26655                                                 Population with at least some secondary education, male (% ages 25 and older)
## 26683                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 26685                                                                                Total unemployment rate (female to male ratio)
## 26690                                                                                Youth unemployment rate (female to male ratio)
## 26693                                                                                          HIV prevalence, adult (% ages 15-49)
## 26694                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 26695                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 26696                                                                                              Life expectancy at birth (years)
## 26697                                                                                      Life expectancy at birth, female (years)
## 26698                                                                                        Life expectancy at birth, male (years)
## 26699                                                                                                         Life expectancy index
## 26701                                                                               Mortality rate, female adult (per 1,000 people)
## 26702                                                                                Mortality rate, infant (per 1,000 live births)
## 26703                                                                                 Mortality rate, male adult (per 1,000 people)
## 26704                                                                            Mortality rate, under-five (per 1,000 live births)
## 26717                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 26718                                                                                                                  Income index
## 26749                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 26761                                                                                                Exports and imports (% of GDP)
## 26762                                                                             Foreign direct investment, net inflows (% of GDP)
## 26763                                                                       Net official development assistance received (% of GNI)
## 26764                                                                                              Private capital flows (% of GDP)
## 26765                                                                                               Remittances, inflows (% of GDP)
## 26767                                                                             Employment in agriculture (% of total employment)
## 26768                                                                                Employment in services (% of total employment)
## 26769                                                                          Employment to population ratio (% ages 15 and older)
## 26774                                                                                       Unemployment, total (% of labour force)
## 26775                                                                                            Unemployment, youth (% ages 15–24)
## 26776                                                                                 Vulnerable employment (% of total employment)
## 26779                                                                                                 Human Development Index (HDI)
## 26781                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 26782                                                                                              Population ages 15–64 (millions)
## 26783                                                                                       Population ages 65 and older (millions)
## 26784                                                                                             Population under age 5 (millions)
## 26786                                                                                                   Total population (millions)
## 26787                                                                                                          Urban population (%)
## 26788                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 26789                                                                                                               Education index
## 26790                                                                                           Expected years of schooling (years)
## 26791                                                                                   Expected years of schooling, female (years)
## 26792                                                                                     Expected years of schooling, male (years)
## 26799                                                                                               Mean years of schooling (years)
## 26800                                                                                       Mean years of schooling, female (years)
## 26801                                                                                         Mean years of schooling, male (years)
## 26803                                               Population with at least some secondary education, female (% ages 25 and older)
## 26804                                                 Population with at least some secondary education, male (% ages 25 and older)
## 26834                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 26836                                                                                Total unemployment rate (female to male ratio)
## 26839                                                                                Youth unemployment rate (female to male ratio)
## 26842                                                                                          HIV prevalence, adult (% ages 15-49)
## 26843                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 26844                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 26845                                                                                              Life expectancy at birth (years)
## 26846                                                                                      Life expectancy at birth, female (years)
## 26847                                                                                        Life expectancy at birth, male (years)
## 26848                                                                                                         Life expectancy index
## 26849                                                                               Mortality rate, female adult (per 1,000 people)
## 26850                                                                                Mortality rate, infant (per 1,000 live births)
## 26851                                                                                 Mortality rate, male adult (per 1,000 people)
## 26852                                                                            Mortality rate, under-five (per 1,000 live births)
## 26865                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 26866                                                                                                                  Income index
## 26897                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 26911                                                                             Foreign direct investment, net inflows (% of GDP)
## 26912                                                                       Net official development assistance received (% of GNI)
## 26913                                                                                              Private capital flows (% of GDP)
## 26914                                                                                               Remittances, inflows (% of GDP)
## 26915                                                                             Employment in agriculture (% of total employment)
## 26916                                                                                Employment in services (% of total employment)
## 26917                                                                          Employment to population ratio (% ages 15 and older)
## 26922                                                                                       Unemployment, total (% of labour force)
## 26923                                                                                            Unemployment, youth (% ages 15–24)
## 26924                                                                                 Vulnerable employment (% of total employment)
## 26928                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 26929                                                                                              Population ages 15–64 (millions)
## 26930                                                                                       Population ages 65 and older (millions)
## 26931                                                                                             Population under age 5 (millions)
## 26933                                                                                                   Total population (millions)
## 26934                                                                                                          Urban population (%)
## 26935                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 26946                                                                                               Mean years of schooling (years)
## 26947                                                                                       Mean years of schooling, female (years)
## 26948                                                                                         Mean years of schooling, male (years)
## 26950                                               Population with at least some secondary education, female (% ages 25 and older)
## 26951                                                 Population with at least some secondary education, male (% ages 25 and older)
## 26979                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 26981                                                                                Total unemployment rate (female to male ratio)
## 26986                                                                                Youth unemployment rate (female to male ratio)
## 26989                                                                                          HIV prevalence, adult (% ages 15-49)
## 26992                                                                                              Life expectancy at birth (years)
## 26993                                                                                      Life expectancy at birth, female (years)
## 26994                                                                                        Life expectancy at birth, male (years)
## 26995                                                                                                         Life expectancy index
## 26997                                                                               Mortality rate, female adult (per 1,000 people)
## 26998                                                                                Mortality rate, infant (per 1,000 live births)
## 26999                                                                                 Mortality rate, male adult (per 1,000 people)
## 27000                                                                            Mortality rate, under-five (per 1,000 live births)
## 27013                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 27014                                                                                                                  Income index
## 27043                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 27055                                                                             Foreign direct investment, net inflows (% of GDP)
## 27060                                                                             Employment in agriculture (% of total employment)
## 27061                                                                                Employment in services (% of total employment)
## 27062                                                                          Employment to population ratio (% ages 15 and older)
## 27066                                                                                       Unemployment, total (% of labour force)
## 27067                                                                                            Unemployment, youth (% ages 15–24)
## 27068                                                                                 Vulnerable employment (% of total employment)
## 27073                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 27074                                                                                              Population ages 15–64 (millions)
## 27075                                                                                       Population ages 65 and older (millions)
## 27076                                                                                             Population under age 5 (millions)
## 27078                                                                                                   Total population (millions)
## 27079                                                                                                          Urban population (%)
## 27080                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 27082                                                                                           Expected years of schooling (years)
## 27083                                                                                   Expected years of schooling, female (years)
## 27084                                                                                     Expected years of schooling, male (years)
## 27121                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 27123                                                                                Total unemployment rate (female to male ratio)
## 27126                                                                                Youth unemployment rate (female to male ratio)
## 27129                                                                                          HIV prevalence, adult (% ages 15-49)
## 27130                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 27131                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 27132                                                                                              Life expectancy at birth (years)
## 27133                                                                                      Life expectancy at birth, female (years)
## 27134                                                                                        Life expectancy at birth, male (years)
## 27135                                                                                                         Life expectancy index
## 27137                                                                               Mortality rate, female adult (per 1,000 people)
## 27138                                                                                Mortality rate, infant (per 1,000 live births)
## 27139                                                                                 Mortality rate, male adult (per 1,000 people)
## 27140                                                                            Mortality rate, under-five (per 1,000 live births)
## 27153                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 27154                                                                                                                  Income index
## 27185                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 27198                                                                                                Exports and imports (% of GDP)
## 27199                                                                             Foreign direct investment, net inflows (% of GDP)
## 27200                                                                       Net official development assistance received (% of GNI)
## 27201                                                                                              Private capital flows (% of GDP)
## 27202                                                                                               Remittances, inflows (% of GDP)
## 27203                                                                             Employment in agriculture (% of total employment)
## 27204                                                                                Employment in services (% of total employment)
## 27205                                                                          Employment to population ratio (% ages 15 and older)
## 27210                                                                                       Unemployment, total (% of labour force)
## 27211                                                                                            Unemployment, youth (% ages 15–24)
## 27212                                                                                 Vulnerable employment (% of total employment)
## 27215                                                                                                 Human Development Index (HDI)
## 27217                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 27218                                                                                              Population ages 15–64 (millions)
## 27219                                                                                       Population ages 65 and older (millions)
## 27220                                                                                             Population under age 5 (millions)
## 27222                                                                                                   Total population (millions)
## 27223                                                                                                          Urban population (%)
## 27224                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 27225                                                                                                               Education index
## 27226                                                                                           Expected years of schooling (years)
## 27227                                                                                   Expected years of schooling, female (years)
## 27228                                                                                     Expected years of schooling, male (years)
## 27235                                                                                               Mean years of schooling (years)
## 27236                                                                                       Mean years of schooling, female (years)
## 27237                                                                                         Mean years of schooling, male (years)
## 27239                                               Population with at least some secondary education, female (% ages 25 and older)
## 27240                                                 Population with at least some secondary education, male (% ages 25 and older)
## 27267                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 27269                                                                                Total unemployment rate (female to male ratio)
## 27273                                                                                Youth unemployment rate (female to male ratio)
## 27276                                                                                          HIV prevalence, adult (% ages 15-49)
## 27277                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 27278                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 27279                                                                                              Life expectancy at birth (years)
## 27280                                                                                      Life expectancy at birth, female (years)
## 27281                                                                                        Life expectancy at birth, male (years)
## 27282                                                                                                         Life expectancy index
## 27284                                                                               Mortality rate, female adult (per 1,000 people)
## 27285                                                                                Mortality rate, infant (per 1,000 live births)
## 27286                                                                                 Mortality rate, male adult (per 1,000 people)
## 27287                                                                            Mortality rate, under-five (per 1,000 live births)
## 27300                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 27301                                                                                                                  Income index
## 27332                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 27344                                                                                                Exports and imports (% of GDP)
## 27345                                                                             Foreign direct investment, net inflows (% of GDP)
## 27346                                                                       Net official development assistance received (% of GNI)
## 27347                                                                                              Private capital flows (% of GDP)
## 27350                                                                             Employment in agriculture (% of total employment)
## 27351                                                                                Employment in services (% of total employment)
## 27352                                                                          Employment to population ratio (% ages 15 and older)
## 27357                                                                                       Unemployment, total (% of labour force)
## 27358                                                                                            Unemployment, youth (% ages 15–24)
## 27359                                                                                 Vulnerable employment (% of total employment)
## 27361                                                                                                 Human Development Index (HDI)
## 27363                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 27364                                                                                              Population ages 15–64 (millions)
## 27365                                                                                       Population ages 65 and older (millions)
## 27366                                                                                             Population under age 5 (millions)
## 27368                                                                                                   Total population (millions)
## 27369                                                                                                          Urban population (%)
## 27370                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 27371                                                                                                               Education index
## 27372                                                                                           Expected years of schooling (years)
## 27381                                                                                               Mean years of schooling (years)
## 27382                                                                                       Mean years of schooling, female (years)
## 27383                                                                                         Mean years of schooling, male (years)
## 27385                                               Population with at least some secondary education, female (% ages 25 and older)
## 27386                                                 Population with at least some secondary education, male (% ages 25 and older)
## 27416                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 27418                                                                                Total unemployment rate (female to male ratio)
## 27420                                                                                Youth unemployment rate (female to male ratio)
## 27423                                                                                          HIV prevalence, adult (% ages 15-49)
## 27424                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 27425                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 27426                                                                                              Life expectancy at birth (years)
## 27427                                                                                      Life expectancy at birth, female (years)
## 27428                                                                                        Life expectancy at birth, male (years)
## 27429                                                                                                         Life expectancy index
## 27431                                                                               Mortality rate, female adult (per 1,000 people)
## 27432                                                                                Mortality rate, infant (per 1,000 live births)
## 27433                                                                                 Mortality rate, male adult (per 1,000 people)
## 27434                                                                            Mortality rate, under-five (per 1,000 live births)
## 27446                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 27447                                                                                                                  Income index
## 27463                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 27475                                                                                                Exports and imports (% of GDP)
## 27476                                                                             Foreign direct investment, net inflows (% of GDP)
## 27477                                                                       Net official development assistance received (% of GNI)
## 27478                                                                                              Private capital flows (% of GDP)
## 27479                                                                                               Remittances, inflows (% of GDP)
## 27480                                                                             Employment in agriculture (% of total employment)
## 27481                                                                                Employment in services (% of total employment)
## 27482                                                                          Employment to population ratio (% ages 15 and older)
## 27487                                                                                       Unemployment, total (% of labour force)
## 27488                                                                                            Unemployment, youth (% ages 15–24)
## 27489                                                                                 Vulnerable employment (% of total employment)
## 27492                                                                                                 Human Development Index (HDI)
## 27494                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 27495                                                                                              Population ages 15–64 (millions)
## 27496                                                                                       Population ages 65 and older (millions)
## 27497                                                                                             Population under age 5 (millions)
## 27499                                                                                                   Total population (millions)
## 27500                                                                                                          Urban population (%)
## 27501                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 27502                                                                                                               Education index
## 27503                                                                                           Expected years of schooling (years)
## 27504                                                                                   Expected years of schooling, female (years)
## 27505                                                                                     Expected years of schooling, male (years)
## 27512                                                                                               Mean years of schooling (years)
## 27513                                                                                       Mean years of schooling, female (years)
## 27514                                                                                         Mean years of schooling, male (years)
## 27516                                               Population with at least some secondary education, female (% ages 25 and older)
## 27517                                                 Population with at least some secondary education, male (% ages 25 and older)
## 27545                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 27547                                                                                Total unemployment rate (female to male ratio)
## 27551                                                                                Youth unemployment rate (female to male ratio)
## 27554                                                                                          HIV prevalence, adult (% ages 15-49)
## 27555                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 27556                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 27557                                                                                              Life expectancy at birth (years)
## 27558                                                                                      Life expectancy at birth, female (years)
## 27559                                                                                        Life expectancy at birth, male (years)
## 27560                                                                                                         Life expectancy index
## 27562                                                                               Mortality rate, female adult (per 1,000 people)
## 27563                                                                                Mortality rate, infant (per 1,000 live births)
## 27564                                                                                 Mortality rate, male adult (per 1,000 people)
## 27565                                                                            Mortality rate, under-five (per 1,000 live births)
## 27578                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 27579                                                                                                                  Income index
## 27610                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 27623                                                                                                Exports and imports (% of GDP)
## 27624                                                                             Foreign direct investment, net inflows (% of GDP)
## 27625                                                                       Net official development assistance received (% of GNI)
## 27626                                                                                              Private capital flows (% of GDP)
## 27627                                                                                               Remittances, inflows (% of GDP)
## 27629                                                                             Employment in agriculture (% of total employment)
## 27630                                                                                Employment in services (% of total employment)
## 27631                                                                          Employment to population ratio (% ages 15 and older)
## 27636                                                                                       Unemployment, total (% of labour force)
## 27637                                                                                            Unemployment, youth (% ages 15–24)
## 27638                                                                                 Vulnerable employment (% of total employment)
## 27641                                                                                                 Human Development Index (HDI)
## 27643                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 27644                                                                                              Population ages 15–64 (millions)
## 27645                                                                                       Population ages 65 and older (millions)
## 27646                                                                                             Population under age 5 (millions)
## 27648                                                                                                   Total population (millions)
## 27649                                                                                                          Urban population (%)
## 27650                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 27651                                                                                                               Education index
## 27652                                                                                           Expected years of schooling (years)
## 27653                                                                                   Expected years of schooling, female (years)
## 27654                                                                                     Expected years of schooling, male (years)
## 27661                                                                                               Mean years of schooling (years)
## 27662                                                                                       Mean years of schooling, female (years)
## 27663                                                                                         Mean years of schooling, male (years)
## 27665                                               Population with at least some secondary education, female (% ages 25 and older)
## 27666                                                 Population with at least some secondary education, male (% ages 25 and older)
## 27696                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 27698                                                                                Total unemployment rate (female to male ratio)
## 27702                                                                                Youth unemployment rate (female to male ratio)
## 27704                                                                                          HIV prevalence, adult (% ages 15-49)
## 27705                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 27706                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 27707                                                                                              Life expectancy at birth (years)
## 27708                                                                                      Life expectancy at birth, female (years)
## 27709                                                                                        Life expectancy at birth, male (years)
## 27710                                                                                                         Life expectancy index
## 27711                                                                               Mortality rate, female adult (per 1,000 people)
## 27712                                                                                Mortality rate, infant (per 1,000 live births)
## 27713                                                                                 Mortality rate, male adult (per 1,000 people)
## 27714                                                                            Mortality rate, under-five (per 1,000 live births)
## 27725                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 27726                                                                                                                  Income index
## 27753                                                                                                Exports and imports (% of GDP)
## 27754                                                                             Foreign direct investment, net inflows (% of GDP)
## 27755                                                                       Net official development assistance received (% of GNI)
## 27756                                                                                              Private capital flows (% of GDP)
## 27757                                                                                               Remittances, inflows (% of GDP)
## 27758                                                                             Employment in agriculture (% of total employment)
## 27759                                                                                Employment in services (% of total employment)
## 27760                                                                          Employment to population ratio (% ages 15 and older)
## 27765                                                                                       Unemployment, total (% of labour force)
## 27766                                                                                            Unemployment, youth (% ages 15–24)
## 27767                                                                                 Vulnerable employment (% of total employment)
## 27770                                                                                                 Human Development Index (HDI)
## 27772                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 27773                                                                                              Population ages 15–64 (millions)
## 27774                                                                                       Population ages 65 and older (millions)
## 27775                                                                                             Population under age 5 (millions)
## 27777                                                                                                   Total population (millions)
## 27778                                                                                                          Urban population (%)
## 27779                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 27780                                                                                                               Education index
## 27781                                                                                           Expected years of schooling (years)
## 27782                                                                                   Expected years of schooling, female (years)
## 27783                                                                                     Expected years of schooling, male (years)
## 27790                                                                                               Mean years of schooling (years)
## 27791                                                                                       Mean years of schooling, female (years)
## 27792                                                                                         Mean years of schooling, male (years)
## 27794                                               Population with at least some secondary education, female (% ages 25 and older)
## 27795                                                 Population with at least some secondary education, male (% ages 25 and older)
## 27823                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 27825                                                                                Total unemployment rate (female to male ratio)
## 27828                                                                                Youth unemployment rate (female to male ratio)
## 27831                                                                                          HIV prevalence, adult (% ages 15-49)
## 27832                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 27833                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 27834                                                                                              Life expectancy at birth (years)
## 27835                                                                                      Life expectancy at birth, female (years)
## 27836                                                                                        Life expectancy at birth, male (years)
## 27837                                                                                                         Life expectancy index
## 27839                                                                               Mortality rate, female adult (per 1,000 people)
## 27840                                                                                Mortality rate, infant (per 1,000 live births)
## 27841                                                                                 Mortality rate, male adult (per 1,000 people)
## 27842                                                                            Mortality rate, under-five (per 1,000 live births)
## 27855                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 27856                                                                                                                  Income index
## 27887                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 27899                                                                                                Exports and imports (% of GDP)
## 27900                                                                             Foreign direct investment, net inflows (% of GDP)
## 27901                                                                       Net official development assistance received (% of GNI)
## 27902                                                                                              Private capital flows (% of GDP)
## 27903                                                                                               Remittances, inflows (% of GDP)
## 27905                                                                             Employment in agriculture (% of total employment)
## 27906                                                                                Employment in services (% of total employment)
## 27907                                                                          Employment to population ratio (% ages 15 and older)
## 27912                                                                                       Unemployment, total (% of labour force)
## 27913                                                                                            Unemployment, youth (% ages 15–24)
## 27914                                                                                 Vulnerable employment (% of total employment)
## 27917                                                                                                 Human Development Index (HDI)
## 27919                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 27920                                                                                              Population ages 15–64 (millions)
## 27921                                                                                       Population ages 65 and older (millions)
## 27922                                                                                             Population under age 5 (millions)
## 27924                                                                                                   Total population (millions)
## 27925                                                                                                          Urban population (%)
## 27926                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 27927                                                                                                               Education index
## 27928                                                                                           Expected years of schooling (years)
## 27929                                                                                   Expected years of schooling, female (years)
## 27930                                                                                     Expected years of schooling, male (years)
## 27937                                                                                               Mean years of schooling (years)
## 27938                                                                                       Mean years of schooling, female (years)
## 27939                                                                                         Mean years of schooling, male (years)
## 27941                                               Population with at least some secondary education, female (% ages 25 and older)
## 27942                                                 Population with at least some secondary education, male (% ages 25 and older)
## 27970                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 27972                                                                                Total unemployment rate (female to male ratio)
## 27975                                                                                Youth unemployment rate (female to male ratio)
## 27977                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 27978                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 27979                                                                                              Life expectancy at birth (years)
## 27980                                                                                      Life expectancy at birth, female (years)
## 27981                                                                                        Life expectancy at birth, male (years)
## 27982                                                                                                         Life expectancy index
## 27983                                                                               Mortality rate, female adult (per 1,000 people)
## 27984                                                                                Mortality rate, infant (per 1,000 live births)
## 27985                                                                                 Mortality rate, male adult (per 1,000 people)
## 27986                                                                            Mortality rate, under-five (per 1,000 live births)
## 27998                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 27999                                                                                                                  Income index
## 28018                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 28029                                                                                                Exports and imports (% of GDP)
## 28030                                                                             Foreign direct investment, net inflows (% of GDP)
## 28031                                                                       Net official development assistance received (% of GNI)
## 28032                                                                                              Private capital flows (% of GDP)
## 28034                                                                             Employment in agriculture (% of total employment)
## 28035                                                                                Employment in services (% of total employment)
## 28036                                                                          Employment to population ratio (% ages 15 and older)
## 28041                                                                                       Unemployment, total (% of labour force)
## 28042                                                                                            Unemployment, youth (% ages 15–24)
## 28043                                                                                 Vulnerable employment (% of total employment)
## 28045                                                                                                 Human Development Index (HDI)
## 28047                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 28048                                                                                              Population ages 15–64 (millions)
## 28049                                                                                       Population ages 65 and older (millions)
## 28050                                                                                             Population under age 5 (millions)
## 28052                                                                                                   Total population (millions)
## 28053                                                                                                          Urban population (%)
## 28054                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 28055                                                                                                               Education index
## 28056                                                                                           Expected years of schooling (years)
## 28057                                                                                   Expected years of schooling, female (years)
## 28058                                                                                     Expected years of schooling, male (years)
## 28065                                                                                               Mean years of schooling (years)
## 28066                                                                                       Mean years of schooling, female (years)
## 28067                                                                                         Mean years of schooling, male (years)
## 28069                                               Population with at least some secondary education, female (% ages 25 and older)
## 28070                                                 Population with at least some secondary education, male (% ages 25 and older)
## 28093                                                               Estimated gross national income per capita, female (2011 PPP $)
## 28094                                                                 Estimated gross national income per capita, male (2011 PPP $)
## 28097                                                                                                Gender Development Index (GDI)
## 28099                                                                                         Human Development Index (HDI), female
## 28100                                                                                           Human Development Index (HDI), male
## 28104                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 28106                                                                                Total unemployment rate (female to male ratio)
## 28110                                                                                Youth unemployment rate (female to male ratio)
## 28113                                                                                          HIV prevalence, adult (% ages 15-49)
## 28114                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 28115                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 28116                                                                                              Life expectancy at birth (years)
## 28117                                                                                      Life expectancy at birth, female (years)
## 28118                                                                                        Life expectancy at birth, male (years)
## 28119                                                                                                         Life expectancy index
## 28121                                                                               Mortality rate, female adult (per 1,000 people)
## 28122                                                                                Mortality rate, infant (per 1,000 live births)
## 28123                                                                                 Mortality rate, male adult (per 1,000 people)
## 28124                                                                            Mortality rate, under-five (per 1,000 live births)
## 28137                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 28138                                                                                                                  Income index
## 28170                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 28183                                                                                                Exports and imports (% of GDP)
## 28184                                                                             Foreign direct investment, net inflows (% of GDP)
## 28185                                                                       Net official development assistance received (% of GNI)
## 28186                                                                                              Private capital flows (% of GDP)
## 28187                                                                                               Remittances, inflows (% of GDP)
## 28189                                                                             Employment in agriculture (% of total employment)
## 28190                                                                                Employment in services (% of total employment)
## 28191                                                                          Employment to population ratio (% ages 15 and older)
## 28196                                                                                       Unemployment, total (% of labour force)
## 28197                                                                                            Unemployment, youth (% ages 15–24)
## 28198                                                                                 Vulnerable employment (% of total employment)
## 28201                                                                                                 Human Development Index (HDI)
## 28203                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 28204                                                                                              Population ages 15–64 (millions)
## 28205                                                                                       Population ages 65 and older (millions)
## 28206                                                                                             Population under age 5 (millions)
## 28208                                                                                                   Total population (millions)
## 28209                                                                                                          Urban population (%)
## 28210                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 28211                                                                                                               Education index
## 28212                                                                                           Expected years of schooling (years)
## 28221                                                                                               Mean years of schooling (years)
## 28222                                                                                       Mean years of schooling, female (years)
## 28223                                                                                         Mean years of schooling, male (years)
## 28225                                               Population with at least some secondary education, female (% ages 25 and older)
## 28226                                                 Population with at least some secondary education, male (% ages 25 and older)
## 28257                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 28259                                                                                Total unemployment rate (female to male ratio)
## 28262                                                                                Youth unemployment rate (female to male ratio)
## 28265                                                                                          HIV prevalence, adult (% ages 15-49)
## 28266                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 28267                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 28268                                                                                              Life expectancy at birth (years)
## 28269                                                                                      Life expectancy at birth, female (years)
## 28270                                                                                        Life expectancy at birth, male (years)
## 28271                                                                                                         Life expectancy index
## 28272                                                                               Mortality rate, female adult (per 1,000 people)
## 28273                                                                                Mortality rate, infant (per 1,000 live births)
## 28274                                                                                 Mortality rate, male adult (per 1,000 people)
## 28275                                                                            Mortality rate, under-five (per 1,000 live births)
## 28288                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 28289                                                                                                                  Income index
## 28320                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 28333                                                                                                Exports and imports (% of GDP)
## 28334                                                                             Foreign direct investment, net inflows (% of GDP)
## 28335                                                                       Net official development assistance received (% of GNI)
## 28339                                                                             Employment in agriculture (% of total employment)
## 28340                                                                                Employment in services (% of total employment)
## 28341                                                                          Employment to population ratio (% ages 15 and older)
## 28346                                                                                       Unemployment, total (% of labour force)
## 28347                                                                                            Unemployment, youth (% ages 15–24)
## 28348                                                                                 Vulnerable employment (% of total employment)
## 28351                                                                                                 Human Development Index (HDI)
## 28353                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 28354                                                                                              Population ages 15–64 (millions)
## 28355                                                                                       Population ages 65 and older (millions)
## 28356                                                                                             Population under age 5 (millions)
## 28358                                                                                                   Total population (millions)
## 28359                                                                                                          Urban population (%)
## 28360                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 28361                                                                                                               Education index
## 28362                                                                                           Expected years of schooling (years)
## 28363                                                                                   Expected years of schooling, female (years)
## 28364                                                                                     Expected years of schooling, male (years)
## 28371                                                                                               Mean years of schooling (years)
## 28372                                                                                       Mean years of schooling, female (years)
## 28373                                                                                         Mean years of schooling, male (years)
## 28375                                               Population with at least some secondary education, female (% ages 25 and older)
## 28376                                                 Population with at least some secondary education, male (% ages 25 and older)
## 28406                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 28408                                                                                Total unemployment rate (female to male ratio)
## 28411                                                                                Youth unemployment rate (female to male ratio)
## 28414                                                                                          HIV prevalence, adult (% ages 15-49)
## 28415                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 28416                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 28417                                                                                              Life expectancy at birth (years)
## 28418                                                                                      Life expectancy at birth, female (years)
## 28419                                                                                        Life expectancy at birth, male (years)
## 28420                                                                                                         Life expectancy index
## 28421                                                                               Mortality rate, female adult (per 1,000 people)
## 28422                                                                                Mortality rate, infant (per 1,000 live births)
## 28423                                                                                 Mortality rate, male adult (per 1,000 people)
## 28424                                                                            Mortality rate, under-five (per 1,000 live births)
## 28437                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 28438                                                                                                                  Income index
## 28470                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 28481                                                                                                Exports and imports (% of GDP)
## 28482                                                                             Foreign direct investment, net inflows (% of GDP)
## 28483                                                                       Net official development assistance received (% of GNI)
## 28484                                                                                              Private capital flows (% of GDP)
## 28485                                                                                               Remittances, inflows (% of GDP)
## 28486                                                                             Employment in agriculture (% of total employment)
## 28487                                                                                Employment in services (% of total employment)
## 28488                                                                          Employment to population ratio (% ages 15 and older)
## 28493                                                                                       Unemployment, total (% of labour force)
## 28494                                                                                            Unemployment, youth (% ages 15–24)
## 28495                                                                                 Vulnerable employment (% of total employment)
## 28497                                                                                                 Human Development Index (HDI)
## 28499                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 28500                                                                                              Population ages 15–64 (millions)
## 28501                                                                                       Population ages 65 and older (millions)
## 28502                                                                                             Population under age 5 (millions)
## 28504                                                                                                   Total population (millions)
## 28505                                                                                                          Urban population (%)
## 28506                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 28507                                                                                                               Education index
## 28508                                                                                           Expected years of schooling (years)
## 28509                                                                                   Expected years of schooling, female (years)
## 28510                                                                                     Expected years of schooling, male (years)
## 28517                                                                                               Mean years of schooling (years)
## 28518                                                                                       Mean years of schooling, female (years)
## 28519                                                                                         Mean years of schooling, male (years)
## 28552                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 28554                                                                                Total unemployment rate (female to male ratio)
## 28558                                                                                Youth unemployment rate (female to male ratio)
## 28561                                                                                          HIV prevalence, adult (% ages 15-49)
## 28562                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 28563                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 28564                                                                                              Life expectancy at birth (years)
## 28565                                                                                      Life expectancy at birth, female (years)
## 28566                                                                                        Life expectancy at birth, male (years)
## 28567                                                                                                         Life expectancy index
## 28569                                                                               Mortality rate, female adult (per 1,000 people)
## 28570                                                                                Mortality rate, infant (per 1,000 live births)
## 28571                                                                                 Mortality rate, male adult (per 1,000 people)
## 28572                                                                            Mortality rate, under-five (per 1,000 live births)
## 28585                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 28586                                                                                                                  Income index
## 28617                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 28630                                                                                                Exports and imports (% of GDP)
## 28631                                                                             Foreign direct investment, net inflows (% of GDP)
## 28632                                                                       Net official development assistance received (% of GNI)
## 28634                                                                                               Remittances, inflows (% of GDP)
## 28635                                                                             Employment in agriculture (% of total employment)
## 28636                                                                                Employment in services (% of total employment)
## 28637                                                                          Employment to population ratio (% ages 15 and older)
## 28642                                                                                       Unemployment, total (% of labour force)
## 28643                                                                                            Unemployment, youth (% ages 15–24)
## 28644                                                                                 Vulnerable employment (% of total employment)
## 28647                                                                                                 Human Development Index (HDI)
## 28649                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 28650                                                                                              Population ages 15–64 (millions)
## 28651                                                                                       Population ages 65 and older (millions)
## 28652                                                                                             Population under age 5 (millions)
## 28654                                                                                                   Total population (millions)
## 28655                                                                                                          Urban population (%)
## 28656                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 28657                                                                                                               Education index
## 28658                                                                                           Expected years of schooling (years)
## 28659                                                                                   Expected years of schooling, female (years)
## 28660                                                                                     Expected years of schooling, male (years)
## 28667                                                                                               Mean years of schooling (years)
## 28668                                                                                       Mean years of schooling, female (years)
## 28669                                                                                         Mean years of schooling, male (years)
## 28671                                               Population with at least some secondary education, female (% ages 25 and older)
## 28672                                                 Population with at least some secondary education, male (% ages 25 and older)
## 28700                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 28702                                                                                Total unemployment rate (female to male ratio)
## 28706                                                                                Youth unemployment rate (female to male ratio)
## 28709                                                                                          HIV prevalence, adult (% ages 15-49)
## 28710                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 28711                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 28712                                                                                              Life expectancy at birth (years)
## 28713                                                                                      Life expectancy at birth, female (years)
## 28714                                                                                        Life expectancy at birth, male (years)
## 28715                                                                                                         Life expectancy index
## 28717                                                                               Mortality rate, female adult (per 1,000 people)
## 28718                                                                                Mortality rate, infant (per 1,000 live births)
## 28719                                                                                 Mortality rate, male adult (per 1,000 people)
## 28720                                                                            Mortality rate, under-five (per 1,000 live births)
## 28733                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 28734                                                                                                                  Income index
## 28765                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 28777                                                                                                Exports and imports (% of GDP)
## 28778                                                                             Foreign direct investment, net inflows (% of GDP)
## 28779                                                                       Net official development assistance received (% of GNI)
## 28780                                                                                              Private capital flows (% of GDP)
## 28781                                                                                               Remittances, inflows (% of GDP)
## 28782                                                                             Employment in agriculture (% of total employment)
## 28783                                                                                Employment in services (% of total employment)
## 28784                                                                          Employment to population ratio (% ages 15 and older)
## 28789                                                                                       Unemployment, total (% of labour force)
## 28790                                                                                            Unemployment, youth (% ages 15–24)
## 28791                                                                                 Vulnerable employment (% of total employment)
## 28794                                                                                                 Human Development Index (HDI)
## 28796                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 28797                                                                                              Population ages 15–64 (millions)
## 28798                                                                                       Population ages 65 and older (millions)
## 28799                                                                                             Population under age 5 (millions)
## 28801                                                                                                   Total population (millions)
## 28802                                                                                                          Urban population (%)
## 28803                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 28804                                                                                                               Education index
## 28805                                                                                           Expected years of schooling (years)
## 28806                                                                                   Expected years of schooling, female (years)
## 28807                                                                                     Expected years of schooling, male (years)
## 28814                                                                                               Mean years of schooling (years)
## 28815                                                                                       Mean years of schooling, female (years)
## 28816                                                                                         Mean years of schooling, male (years)
## 28818                                               Population with at least some secondary education, female (% ages 25 and older)
## 28819                                                 Population with at least some secondary education, male (% ages 25 and older)
## 28848                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 28850                                                                                Total unemployment rate (female to male ratio)
## 28854                                                                                Youth unemployment rate (female to male ratio)
## 28857                                                                                          HIV prevalence, adult (% ages 15-49)
## 28858                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 28859                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 28860                                                                                              Life expectancy at birth (years)
## 28861                                                                                      Life expectancy at birth, female (years)
## 28862                                                                                        Life expectancy at birth, male (years)
## 28863                                                                                                         Life expectancy index
## 28865                                                                               Mortality rate, female adult (per 1,000 people)
## 28866                                                                                Mortality rate, infant (per 1,000 live births)
## 28867                                                                                 Mortality rate, male adult (per 1,000 people)
## 28868                                                                            Mortality rate, under-five (per 1,000 live births)
## 28881                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 28882                                                                                                                  Income index
## 28913                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 28926                                                                                                Exports and imports (% of GDP)
## 28927                                                                             Foreign direct investment, net inflows (% of GDP)
## 28928                                                                       Net official development assistance received (% of GNI)
## 28929                                                                                              Private capital flows (% of GDP)
## 28932                                                                             Employment in agriculture (% of total employment)
## 28933                                                                                Employment in services (% of total employment)
## 28934                                                                          Employment to population ratio (% ages 15 and older)
## 28939                                                                                       Unemployment, total (% of labour force)
## 28940                                                                                            Unemployment, youth (% ages 15–24)
## 28941                                                                                 Vulnerable employment (% of total employment)
## 28944                                                                                                 Human Development Index (HDI)
## 28946                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 28947                                                                                              Population ages 15–64 (millions)
## 28948                                                                                       Population ages 65 and older (millions)
## 28949                                                                                             Population under age 5 (millions)
## 28951                                                                                                   Total population (millions)
## 28952                                                                                                          Urban population (%)
## 28953                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 28954                                                                                                               Education index
## 28955                                                                                           Expected years of schooling (years)
## 28956                                                                                   Expected years of schooling, female (years)
## 28957                                                                                     Expected years of schooling, male (years)
## 28963                                                                                               Mean years of schooling (years)
## 28964                                                                                       Mean years of schooling, female (years)
## 28965                                                                                         Mean years of schooling, male (years)
## 28967                                               Population with at least some secondary education, female (% ages 25 and older)
## 28968                                                 Population with at least some secondary education, male (% ages 25 and older)
## 28997                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 28999                                                                                Total unemployment rate (female to male ratio)
## 29003                                                                                Youth unemployment rate (female to male ratio)
## 29005                                                                                          HIV prevalence, adult (% ages 15-49)
## 29006                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 29007                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 29008                                                                                              Life expectancy at birth (years)
## 29009                                                                                      Life expectancy at birth, female (years)
## 29010                                                                                        Life expectancy at birth, male (years)
## 29011                                                                                                         Life expectancy index
## 29012                                                                               Mortality rate, female adult (per 1,000 people)
## 29013                                                                                Mortality rate, infant (per 1,000 live births)
## 29014                                                                                 Mortality rate, male adult (per 1,000 people)
## 29015                                                                            Mortality rate, under-five (per 1,000 live births)
## 29028                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 29029                                                                                                                  Income index
## 29059                                                                                                Exports and imports (% of GDP)
## 29060                                                                             Foreign direct investment, net inflows (% of GDP)
## 29061                                                                                              Private capital flows (% of GDP)
## 29062                                                                                               Remittances, inflows (% of GDP)
## 29063                                                                             Employment in agriculture (% of total employment)
## 29064                                                                                Employment in services (% of total employment)
## 29065                                                                          Employment to population ratio (% ages 15 and older)
## 29070                                                                                       Unemployment, total (% of labour force)
## 29071                                                                                            Unemployment, youth (% ages 15–24)
## 29072                                                                                 Vulnerable employment (% of total employment)
## 29075                                                                                                 Human Development Index (HDI)
## 29077                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 29078                                                                                              Population ages 15–64 (millions)
## 29079                                                                                       Population ages 65 and older (millions)
## 29080                                                                                             Population under age 5 (millions)
## 29082                                                                                                   Total population (millions)
## 29083                                                                                                          Urban population (%)
## 29084                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 29085                                                                                                               Education index
## 29086                                                                                           Expected years of schooling (years)
## 29087                                                                                   Expected years of schooling, female (years)
## 29088                                                                                     Expected years of schooling, male (years)
## 29094                                                                                               Mean years of schooling (years)
## 29095                                                                                       Mean years of schooling, female (years)
## 29096                                                                                         Mean years of schooling, male (years)
## 29098                                               Population with at least some secondary education, female (% ages 25 and older)
## 29099                                                 Population with at least some secondary education, male (% ages 25 and older)
## 29126                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 29128                                                                                Total unemployment rate (female to male ratio)
## 29130                                                                                Youth unemployment rate (female to male ratio)
## 29132                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 29133                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 29134                                                                                              Life expectancy at birth (years)
## 29135                                                                                      Life expectancy at birth, female (years)
## 29136                                                                                        Life expectancy at birth, male (years)
## 29137                                                                                                         Life expectancy index
## 29138                                                                               Mortality rate, female adult (per 1,000 people)
## 29139                                                                                Mortality rate, infant (per 1,000 live births)
## 29140                                                                                 Mortality rate, male adult (per 1,000 people)
## 29141                                                                            Mortality rate, under-five (per 1,000 live births)
## 29154                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 29155                                                                                                                  Income index
## 29179                                                                                                Exports and imports (% of GDP)
## 29180                                                                             Foreign direct investment, net inflows (% of GDP)
## 29182                                                                                               Remittances, inflows (% of GDP)
## 29183                                                                             Employment in agriculture (% of total employment)
## 29184                                                                                Employment in services (% of total employment)
## 29185                                                                          Employment to population ratio (% ages 15 and older)
## 29190                                                                                       Unemployment, total (% of labour force)
## 29191                                                                                            Unemployment, youth (% ages 15–24)
## 29192                                                                                 Vulnerable employment (% of total employment)
## 29197                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 29198                                                                                              Population ages 15–64 (millions)
## 29199                                                                                       Population ages 65 and older (millions)
## 29200                                                                                             Population under age 5 (millions)
## 29202                                                                                                   Total population (millions)
## 29203                                                                                                          Urban population (%)
## 29204                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 29206                                                                                           Expected years of schooling (years)
## 29242                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 29244                                                                                Total unemployment rate (female to male ratio)
## 29249                                                                                Youth unemployment rate (female to male ratio)
## 29252                                                                                          HIV prevalence, adult (% ages 15-49)
## 29253                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 29254                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 29255                                                                                              Life expectancy at birth (years)
## 29256                                                                                      Life expectancy at birth, female (years)
## 29257                                                                                        Life expectancy at birth, male (years)
## 29258                                                                                                         Life expectancy index
## 29260                                                                               Mortality rate, female adult (per 1,000 people)
## 29261                                                                                Mortality rate, infant (per 1,000 live births)
## 29262                                                                                 Mortality rate, male adult (per 1,000 people)
## 29263                                                                            Mortality rate, under-five (per 1,000 live births)
## 29276                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 29277                                                                                                                  Income index
## 29307                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 29318                                                                                                Exports and imports (% of GDP)
## 29319                                                                             Foreign direct investment, net inflows (% of GDP)
## 29320                                                                       Net official development assistance received (% of GNI)
## 29321                                                                                              Private capital flows (% of GDP)
## 29322                                                                                               Remittances, inflows (% of GDP)
## 29324                                                                             Employment in agriculture (% of total employment)
## 29325                                                                                Employment in services (% of total employment)
## 29326                                                                          Employment to population ratio (% ages 15 and older)
## 29331                                                                                       Unemployment, total (% of labour force)
## 29332                                                                                            Unemployment, youth (% ages 15–24)
## 29333                                                                                 Vulnerable employment (% of total employment)
## 29336                                                                                                 Human Development Index (HDI)
## 29338                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 29339                                                                                              Population ages 15–64 (millions)
## 29340                                                                                       Population ages 65 and older (millions)
## 29341                                                                                             Population under age 5 (millions)
## 29343                                                                                                   Total population (millions)
## 29344                                                                                                          Urban population (%)
## 29345                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 29346                                                                                                               Education index
## 29347                                                                                           Expected years of schooling (years)
## 29348                                                                                   Expected years of schooling, female (years)
## 29349                                                                                     Expected years of schooling, male (years)
## 29355                                                                                               Mean years of schooling (years)
## 29356                                                                                       Mean years of schooling, female (years)
## 29357                                                                                         Mean years of schooling, male (years)
## 29359                                               Population with at least some secondary education, female (% ages 25 and older)
## 29360                                                 Population with at least some secondary education, male (% ages 25 and older)
## 29390                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 29392                                                                                Total unemployment rate (female to male ratio)
## 29395                                                                                Youth unemployment rate (female to male ratio)
## 29397                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 29398                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 29399                                                                                              Life expectancy at birth (years)
## 29400                                                                                      Life expectancy at birth, female (years)
## 29401                                                                                        Life expectancy at birth, male (years)
## 29402                                                                                                         Life expectancy index
## 29403                                                                               Mortality rate, female adult (per 1,000 people)
## 29404                                                                                Mortality rate, infant (per 1,000 live births)
## 29405                                                                                 Mortality rate, male adult (per 1,000 people)
## 29406                                                                            Mortality rate, under-five (per 1,000 live births)
## 29419                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 29420                                                                                                                  Income index
## 29450                                                                                                Exports and imports (% of GDP)
## 29451                                                                             Foreign direct investment, net inflows (% of GDP)
## 29452                                                                                              Private capital flows (% of GDP)
## 29453                                                                                               Remittances, inflows (% of GDP)
## 29454                                                                             Employment in agriculture (% of total employment)
## 29455                                                                                Employment in services (% of total employment)
## 29456                                                                          Employment to population ratio (% ages 15 and older)
## 29461                                                                                       Unemployment, total (% of labour force)
## 29462                                                                                            Unemployment, youth (% ages 15–24)
## 29463                                                                                 Vulnerable employment (% of total employment)
## 29466                                                                                                 Human Development Index (HDI)
## 29468                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 29469                                                                                              Population ages 15–64 (millions)
## 29470                                                                                       Population ages 65 and older (millions)
## 29471                                                                                             Population under age 5 (millions)
## 29473                                                                                                   Total population (millions)
## 29474                                                                                                          Urban population (%)
## 29475                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 29476                                                                                                               Education index
## 29477                                                                                           Expected years of schooling (years)
## 29478                                                                                   Expected years of schooling, female (years)
## 29479                                                                                     Expected years of schooling, male (years)
## 29486                                                                                               Mean years of schooling (years)
## 29487                                                                                       Mean years of schooling, female (years)
## 29488                                                                                         Mean years of schooling, male (years)
## 29490                                               Population with at least some secondary education, female (% ages 25 and older)
## 29491                                                 Population with at least some secondary education, male (% ages 25 and older)
## 29520                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 29522                                                                                Total unemployment rate (female to male ratio)
## 29525                                                                                Youth unemployment rate (female to male ratio)
## 29528                                                                                          HIV prevalence, adult (% ages 15-49)
## 29529                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 29530                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 29531                                                                                              Life expectancy at birth (years)
## 29532                                                                                      Life expectancy at birth, female (years)
## 29533                                                                                        Life expectancy at birth, male (years)
## 29534                                                                                                         Life expectancy index
## 29536                                                                               Mortality rate, female adult (per 1,000 people)
## 29537                                                                                Mortality rate, infant (per 1,000 live births)
## 29538                                                                                 Mortality rate, male adult (per 1,000 people)
## 29539                                                                            Mortality rate, under-five (per 1,000 live births)
## 29552                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 29553                                                                                                                  Income index
## 29585                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 29598                                                                                                Exports and imports (% of GDP)
## 29599                                                                             Foreign direct investment, net inflows (% of GDP)
## 29600                                                                       Net official development assistance received (% of GNI)
## 29601                                                                                              Private capital flows (% of GDP)
## 29602                                                                                               Remittances, inflows (% of GDP)
## 29603                                                                             Employment in agriculture (% of total employment)
## 29604                                                                                Employment in services (% of total employment)
## 29605                                                                          Employment to population ratio (% ages 15 and older)
## 29610                                                                                       Unemployment, total (% of labour force)
## 29611                                                                                            Unemployment, youth (% ages 15–24)
## 29612                                                                                 Vulnerable employment (% of total employment)
## 29615                                                                                                 Human Development Index (HDI)
## 29617                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 29618                                                                                              Population ages 15–64 (millions)
## 29619                                                                                       Population ages 65 and older (millions)
## 29620                                                                                             Population under age 5 (millions)
## 29622                                                                                                   Total population (millions)
## 29623                                                                                                          Urban population (%)
## 29624                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 29625                                                                                                               Education index
## 29626                                                                                           Expected years of schooling (years)
## 29635                                                                                               Mean years of schooling (years)
## 29636                                                                                       Mean years of schooling, female (years)
## 29639                                               Population with at least some secondary education, female (% ages 25 and older)
## 29640                                                 Population with at least some secondary education, male (% ages 25 and older)
## 29671                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 29673                                                                                Total unemployment rate (female to male ratio)
## 29676                                                                                Youth unemployment rate (female to male ratio)
## 29679                                                                                          HIV prevalence, adult (% ages 15-49)
## 29680                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 29681                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 29682                                                                                              Life expectancy at birth (years)
## 29683                                                                                      Life expectancy at birth, female (years)
## 29684                                                                                        Life expectancy at birth, male (years)
## 29685                                                                                                         Life expectancy index
## 29687                                                                               Mortality rate, female adult (per 1,000 people)
## 29688                                                                                Mortality rate, infant (per 1,000 live births)
## 29689                                                                                 Mortality rate, male adult (per 1,000 people)
## 29690                                                                            Mortality rate, under-five (per 1,000 live births)
## 29703                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 29704                                                                                                                  Income index
## 29722                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 29734                                                                                                Exports and imports (% of GDP)
## 29735                                                                             Foreign direct investment, net inflows (% of GDP)
## 29736                                                                       Net official development assistance received (% of GNI)
## 29737                                                                                              Private capital flows (% of GDP)
## 29738                                                                                               Remittances, inflows (% of GDP)
## 29740                                                                             Employment in agriculture (% of total employment)
## 29741                                                                                Employment in services (% of total employment)
## 29742                                                                          Employment to population ratio (% ages 15 and older)
## 29747                                                                                       Unemployment, total (% of labour force)
## 29748                                                                                            Unemployment, youth (% ages 15–24)
## 29749                                                                                 Vulnerable employment (% of total employment)
## 29752                                                                                                 Human Development Index (HDI)
## 29754                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 29755                                                                                              Population ages 15–64 (millions)
## 29756                                                                                       Population ages 65 and older (millions)
## 29757                                                                                             Population under age 5 (millions)
## 29759                                                                                                   Total population (millions)
## 29760                                                                                                          Urban population (%)
## 29761                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 29762                                                                                                               Education index
## 29763                                                                                           Expected years of schooling (years)
## 29764                                                                                   Expected years of schooling, female (years)
## 29765                                                                                     Expected years of schooling, male (years)
## 29771                                                                                               Mean years of schooling (years)
## 29772                                                                                       Mean years of schooling, female (years)
## 29773                                                                                         Mean years of schooling, male (years)
## 29775                                               Population with at least some secondary education, female (% ages 25 and older)
## 29776                                                 Population with at least some secondary education, male (% ages 25 and older)
## 29802                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 29804                                                                                Total unemployment rate (female to male ratio)
## 29806                                                                                Youth unemployment rate (female to male ratio)
## 29809                                                                                          HIV prevalence, adult (% ages 15-49)
## 29810                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 29811                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 29812                                                                                              Life expectancy at birth (years)
## 29813                                                                                      Life expectancy at birth, female (years)
## 29814                                                                                        Life expectancy at birth, male (years)
## 29815                                                                                                         Life expectancy index
## 29817                                                                               Mortality rate, female adult (per 1,000 people)
## 29818                                                                                Mortality rate, infant (per 1,000 live births)
## 29819                                                                                 Mortality rate, male adult (per 1,000 people)
## 29820                                                                            Mortality rate, under-five (per 1,000 live births)
## 29832                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 29833                                                                                                                  Income index
## 29846                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 29855                                                                                                Exports and imports (% of GDP)
## 29856                                                                             Foreign direct investment, net inflows (% of GDP)
## 29857                                                                       Net official development assistance received (% of GNI)
## 29858                                                                                              Private capital flows (% of GDP)
## 29859                                                                                               Remittances, inflows (% of GDP)
## 29860                                                                             Employment in agriculture (% of total employment)
## 29861                                                                                Employment in services (% of total employment)
## 29862                                                                          Employment to population ratio (% ages 15 and older)
## 29867                                                                                       Unemployment, total (% of labour force)
## 29868                                                                                            Unemployment, youth (% ages 15–24)
## 29869                                                                                 Vulnerable employment (% of total employment)
## 29872                                                                                                 Human Development Index (HDI)
## 29874                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 29875                                                                                              Population ages 15–64 (millions)
## 29876                                                                                       Population ages 65 and older (millions)
## 29877                                                                                             Population under age 5 (millions)
## 29879                                                                                                   Total population (millions)
## 29880                                                                                                          Urban population (%)
## 29881                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 29882                                                                                                               Education index
## 29883                                                                                           Expected years of schooling (years)
## 29884                                                                                   Expected years of schooling, female (years)
## 29885                                                                                     Expected years of schooling, male (years)
## 29892                                                                                               Mean years of schooling (years)
## 29893                                                                                       Mean years of schooling, female (years)
## 29894                                                                                         Mean years of schooling, male (years)
## 29896                                               Population with at least some secondary education, female (% ages 25 and older)
## 29897                                                 Population with at least some secondary education, male (% ages 25 and older)
## 29926                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 29928                                                                                Total unemployment rate (female to male ratio)
## 29931                                                                                Youth unemployment rate (female to male ratio)
## 29934                                                                                          HIV prevalence, adult (% ages 15-49)
## 29935                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 29936                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 29937                                                                                              Life expectancy at birth (years)
## 29938                                                                                      Life expectancy at birth, female (years)
## 29939                                                                                        Life expectancy at birth, male (years)
## 29940                                                                                                         Life expectancy index
## 29942                                                                               Mortality rate, female adult (per 1,000 people)
## 29943                                                                                Mortality rate, infant (per 1,000 live births)
## 29944                                                                                 Mortality rate, male adult (per 1,000 people)
## 29945                                                                            Mortality rate, under-five (per 1,000 live births)
## 29958                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 29959                                                                                                                  Income index
## 29990                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 30003                                                                                                Exports and imports (% of GDP)
## 30004                                                                             Foreign direct investment, net inflows (% of GDP)
## 30006                                                                                              Private capital flows (% of GDP)
## 30007                                                                                               Remittances, inflows (% of GDP)
## 30009                                                                             Employment in agriculture (% of total employment)
## 30010                                                                                Employment in services (% of total employment)
## 30011                                                                          Employment to population ratio (% ages 15 and older)
## 30016                                                                                       Unemployment, total (% of labour force)
## 30017                                                                                            Unemployment, youth (% ages 15–24)
## 30018                                                                                 Vulnerable employment (% of total employment)
## 30021                                                                                                 Human Development Index (HDI)
## 30023                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 30024                                                                                              Population ages 15–64 (millions)
## 30025                                                                                       Population ages 65 and older (millions)
## 30026                                                                                             Population under age 5 (millions)
## 30028                                                                                                   Total population (millions)
## 30029                                                                                                          Urban population (%)
## 30030                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 30031                                                                                                               Education index
## 30032                                                                                           Expected years of schooling (years)
## 30041                                                                                               Mean years of schooling (years)
## 30042                                                                                       Mean years of schooling, female (years)
## 30043                                                                                         Mean years of schooling, male (years)
## 30045                                               Population with at least some secondary education, female (% ages 25 and older)
## 30046                                                 Population with at least some secondary education, male (% ages 25 and older)
## 30076                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 30078                                                                                Total unemployment rate (female to male ratio)
## 30082                                                                                Youth unemployment rate (female to male ratio)
## 30085                                                                                          HIV prevalence, adult (% ages 15-49)
## 30086                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 30087                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 30088                                                                                              Life expectancy at birth (years)
## 30089                                                                                      Life expectancy at birth, female (years)
## 30090                                                                                        Life expectancy at birth, male (years)
## 30091                                                                                                         Life expectancy index
## 30093                                                                               Mortality rate, female adult (per 1,000 people)
## 30094                                                                                Mortality rate, infant (per 1,000 live births)
## 30095                                                                                 Mortality rate, male adult (per 1,000 people)
## 30096                                                                            Mortality rate, under-five (per 1,000 live births)
## 30109                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 30110                                                                                                                  Income index
## 30141                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 30154                                                                                                Exports and imports (% of GDP)
## 30155                                                                             Foreign direct investment, net inflows (% of GDP)
## 30156                                                                       Net official development assistance received (% of GNI)
## 30157                                                                                              Private capital flows (% of GDP)
## 30158                                                                                               Remittances, inflows (% of GDP)
## 30160                                                                             Employment in agriculture (% of total employment)
## 30161                                                                                Employment in services (% of total employment)
## 30162                                                                          Employment to population ratio (% ages 15 and older)
## 30167                                                                                       Unemployment, total (% of labour force)
## 30168                                                                                            Unemployment, youth (% ages 15–24)
## 30169                                                                                 Vulnerable employment (% of total employment)
## 30172                                                                                                 Human Development Index (HDI)
## 30174                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 30175                                                                                              Population ages 15–64 (millions)
## 30176                                                                                       Population ages 65 and older (millions)
## 30177                                                                                             Population under age 5 (millions)
## 30179                                                                                                   Total population (millions)
## 30180                                                                                                          Urban population (%)
## 30181                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 30182                                                                                                               Education index
## 30183                                                                                           Expected years of schooling (years)
## 30192                                                                                               Mean years of schooling (years)
## 30193                                                                                       Mean years of schooling, female (years)
## 30194                                                                                         Mean years of schooling, male (years)
## 30196                                               Population with at least some secondary education, female (% ages 25 and older)
## 30197                                                 Population with at least some secondary education, male (% ages 25 and older)
## 30228                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 30230                                                                                Total unemployment rate (female to male ratio)
## 30234                                                                                Youth unemployment rate (female to male ratio)
## 30237                                                                                          HIV prevalence, adult (% ages 15-49)
## 30238                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 30239                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 30240                                                                                              Life expectancy at birth (years)
## 30241                                                                                      Life expectancy at birth, female (years)
## 30242                                                                                        Life expectancy at birth, male (years)
## 30243                                                                                                         Life expectancy index
## 30245                                                                               Mortality rate, female adult (per 1,000 people)
## 30246                                                                                Mortality rate, infant (per 1,000 live births)
## 30247                                                                                 Mortality rate, male adult (per 1,000 people)
## 30248                                                                            Mortality rate, under-five (per 1,000 live births)
## 30261                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 30262                                                                                                                  Income index
## 30293                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 30306                                                                                                Exports and imports (% of GDP)
## 30307                                                                             Foreign direct investment, net inflows (% of GDP)
## 30308                                                                       Net official development assistance received (% of GNI)
## 30309                                                                                              Private capital flows (% of GDP)
## 30310                                                                                               Remittances, inflows (% of GDP)
## 30311                                                                             Employment in agriculture (% of total employment)
## 30312                                                                                Employment in services (% of total employment)
## 30313                                                                          Employment to population ratio (% ages 15 and older)
## 30318                                                                                       Unemployment, total (% of labour force)
## 30319                                                                                            Unemployment, youth (% ages 15–24)
## 30320                                                                                 Vulnerable employment (% of total employment)
## 30324                                                                                                 Human Development Index (HDI)
## 30326                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 30327                                                                                              Population ages 15–64 (millions)
## 30328                                                                                       Population ages 65 and older (millions)
## 30329                                                                                             Population under age 5 (millions)
## 30331                                                                                                   Total population (millions)
## 30332                                                                                                          Urban population (%)
## 30333                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 30334                                                                                                               Education index
## 30335                                                                                           Expected years of schooling (years)
## 30336                                                                                   Expected years of schooling, female (years)
## 30337                                                                                     Expected years of schooling, male (years)
## 30344                                                                                               Mean years of schooling (years)
## 30345                                                                                       Mean years of schooling, female (years)
## 30346                                                                                         Mean years of schooling, male (years)
## 30348                                               Population with at least some secondary education, female (% ages 25 and older)
## 30349                                                 Population with at least some secondary education, male (% ages 25 and older)
## 30380                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 30382                                                                                Total unemployment rate (female to male ratio)
## 30386                                                                                Youth unemployment rate (female to male ratio)
## 30388                                                                                          HIV prevalence, adult (% ages 15-49)
## 30389                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 30390                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 30391                                                                                              Life expectancy at birth (years)
## 30392                                                                                      Life expectancy at birth, female (years)
## 30393                                                                                        Life expectancy at birth, male (years)
## 30394                                                                                                         Life expectancy index
## 30395                                                                               Mortality rate, female adult (per 1,000 people)
## 30396                                                                                Mortality rate, infant (per 1,000 live births)
## 30397                                                                                 Mortality rate, male adult (per 1,000 people)
## 30398                                                                            Mortality rate, under-five (per 1,000 live births)
## 30410                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 30411                                                                                                                  Income index
## 30442                                                                                                Exports and imports (% of GDP)
## 30443                                                                             Foreign direct investment, net inflows (% of GDP)
## 30444                                                                                              Private capital flows (% of GDP)
## 30446                                                                             Employment in agriculture (% of total employment)
## 30447                                                                                Employment in services (% of total employment)
## 30448                                                                          Employment to population ratio (% ages 15 and older)
## 30453                                                                                       Unemployment, total (% of labour force)
## 30454                                                                                            Unemployment, youth (% ages 15–24)
## 30455                                                                                 Vulnerable employment (% of total employment)
## 30458                                                                                                 Human Development Index (HDI)
## 30460                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 30461                                                                                              Population ages 15–64 (millions)
## 30462                                                                                       Population ages 65 and older (millions)
## 30463                                                                                             Population under age 5 (millions)
## 30465                                                                                                   Total population (millions)
## 30466                                                                                                          Urban population (%)
## 30467                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 30468                                                                                                               Education index
## 30469                                                                                           Expected years of schooling (years)
## 30478                                                                                               Mean years of schooling (years)
## 30479                                                                                       Mean years of schooling, female (years)
## 30480                                                                                         Mean years of schooling, male (years)
## 30482                                               Population with at least some secondary education, female (% ages 25 and older)
## 30483                                                 Population with at least some secondary education, male (% ages 25 and older)
## 30513                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 30515                                                                                Total unemployment rate (female to male ratio)
## 30518                                                                                Youth unemployment rate (female to male ratio)
## 30522                                                                                              Life expectancy at birth (years)
## 30523                                                                                      Life expectancy at birth, female (years)
## 30524                                                                                        Life expectancy at birth, male (years)
## 30525                                                                                                         Life expectancy index
## 30526                                                                               Mortality rate, female adult (per 1,000 people)
## 30527                                                                                Mortality rate, infant (per 1,000 live births)
## 30528                                                                                 Mortality rate, male adult (per 1,000 people)
## 30529                                                                            Mortality rate, under-five (per 1,000 live births)
## 30542                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 30543                                                                                                                  Income index
## 30562                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 30575                                                                                                Exports and imports (% of GDP)
## 30579                                                                             Employment in agriculture (% of total employment)
## 30580                                                                                Employment in services (% of total employment)
## 30581                                                                          Employment to population ratio (% ages 15 and older)
## 30586                                                                                       Unemployment, total (% of labour force)
## 30587                                                                                            Unemployment, youth (% ages 15–24)
## 30588                                                                                 Vulnerable employment (% of total employment)
## 30592                                                                                                   Total population (millions)
## 30593                                                                                                          Urban population (%)
## 30595                                                                                           Expected years of schooling (years)
## 30596                                                                                   Expected years of schooling, female (years)
## 30597                                                                                     Expected years of schooling, male (years)
## 30618                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 30619                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 30620                                                                                              Life expectancy at birth (years)
## 30621                                                                                                         Life expectancy index
## 30623                                                                                Mortality rate, infant (per 1,000 live births)
## 30625                                                                            Mortality rate, under-five (per 1,000 live births)
## 30634                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 30635                                                                                                                  Income index
## 30644                                                                                                Exports and imports (% of GDP)
## 30645                                                                             Foreign direct investment, net inflows (% of GDP)
## 30646                                                                       Net official development assistance received (% of GNI)
## 30647                                                                                              Private capital flows (% of GDP)
## 30648                                                                                               Remittances, inflows (% of GDP)
## 30653                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 30654                                                                                              Population ages 15–64 (millions)
## 30655                                                                                       Population ages 65 and older (millions)
## 30656                                                                                             Population under age 5 (millions)
## 30658                                                                                                   Total population (millions)
## 30659                                                                                                          Urban population (%)
## 30660                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 30662                                                                                           Expected years of schooling (years)
## 30663                                                                                   Expected years of schooling, female (years)
## 30664                                                                                     Expected years of schooling, male (years)
## 30704                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 30706                                                                                Total unemployment rate (female to male ratio)
## 30708                                                                                Youth unemployment rate (female to male ratio)
## 30711                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 30712                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 30713                                                                                              Life expectancy at birth (years)
## 30714                                                                                      Life expectancy at birth, female (years)
## 30715                                                                                        Life expectancy at birth, male (years)
## 30716                                                                                                         Life expectancy index
## 30717                                                                               Mortality rate, female adult (per 1,000 people)
## 30718                                                                                Mortality rate, infant (per 1,000 live births)
## 30719                                                                                 Mortality rate, male adult (per 1,000 people)
## 30720                                                                            Mortality rate, under-five (per 1,000 live births)
## 30732                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 30733                                                                                                                  Income index
## 30765                                                                             Foreign direct investment, net inflows (% of GDP)
## 30766                                                                       Net official development assistance received (% of GNI)
## 30767                                                                                              Private capital flows (% of GDP)
## 30768                                                                                               Remittances, inflows (% of GDP)
## 30770                                                                             Employment in agriculture (% of total employment)
## 30771                                                                                Employment in services (% of total employment)
## 30772                                                                          Employment to population ratio (% ages 15 and older)
## 30777                                                                                       Unemployment, total (% of labour force)
## 30778                                                                                            Unemployment, youth (% ages 15–24)
## 30779                                                                                 Vulnerable employment (% of total employment)
## 30783                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 30784                                                                                              Population ages 15–64 (millions)
## 30785                                                                                       Population ages 65 and older (millions)
## 30786                                                                                             Population under age 5 (millions)
## 30788                                                                                                   Total population (millions)
## 30789                                                                                                          Urban population (%)
## 30790                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 30792                                                                                           Expected years of schooling (years)
## 30823                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 30825                                                                                Total unemployment rate (female to male ratio)
## 30826                                                                                Youth unemployment rate (female to male ratio)
## 30828                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 30829                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 30830                                                                                              Life expectancy at birth (years)
## 30831                                                                                      Life expectancy at birth, female (years)
## 30832                                                                                        Life expectancy at birth, male (years)
## 30833                                                                                                         Life expectancy index
## 30834                                                                               Mortality rate, female adult (per 1,000 people)
## 30835                                                                                Mortality rate, infant (per 1,000 live births)
## 30836                                                                                 Mortality rate, male adult (per 1,000 people)
## 30837                                                                            Mortality rate, under-five (per 1,000 live births)
## 30848                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 30849                                                                                                                  Income index
## 30861                                                                                                Exports and imports (% of GDP)
## 30862                                                                             Foreign direct investment, net inflows (% of GDP)
## 30863                                                                       Net official development assistance received (% of GNI)
## 30864                                                                                              Private capital flows (% of GDP)
## 30865                                                                                               Remittances, inflows (% of GDP)
## 30866                                                                             Employment in agriculture (% of total employment)
## 30867                                                                                Employment in services (% of total employment)
## 30868                                                                          Employment to population ratio (% ages 15 and older)
## 30873                                                                                       Unemployment, total (% of labour force)
## 30874                                                                                            Unemployment, youth (% ages 15–24)
## 30875                                                                                 Vulnerable employment (% of total employment)
## 30877                                                                                                 Human Development Index (HDI)
## 30879                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 30880                                                                                              Population ages 15–64 (millions)
## 30881                                                                                       Population ages 65 and older (millions)
## 30882                                                                                             Population under age 5 (millions)
## 30884                                                                                                   Total population (millions)
## 30885                                                                                                          Urban population (%)
## 30886                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 30887                                                                                                               Education index
## 30888                                                                                           Expected years of schooling (years)
## 30897                                                                                               Mean years of schooling (years)
## 30898                                                                                       Mean years of schooling, female (years)
## 30899                                                                                         Mean years of schooling, male (years)
## 30901                                               Population with at least some secondary education, female (% ages 25 and older)
## 30902                                                 Population with at least some secondary education, male (% ages 25 and older)
## 30930                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 30932                                                                                Total unemployment rate (female to male ratio)
## 30934                                                                                Youth unemployment rate (female to male ratio)
## 30936                                                                                          HIV prevalence, adult (% ages 15-49)
## 30937                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 30938                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 30939                                                                                              Life expectancy at birth (years)
## 30940                                                                                      Life expectancy at birth, female (years)
## 30941                                                                                        Life expectancy at birth, male (years)
## 30942                                                                                                         Life expectancy index
## 30944                                                                               Mortality rate, female adult (per 1,000 people)
## 30945                                                                                Mortality rate, infant (per 1,000 live births)
## 30946                                                                                 Mortality rate, male adult (per 1,000 people)
## 30947                                                                            Mortality rate, under-five (per 1,000 live births)
## 30959                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 30960                                                                                                                  Income index
## 30971                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 30981                                                                                                Exports and imports (% of GDP)
## 30982                                                                             Foreign direct investment, net inflows (% of GDP)
## 30983                                                                       Net official development assistance received (% of GNI)
## 30984                                                                                              Private capital flows (% of GDP)
## 30986                                                                             Employment in agriculture (% of total employment)
## 30987                                                                                Employment in services (% of total employment)
## 30988                                                                          Employment to population ratio (% ages 15 and older)
## 30992                                                                                       Unemployment, total (% of labour force)
## 30993                                                                                            Unemployment, youth (% ages 15–24)
## 30994                                                                                 Vulnerable employment (% of total employment)
## 30997                                                                                                 Human Development Index (HDI)
## 30999                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 31000                                                                                              Population ages 15–64 (millions)
## 31001                                                                                       Population ages 65 and older (millions)
## 31002                                                                                             Population under age 5 (millions)
## 31004                                                                                                   Total population (millions)
## 31005                                                                                                          Urban population (%)
## 31006                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 31007                                                                                                               Education index
## 31008                                                                                           Expected years of schooling (years)
## 31009                                                                                   Expected years of schooling, female (years)
## 31010                                                                                     Expected years of schooling, male (years)
## 31017                                                                                               Mean years of schooling (years)
## 31018                                                                                       Mean years of schooling, female (years)
## 31019                                                                                         Mean years of schooling, male (years)
## 31021                                               Population with at least some secondary education, female (% ages 25 and older)
## 31022                                                 Population with at least some secondary education, male (% ages 25 and older)
## 31050                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 31052                                                                                Total unemployment rate (female to male ratio)
## 31055                                                                                Youth unemployment rate (female to male ratio)
## 31058                                                                                          HIV prevalence, adult (% ages 15-49)
## 31059                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 31060                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 31061                                                                                              Life expectancy at birth (years)
## 31062                                                                                      Life expectancy at birth, female (years)
## 31063                                                                                        Life expectancy at birth, male (years)
## 31064                                                                                                         Life expectancy index
## 31066                                                                               Mortality rate, female adult (per 1,000 people)
## 31067                                                                                Mortality rate, infant (per 1,000 live births)
## 31068                                                                                 Mortality rate, male adult (per 1,000 people)
## 31069                                                                            Mortality rate, under-five (per 1,000 live births)
## 31082                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 31083                                                                                                                  Income index
## 31114                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 31127                                                                                                Exports and imports (% of GDP)
## 31128                                                                             Foreign direct investment, net inflows (% of GDP)
## 31129                                                                       Net official development assistance received (% of GNI)
## 31130                                                                                              Private capital flows (% of GDP)
## 31131                                                                                               Remittances, inflows (% of GDP)
## 31133                                                                             Employment in agriculture (% of total employment)
## 31134                                                                                Employment in services (% of total employment)
## 31135                                                                          Employment to population ratio (% ages 15 and older)
## 31140                                                                                       Unemployment, total (% of labour force)
## 31141                                                                                            Unemployment, youth (% ages 15–24)
## 31142                                                                                 Vulnerable employment (% of total employment)
## 31147                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 31148                                                                                              Population ages 15–64 (millions)
## 31149                                                                                       Population ages 65 and older (millions)
## 31150                                                                                             Population under age 5 (millions)
## 31152                                                                                                   Total population (millions)
## 31153                                                                                                          Urban population (%)
## 31154                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 31156                                                                                           Expected years of schooling (years)
## 31157                                                                                   Expected years of schooling, female (years)
## 31158                                                                                     Expected years of schooling, male (years)
## 31187                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 31188                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 31189                                                                                              Life expectancy at birth (years)
## 31190                                                                                      Life expectancy at birth, female (years)
## 31191                                                                                        Life expectancy at birth, male (years)
## 31192                                                                                                         Life expectancy index
## 31193                                                                               Mortality rate, female adult (per 1,000 people)
## 31194                                                                                Mortality rate, infant (per 1,000 live births)
## 31195                                                                                 Mortality rate, male adult (per 1,000 people)
## 31196                                                                            Mortality rate, under-five (per 1,000 live births)
## 31208                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 31209                                                                                                                  Income index
## 31231                                                                                                Exports and imports (% of GDP)
## 31232                                                                             Foreign direct investment, net inflows (% of GDP)
## 31233                                                                       Net official development assistance received (% of GNI)
## 31234                                                                                              Private capital flows (% of GDP)
## 31235                                                                                               Remittances, inflows (% of GDP)
## 31238                                                                                                 Human Development Index (HDI)
## 31240                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 31241                                                                                              Population ages 15–64 (millions)
## 31242                                                                                       Population ages 65 and older (millions)
## 31243                                                                                             Population under age 5 (millions)
## 31245                                                                                                   Total population (millions)
## 31246                                                                                                          Urban population (%)
## 31247                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 31248                                                                                                               Education index
## 31249                                                                                           Expected years of schooling (years)
## 31258                                                                                               Mean years of schooling (years)
## 31259                                                                                       Mean years of schooling, female (years)
## 31260                                                                                         Mean years of schooling, male (years)
## 31262                                               Population with at least some secondary education, female (% ages 25 and older)
## 31263                                                 Population with at least some secondary education, male (% ages 25 and older)
## 31290                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 31292                                                                                Total unemployment rate (female to male ratio)
## 31296                                                                                Youth unemployment rate (female to male ratio)
## 31299                                                                                          HIV prevalence, adult (% ages 15-49)
## 31302                                                                                              Life expectancy at birth (years)
## 31303                                                                                      Life expectancy at birth, female (years)
## 31304                                                                                        Life expectancy at birth, male (years)
## 31305                                                                                                         Life expectancy index
## 31307                                                                               Mortality rate, female adult (per 1,000 people)
## 31308                                                                                Mortality rate, infant (per 1,000 live births)
## 31309                                                                                 Mortality rate, male adult (per 1,000 people)
## 31310                                                                            Mortality rate, under-five (per 1,000 live births)
## 31323                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 31324                                                                                                                  Income index
## 31354                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 31366                                                                                                Exports and imports (% of GDP)
## 31367                                                                             Foreign direct investment, net inflows (% of GDP)
## 31368                                                                       Net official development assistance received (% of GNI)
## 31369                                                                                              Private capital flows (% of GDP)
## 31370                                                                                               Remittances, inflows (% of GDP)
## 31372                                                                             Employment in agriculture (% of total employment)
## 31373                                                                                Employment in services (% of total employment)
## 31374                                                                          Employment to population ratio (% ages 15 and older)
## 31379                                                                                       Unemployment, total (% of labour force)
## 31380                                                                                            Unemployment, youth (% ages 15–24)
## 31381                                                                                 Vulnerable employment (% of total employment)
## 31384                                                                                                 Human Development Index (HDI)
## 31386                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 31387                                                                                              Population ages 15–64 (millions)
## 31388                                                                                       Population ages 65 and older (millions)
## 31389                                                                                             Population under age 5 (millions)
## 31391                                                                                                   Total population (millions)
## 31392                                                                                                          Urban population (%)
## 31393                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 31394                                                                                                               Education index
## 31395                                                                                           Expected years of schooling (years)
## 31402                                                                                               Mean years of schooling (years)
## 31403                                                                                       Mean years of schooling, female (years)
## 31404                                                                                         Mean years of schooling, male (years)
## 31406                                               Population with at least some secondary education, female (% ages 25 and older)
## 31407                                                 Population with at least some secondary education, male (% ages 25 and older)
## 31434                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 31436                                                                                Total unemployment rate (female to male ratio)
## 31439                                                                                Youth unemployment rate (female to male ratio)
## 31441                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 31442                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 31443                                                                                              Life expectancy at birth (years)
## 31444                                                                                      Life expectancy at birth, female (years)
## 31445                                                                                        Life expectancy at birth, male (years)
## 31446                                                                                                         Life expectancy index
## 31447                                                                               Mortality rate, female adult (per 1,000 people)
## 31448                                                                                Mortality rate, infant (per 1,000 live births)
## 31449                                                                                 Mortality rate, male adult (per 1,000 people)
## 31450                                                                            Mortality rate, under-five (per 1,000 live births)
## 31462                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 31463                                                                                                                  Income index
## 31479                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 31488                                                                                                Exports and imports (% of GDP)
## 31489                                                                             Foreign direct investment, net inflows (% of GDP)
## 31490                                                                       Net official development assistance received (% of GNI)
## 31491                                                                                              Private capital flows (% of GDP)
## 31492                                                                             Employment in agriculture (% of total employment)
## 31493                                                                                Employment in services (% of total employment)
## 31494                                                                          Employment to population ratio (% ages 15 and older)
## 31499                                                                                       Unemployment, total (% of labour force)
## 31500                                                                                            Unemployment, youth (% ages 15–24)
## 31501                                                                                 Vulnerable employment (% of total employment)
## 31506                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 31507                                                                                              Population ages 15–64 (millions)
## 31508                                                                                       Population ages 65 and older (millions)
## 31509                                                                                             Population under age 5 (millions)
## 31511                                                                                                   Total population (millions)
## 31512                                                                                                          Urban population (%)
## 31513                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 31515                                                                                           Expected years of schooling (years)
## 31516                                                                                   Expected years of schooling, female (years)
## 31517                                                                                     Expected years of schooling, male (years)
## 31545                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 31547                                                                                Total unemployment rate (female to male ratio)
## 31551                                                                                Youth unemployment rate (female to male ratio)
## 31554                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 31555                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 31556                                                                                              Life expectancy at birth (years)
## 31557                                                                                      Life expectancy at birth, female (years)
## 31558                                                                                        Life expectancy at birth, male (years)
## 31559                                                                                                         Life expectancy index
## 31561                                                                               Mortality rate, female adult (per 1,000 people)
## 31562                                                                                Mortality rate, infant (per 1,000 live births)
## 31563                                                                                 Mortality rate, male adult (per 1,000 people)
## 31564                                                                            Mortality rate, under-five (per 1,000 live births)
## 31577                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 31578                                                                                                                  Income index
## 31595                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 31604                                                                                                Exports and imports (% of GDP)
## 31605                                                                             Foreign direct investment, net inflows (% of GDP)
## 31606                                                                       Net official development assistance received (% of GNI)
## 31607                                                                                              Private capital flows (% of GDP)
## 31610                                                                             Employment in agriculture (% of total employment)
## 31611                                                                                Employment in services (% of total employment)
## 31612                                                                          Employment to population ratio (% ages 15 and older)
## 31617                                                                                       Unemployment, total (% of labour force)
## 31618                                                                                            Unemployment, youth (% ages 15–24)
## 31619                                                                                 Vulnerable employment (% of total employment)
## 31621                                                                                                 Human Development Index (HDI)
## 31623                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 31624                                                                                              Population ages 15–64 (millions)
## 31625                                                                                       Population ages 65 and older (millions)
## 31626                                                                                             Population under age 5 (millions)
## 31628                                                                                                   Total population (millions)
## 31629                                                                                                          Urban population (%)
## 31630                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 31631                                                                                                               Education index
## 31632                                                                                           Expected years of schooling (years)
## 31633                                                                                   Expected years of schooling, female (years)
## 31634                                                                                     Expected years of schooling, male (years)
## 31641                                                                                               Mean years of schooling (years)
## 31642                                                                                       Mean years of schooling, female (years)
## 31643                                                                                         Mean years of schooling, male (years)
## 31645                                               Population with at least some secondary education, female (% ages 25 and older)
## 31646                                                 Population with at least some secondary education, male (% ages 25 and older)
## 31676                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 31678                                                                                Total unemployment rate (female to male ratio)
## 31681                                                                                Youth unemployment rate (female to male ratio)
## 31684                                                                                          HIV prevalence, adult (% ages 15-49)
## 31685                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 31686                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 31687                                                                                              Life expectancy at birth (years)
## 31688                                                                                      Life expectancy at birth, female (years)
## 31689                                                                                        Life expectancy at birth, male (years)
## 31690                                                                                                         Life expectancy index
## 31692                                                                               Mortality rate, female adult (per 1,000 people)
## 31693                                                                                Mortality rate, infant (per 1,000 live births)
## 31694                                                                                 Mortality rate, male adult (per 1,000 people)
## 31695                                                                            Mortality rate, under-five (per 1,000 live births)
## 31708                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 31709                                                                                                                  Income index
## 31740                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 31753                                                                                                Exports and imports (% of GDP)
## 31754                                                                             Foreign direct investment, net inflows (% of GDP)
## 31756                                                                                              Private capital flows (% of GDP)
## 31757                                                                                               Remittances, inflows (% of GDP)
## 31758                                                                             Employment in agriculture (% of total employment)
## 31759                                                                                Employment in services (% of total employment)
## 31760                                                                          Employment to population ratio (% ages 15 and older)
## 31765                                                                                       Unemployment, total (% of labour force)
## 31766                                                                                            Unemployment, youth (% ages 15–24)
## 31767                                                                                 Vulnerable employment (% of total employment)
## 31770                                                                                                 Human Development Index (HDI)
## 31772                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 31773                                                                                              Population ages 15–64 (millions)
## 31774                                                                                       Population ages 65 and older (millions)
## 31775                                                                                             Population under age 5 (millions)
## 31777                                                                                                   Total population (millions)
## 31778                                                                                                          Urban population (%)
## 31779                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 31780                                                                                                               Education index
## 31781                                                                                           Expected years of schooling (years)
## 31782                                                                                   Expected years of schooling, female (years)
## 31783                                                                                     Expected years of schooling, male (years)
## 31790                                                                                               Mean years of schooling (years)
## 31791                                                                                       Mean years of schooling, female (years)
## 31792                                                                                         Mean years of schooling, male (years)
## 31794                                               Population with at least some secondary education, female (% ages 25 and older)
## 31795                                                 Population with at least some secondary education, male (% ages 25 and older)
## 31825                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 31827                                                                                Total unemployment rate (female to male ratio)
## 31830                                                                                Youth unemployment rate (female to male ratio)
## 31833                                                                                          HIV prevalence, adult (% ages 15-49)
## 31834                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 31835                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 31836                                                                                              Life expectancy at birth (years)
## 31837                                                                                      Life expectancy at birth, female (years)
## 31838                                                                                        Life expectancy at birth, male (years)
## 31839                                                                                                         Life expectancy index
## 31841                                                                               Mortality rate, female adult (per 1,000 people)
## 31842                                                                                Mortality rate, infant (per 1,000 live births)
## 31843                                                                                 Mortality rate, male adult (per 1,000 people)
## 31844                                                                            Mortality rate, under-five (per 1,000 live births)
## 31857                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 31858                                                                                                                  Income index
## 31876                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 31889                                                                                                Exports and imports (% of GDP)
## 31890                                                                             Foreign direct investment, net inflows (% of GDP)
## 31891                                                                       Net official development assistance received (% of GNI)
## 31892                                                                                              Private capital flows (% of GDP)
## 31893                                                                                               Remittances, inflows (% of GDP)
## 31894                                                                             Employment in agriculture (% of total employment)
## 31895                                                                                Employment in services (% of total employment)
## 31896                                                                          Employment to population ratio (% ages 15 and older)
## 31901                                                                                       Unemployment, total (% of labour force)
## 31902                                                                                            Unemployment, youth (% ages 15–24)
## 31903                                                                                 Vulnerable employment (% of total employment)
## 31906                                                                                                 Human Development Index (HDI)
## 31908                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 31909                                                                                              Population ages 15–64 (millions)
## 31910                                                                                       Population ages 65 and older (millions)
## 31911                                                                                             Population under age 5 (millions)
## 31913                                                                                                   Total population (millions)
## 31914                                                                                                          Urban population (%)
## 31915                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 31916                                                                                                               Education index
## 31917                                                                                           Expected years of schooling (years)
## 31926                                                                                               Mean years of schooling (years)
## 31927                                                                                       Mean years of schooling, female (years)
## 31928                                                                                         Mean years of schooling, male (years)
## 31930                                               Population with at least some secondary education, female (% ages 25 and older)
## 31931                                                 Population with at least some secondary education, male (% ages 25 and older)
## 31961                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 31963                                                                                Total unemployment rate (female to male ratio)
## 31966                                                                                Youth unemployment rate (female to male ratio)
## 31969                                                                                          HIV prevalence, adult (% ages 15-49)
## 31970                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 31971                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 31972                                                                                              Life expectancy at birth (years)
## 31973                                                                                      Life expectancy at birth, female (years)
## 31974                                                                                        Life expectancy at birth, male (years)
## 31975                                                                                                         Life expectancy index
## 31977                                                                               Mortality rate, female adult (per 1,000 people)
## 31978                                                                                Mortality rate, infant (per 1,000 live births)
## 31979                                                                                 Mortality rate, male adult (per 1,000 people)
## 31980                                                                            Mortality rate, under-five (per 1,000 live births)
## 31993                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 31994                                                                                                                  Income index
## 32025                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 32035                                                                                                Exports and imports (% of GDP)
## 32036                                                                             Foreign direct investment, net inflows (% of GDP)
## 32037                                                                       Net official development assistance received (% of GNI)
## 32038                                                                                              Private capital flows (% of GDP)
## 32039                                                                                               Remittances, inflows (% of GDP)
## 32041                                                                             Employment in agriculture (% of total employment)
## 32042                                                                                Employment in services (% of total employment)
## 32043                                                                          Employment to population ratio (% ages 15 and older)
## 32048                                                                                       Unemployment, total (% of labour force)
## 32049                                                                                            Unemployment, youth (% ages 15–24)
## 32050                                                                                 Vulnerable employment (% of total employment)
## 32054                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 32055                                                                                              Population ages 15–64 (millions)
## 32056                                                                                       Population ages 65 and older (millions)
## 32057                                                                                             Population under age 5 (millions)
## 32059                                                                                                   Total population (millions)
## 32060                                                                                                          Urban population (%)
## 32061                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 32063                                                                                           Expected years of schooling (years)
## 32064                                                                                   Expected years of schooling, female (years)
## 32065                                                                                     Expected years of schooling, male (years)
## 32104                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 32106                                                                                Total unemployment rate (female to male ratio)
## 32108                                                                                Youth unemployment rate (female to male ratio)
## 32111                                                                                          HIV prevalence, adult (% ages 15-49)
## 32112                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 32113                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 32114                                                                                              Life expectancy at birth (years)
## 32115                                                                                      Life expectancy at birth, female (years)
## 32116                                                                                        Life expectancy at birth, male (years)
## 32117                                                                                                         Life expectancy index
## 32119                                                                               Mortality rate, female adult (per 1,000 people)
## 32120                                                                                Mortality rate, infant (per 1,000 live births)
## 32121                                                                                 Mortality rate, male adult (per 1,000 people)
## 32122                                                                            Mortality rate, under-five (per 1,000 live births)
## 32135                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 32136                                                                                                                  Income index
## 32161                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 32170                                                                                                Exports and imports (% of GDP)
## 32171                                                                             Foreign direct investment, net inflows (% of GDP)
## 32172                                                                       Net official development assistance received (% of GNI)
## 32174                                                                                               Remittances, inflows (% of GDP)
## 32176                                                                             Employment in agriculture (% of total employment)
## 32177                                                                                Employment in services (% of total employment)
## 32178                                                                          Employment to population ratio (% ages 15 and older)
## 32182                                                                                       Unemployment, total (% of labour force)
## 32183                                                                                            Unemployment, youth (% ages 15–24)
## 32184                                                                                 Vulnerable employment (% of total employment)
## 32186                                                                                                 Human Development Index (HDI)
## 32188                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 32189                                                                                              Population ages 15–64 (millions)
## 32190                                                                                       Population ages 65 and older (millions)
## 32191                                                                                             Population under age 5 (millions)
## 32193                                                                                                   Total population (millions)
## 32194                                                                                                          Urban population (%)
## 32195                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 32196                                                                                                               Education index
## 32197                                                                                           Expected years of schooling (years)
## 32198                                                                                   Expected years of schooling, female (years)
## 32199                                                                                     Expected years of schooling, male (years)
## 32205                                                                                               Mean years of schooling (years)
## 32206                                                                                       Mean years of schooling, female (years)
## 32207                                                                                         Mean years of schooling, male (years)
## 32209                                               Population with at least some secondary education, female (% ages 25 and older)
## 32210                                                 Population with at least some secondary education, male (% ages 25 and older)
## 32239                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 32241                                                                                Total unemployment rate (female to male ratio)
## 32245                                                                                Youth unemployment rate (female to male ratio)
## 32247                                                                                          HIV prevalence, adult (% ages 15-49)
## 32248                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 32249                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 32250                                                                                              Life expectancy at birth (years)
## 32251                                                                                      Life expectancy at birth, female (years)
## 32252                                                                                        Life expectancy at birth, male (years)
## 32253                                                                                                         Life expectancy index
## 32254                                                                               Mortality rate, female adult (per 1,000 people)
## 32255                                                                                Mortality rate, infant (per 1,000 live births)
## 32256                                                                                 Mortality rate, male adult (per 1,000 people)
## 32257                                                                            Mortality rate, under-five (per 1,000 live births)
## 32270                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 32271                                                                                                                  Income index
## 32301                                                                                                Exports and imports (% of GDP)
## 32302                                                                             Foreign direct investment, net inflows (% of GDP)
## 32303                                                                                              Private capital flows (% of GDP)
## 32304                                                                                               Remittances, inflows (% of GDP)
## 32305                                                                             Employment in agriculture (% of total employment)
## 32306                                                                                Employment in services (% of total employment)
## 32307                                                                          Employment to population ratio (% ages 15 and older)
## 32312                                                                                       Unemployment, total (% of labour force)
## 32313                                                                                            Unemployment, youth (% ages 15–24)
## 32314                                                                                 Vulnerable employment (% of total employment)
## 32317                                                                                                 Human Development Index (HDI)
## 32319                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 32320                                                                                              Population ages 15–64 (millions)
## 32321                                                                                       Population ages 65 and older (millions)
## 32322                                                                                             Population under age 5 (millions)
## 32324                                                                                                   Total population (millions)
## 32325                                                                                                          Urban population (%)
## 32326                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 32327                                                                                                               Education index
## 32328                                                                                           Expected years of schooling (years)
## 32329                                                                                   Expected years of schooling, female (years)
## 32330                                                                                     Expected years of schooling, male (years)
## 32336                                                                                               Mean years of schooling (years)
## 32337                                                                                       Mean years of schooling, female (years)
## 32338                                                                                         Mean years of schooling, male (years)
## 32340                                               Population with at least some secondary education, female (% ages 25 and older)
## 32341                                                 Population with at least some secondary education, male (% ages 25 and older)
## 32370                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 32372                                                                                Total unemployment rate (female to male ratio)
## 32374                                                                                Youth unemployment rate (female to male ratio)
## 32376                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 32377                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 32378                                                                                              Life expectancy at birth (years)
## 32379                                                                                      Life expectancy at birth, female (years)
## 32380                                                                                        Life expectancy at birth, male (years)
## 32381                                                                                                         Life expectancy index
## 32382                                                                               Mortality rate, female adult (per 1,000 people)
## 32383                                                                                Mortality rate, infant (per 1,000 live births)
## 32384                                                                                 Mortality rate, male adult (per 1,000 people)
## 32385                                                                            Mortality rate, under-five (per 1,000 live births)
## 32398                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 32399                                                                                                                  Income index
## 32428                                                                                                Exports and imports (% of GDP)
## 32429                                                                             Foreign direct investment, net inflows (% of GDP)
## 32430                                                                                              Private capital flows (% of GDP)
## 32431                                                                                               Remittances, inflows (% of GDP)
## 32432                                                                             Employment in agriculture (% of total employment)
## 32433                                                                                Employment in services (% of total employment)
## 32434                                                                          Employment to population ratio (% ages 15 and older)
## 32439                                                                                       Unemployment, total (% of labour force)
## 32440                                                                                            Unemployment, youth (% ages 15–24)
## 32441                                                                                 Vulnerable employment (% of total employment)
## 32444                                                                                                 Human Development Index (HDI)
## 32446                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 32447                                                                                              Population ages 15–64 (millions)
## 32448                                                                                       Population ages 65 and older (millions)
## 32449                                                                                             Population under age 5 (millions)
## 32451                                                                                                   Total population (millions)
## 32452                                                                                                          Urban population (%)
## 32453                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 32454                                                                                                               Education index
## 32455                                                                                           Expected years of schooling (years)
## 32456                                                                                   Expected years of schooling, female (years)
## 32457                                                                                     Expected years of schooling, male (years)
## 32463                                                                                               Mean years of schooling (years)
## 32464                                                                                       Mean years of schooling, female (years)
## 32465                                                                                         Mean years of schooling, male (years)
## 32467                                               Population with at least some secondary education, female (% ages 25 and older)
## 32468                                                 Population with at least some secondary education, male (% ages 25 and older)
## 32496                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 32498                                                                                Total unemployment rate (female to male ratio)
## 32501                                                                                Youth unemployment rate (female to male ratio)
## 32504                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 32505                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 32506                                                                                              Life expectancy at birth (years)
## 32507                                                                                      Life expectancy at birth, female (years)
## 32508                                                                                        Life expectancy at birth, male (years)
## 32509                                                                                                         Life expectancy index
## 32510                                                                               Mortality rate, female adult (per 1,000 people)
## 32511                                                                                Mortality rate, infant (per 1,000 live births)
## 32512                                                                                 Mortality rate, male adult (per 1,000 people)
## 32513                                                                            Mortality rate, under-five (per 1,000 live births)
## 32524                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 32525                                                                                                                  Income index
## 32551                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 32558                                                                                                Exports and imports (% of GDP)
## 32559                                                                             Foreign direct investment, net inflows (% of GDP)
## 32560                                                                       Net official development assistance received (% of GNI)
## 32561                                                                                              Private capital flows (% of GDP)
## 32562                                                                                               Remittances, inflows (% of GDP)
## 32563                                                                             Employment in agriculture (% of total employment)
## 32564                                                                                Employment in services (% of total employment)
## 32565                                                                          Employment to population ratio (% ages 15 and older)
## 32570                                                                                       Unemployment, total (% of labour force)
## 32571                                                                                            Unemployment, youth (% ages 15–24)
## 32572                                                                                 Vulnerable employment (% of total employment)
## 32574                                                                                                 Human Development Index (HDI)
## 32576                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 32577                                                                                              Population ages 15–64 (millions)
## 32578                                                                                       Population ages 65 and older (millions)
## 32579                                                                                             Population under age 5 (millions)
## 32581                                                                                                   Total population (millions)
## 32582                                                                                                          Urban population (%)
## 32583                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 32584                                                                                                               Education index
## 32585                                                                                           Expected years of schooling (years)
## 32594                                                                                               Mean years of schooling (years)
## 32595                                                                                       Mean years of schooling, female (years)
## 32596                                                                                         Mean years of schooling, male (years)
## 32598                                               Population with at least some secondary education, female (% ages 25 and older)
## 32599                                                 Population with at least some secondary education, male (% ages 25 and older)
## 32627                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 32629                                                                                Total unemployment rate (female to male ratio)
## 32633                                                                                Youth unemployment rate (female to male ratio)
## 32636                                                                                          HIV prevalence, adult (% ages 15-49)
## 32639                                                                                              Life expectancy at birth (years)
## 32640                                                                                      Life expectancy at birth, female (years)
## 32641                                                                                        Life expectancy at birth, male (years)
## 32642                                                                                                         Life expectancy index
## 32644                                                                               Mortality rate, female adult (per 1,000 people)
## 32645                                                                                Mortality rate, infant (per 1,000 live births)
## 32646                                                                                 Mortality rate, male adult (per 1,000 people)
## 32647                                                                            Mortality rate, under-five (per 1,000 live births)
## 32660                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 32661                                                                                                                  Income index
## 32692                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 32705                                                                                                Exports and imports (% of GDP)
## 32710                                                                             Employment in agriculture (% of total employment)
## 32711                                                                                Employment in services (% of total employment)
## 32712                                                                          Employment to population ratio (% ages 15 and older)
## 32717                                                                                       Unemployment, total (% of labour force)
## 32718                                                                                            Unemployment, youth (% ages 15–24)
## 32719                                                                                 Vulnerable employment (% of total employment)
## 32722                                                                                                 Human Development Index (HDI)
## 32724                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 32725                                                                                              Population ages 15–64 (millions)
## 32726                                                                                       Population ages 65 and older (millions)
## 32727                                                                                             Population under age 5 (millions)
## 32729                                                                                                   Total population (millions)
## 32730                                                                                                          Urban population (%)
## 32731                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 32732                                                                                                               Education index
## 32733                                                                                           Expected years of schooling (years)
## 32734                                                                                   Expected years of schooling, female (years)
## 32735                                                                                     Expected years of schooling, male (years)
## 32742                                                                                               Mean years of schooling (years)
## 32743                                                                                       Mean years of schooling, female (years)
## 32744                                                                                         Mean years of schooling, male (years)
## 32746                                               Population with at least some secondary education, female (% ages 25 and older)
## 32747                                                 Population with at least some secondary education, male (% ages 25 and older)
## 32781                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 32783                                                                                Total unemployment rate (female to male ratio)
## 32786                                                                                Youth unemployment rate (female to male ratio)
## 32789                                                                                          HIV prevalence, adult (% ages 15-49)
## 32790                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 32791                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 32792                                                                                              Life expectancy at birth (years)
## 32793                                                                                      Life expectancy at birth, female (years)
## 32794                                                                                        Life expectancy at birth, male (years)
## 32795                                                                                                         Life expectancy index
## 32797                                                                               Mortality rate, female adult (per 1,000 people)
## 32798                                                                                Mortality rate, infant (per 1,000 live births)
## 32799                                                                                 Mortality rate, male adult (per 1,000 people)
## 32800                                                                            Mortality rate, under-five (per 1,000 live births)
## 32813                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 32814                                                                                                                  Income index
## 32846                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 32859                                                                                                Exports and imports (% of GDP)
## 32860                                                                             Foreign direct investment, net inflows (% of GDP)
## 32861                                                                       Net official development assistance received (% of GNI)
## 32862                                                                                              Private capital flows (% of GDP)
## 32863                                                                                               Remittances, inflows (% of GDP)
## 32864                                                                             Employment in agriculture (% of total employment)
## 32865                                                                                Employment in services (% of total employment)
## 32866                                                                          Employment to population ratio (% ages 15 and older)
## 32871                                                                                       Unemployment, total (% of labour force)
## 32872                                                                                            Unemployment, youth (% ages 15–24)
## 32873                                                                                 Vulnerable employment (% of total employment)
## 32878                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 32879                                                                                              Population ages 15–64 (millions)
## 32880                                                                                       Population ages 65 and older (millions)
## 32881                                                                                             Population under age 5 (millions)
## 32883                                                                                                   Total population (millions)
## 32884                                                                                                          Urban population (%)
## 32885                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 32887                                                                                           Expected years of schooling (years)
## 32888                                                                                   Expected years of schooling, female (years)
## 32889                                                                                     Expected years of schooling, male (years)
## 32932                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 32934                                                                                Total unemployment rate (female to male ratio)
## 32937                                                                                Youth unemployment rate (female to male ratio)
## 32940                                                                                          HIV prevalence, adult (% ages 15-49)
## 32943                                                                                              Life expectancy at birth (years)
## 32944                                                                                      Life expectancy at birth, female (years)
## 32945                                                                                        Life expectancy at birth, male (years)
## 32946                                                                                                         Life expectancy index
## 32947                                                                               Mortality rate, female adult (per 1,000 people)
## 32948                                                                                Mortality rate, infant (per 1,000 live births)
## 32949                                                                                 Mortality rate, male adult (per 1,000 people)
## 32950                                                                            Mortality rate, under-five (per 1,000 live births)
## 32963                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 32964                                                                                                                  Income index
## 32996                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 33007                                                                                                Exports and imports (% of GDP)
## 33013                                                                             Employment in agriculture (% of total employment)
## 33014                                                                                Employment in services (% of total employment)
## 33015                                                                          Employment to population ratio (% ages 15 and older)
## 33020                                                                                       Unemployment, total (% of labour force)
## 33021                                                                                            Unemployment, youth (% ages 15–24)
## 33022                                                                                 Vulnerable employment (% of total employment)
## 33025                                                                                                 Human Development Index (HDI)
## 33027                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 33028                                                                                              Population ages 15–64 (millions)
## 33029                                                                                       Population ages 65 and older (millions)
## 33030                                                                                             Population under age 5 (millions)
## 33032                                                                                                   Total population (millions)
## 33033                                                                                                          Urban population (%)
## 33034                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 33035                                                                                                               Education index
## 33036                                                                                           Expected years of schooling (years)
## 33037                                                                                   Expected years of schooling, female (years)
## 33038                                                                                     Expected years of schooling, male (years)
## 33045                                                                                               Mean years of schooling (years)
## 33046                                                                                       Mean years of schooling, female (years)
## 33047                                                                                         Mean years of schooling, male (years)
## 33049                                               Population with at least some secondary education, female (% ages 25 and older)
## 33050                                                 Population with at least some secondary education, male (% ages 25 and older)
## 33077                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 33079                                                                                Total unemployment rate (female to male ratio)
## 33083                                                                                Youth unemployment rate (female to male ratio)
## 33086                                                                                          HIV prevalence, adult (% ages 15-49)
## 33087                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 33088                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 33089                                                                                              Life expectancy at birth (years)
## 33090                                                                                      Life expectancy at birth, female (years)
## 33091                                                                                        Life expectancy at birth, male (years)
## 33092                                                                                                         Life expectancy index
## 33094                                                                               Mortality rate, female adult (per 1,000 people)
## 33095                                                                                Mortality rate, infant (per 1,000 live births)
## 33096                                                                                 Mortality rate, male adult (per 1,000 people)
## 33097                                                                            Mortality rate, under-five (per 1,000 live births)
## 33110                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 33111                                                                                                                  Income index
## 33142                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 33154                                                                                                Exports and imports (% of GDP)
## 33155                                                                             Foreign direct investment, net inflows (% of GDP)
## 33156                                                                       Net official development assistance received (% of GNI)
## 33157                                                                                              Private capital flows (% of GDP)
## 33158                                                                                               Remittances, inflows (% of GDP)
## 33160                                                                             Employment in agriculture (% of total employment)
## 33161                                                                                Employment in services (% of total employment)
## 33162                                                                          Employment to population ratio (% ages 15 and older)
## 33167                                                                                       Unemployment, total (% of labour force)
## 33168                                                                                            Unemployment, youth (% ages 15–24)
## 33169                                                                                 Vulnerable employment (% of total employment)
## 33172                                                                                                 Human Development Index (HDI)
## 33174                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 33175                                                                                              Population ages 15–64 (millions)
## 33176                                                                                       Population ages 65 and older (millions)
## 33177                                                                                             Population under age 5 (millions)
## 33179                                                                                                   Total population (millions)
## 33180                                                                                                          Urban population (%)
## 33181                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 33182                                                                                                               Education index
## 33183                                                                                           Expected years of schooling (years)
## 33192                                                                                               Mean years of schooling (years)
## 33193                                                                                       Mean years of schooling, female (years)
## 33194                                                                                         Mean years of schooling, male (years)
## 33196                                               Population with at least some secondary education, female (% ages 25 and older)
## 33197                                                 Population with at least some secondary education, male (% ages 25 and older)
## 33222                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 33224                                                                                Total unemployment rate (female to male ratio)
## 33228                                                                                Youth unemployment rate (female to male ratio)
## 33231                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 33232                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 33233                                                                                              Life expectancy at birth (years)
## 33234                                                                                      Life expectancy at birth, female (years)
## 33235                                                                                        Life expectancy at birth, male (years)
## 33236                                                                                                         Life expectancy index
## 33237                                                                               Mortality rate, female adult (per 1,000 people)
## 33238                                                                                Mortality rate, infant (per 1,000 live births)
## 33239                                                                                 Mortality rate, male adult (per 1,000 people)
## 33240                                                                            Mortality rate, under-five (per 1,000 live births)
## 33253                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 33254                                                                                                                  Income index
## 33274                                                                                                Exports and imports (% of GDP)
## 33275                                                                             Foreign direct investment, net inflows (% of GDP)
## 33276                                                                       Net official development assistance received (% of GNI)
## 33277                                                                                              Private capital flows (% of GDP)
## 33278                                                                                               Remittances, inflows (% of GDP)
## 33279                                                                             Employment in agriculture (% of total employment)
## 33280                                                                                Employment in services (% of total employment)
## 33281                                                                          Employment to population ratio (% ages 15 and older)
## 33286                                                                                       Unemployment, total (% of labour force)
## 33287                                                                                            Unemployment, youth (% ages 15–24)
## 33288                                                                                 Vulnerable employment (% of total employment)
## 33290                                                                                                 Human Development Index (HDI)
## 33292                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 33293                                                                                              Population ages 15–64 (millions)
## 33294                                                                                       Population ages 65 and older (millions)
## 33295                                                                                             Population under age 5 (millions)
## 33297                                                                                                   Total population (millions)
## 33298                                                                                                          Urban population (%)
## 33299                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 33300                                                                                                               Education index
## 33301                                                                                           Expected years of schooling (years)
## 33302                                                                                   Expected years of schooling, female (years)
## 33303                                                                                     Expected years of schooling, male (years)
## 33310                                                                                               Mean years of schooling (years)
## 33311                                                                                       Mean years of schooling, female (years)
## 33312                                                                                         Mean years of schooling, male (years)
## 33314                                               Population with at least some secondary education, female (% ages 25 and older)
## 33315                                                 Population with at least some secondary education, male (% ages 25 and older)
## 33347                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 33349                                                                                Total unemployment rate (female to male ratio)
## 33354                                                                                Youth unemployment rate (female to male ratio)
## 33357                                                                                          HIV prevalence, adult (% ages 15-49)
## 33358                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 33359                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 33360                                                                                              Life expectancy at birth (years)
## 33361                                                                                      Life expectancy at birth, female (years)
## 33362                                                                                        Life expectancy at birth, male (years)
## 33363                                                                                                         Life expectancy index
## 33364                                                                               Mortality rate, female adult (per 1,000 people)
## 33365                                                                                Mortality rate, infant (per 1,000 live births)
## 33366                                                                                 Mortality rate, male adult (per 1,000 people)
## 33367                                                                            Mortality rate, under-five (per 1,000 live births)
## 33379                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 33380                                                                                                                  Income index
## 33406                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 33414                                                                             Foreign direct investment, net inflows (% of GDP)
## 33415                                                                       Net official development assistance received (% of GNI)
## 33416                                                                                              Private capital flows (% of GDP)
## 33417                                                                                               Remittances, inflows (% of GDP)
## 33418                                                                             Employment in agriculture (% of total employment)
## 33419                                                                                Employment in services (% of total employment)
## 33420                                                                          Employment to population ratio (% ages 15 and older)
## 33425                                                                                       Unemployment, total (% of labour force)
## 33426                                                                                            Unemployment, youth (% ages 15–24)
## 33427                                                                                 Vulnerable employment (% of total employment)
## 33430                                                                                                 Human Development Index (HDI)
## 33432                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 33433                                                                                              Population ages 15–64 (millions)
## 33434                                                                                       Population ages 65 and older (millions)
## 33435                                                                                             Population under age 5 (millions)
## 33437                                                                                                   Total population (millions)
## 33438                                                                                                          Urban population (%)
## 33439                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 33440                                                                                                               Education index
## 33441                                                                                           Expected years of schooling (years)
## 33442                                                                                   Expected years of schooling, female (years)
## 33443                                                                                     Expected years of schooling, male (years)
## 33450                                                                                               Mean years of schooling (years)
## 33451                                                                                       Mean years of schooling, female (years)
## 33452                                                                                         Mean years of schooling, male (years)
## 33454                                               Population with at least some secondary education, female (% ages 25 and older)
## 33455                                                 Population with at least some secondary education, male (% ages 25 and older)
## 33488                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 33490                                                                                Total unemployment rate (female to male ratio)
## 33493                                                                                Youth unemployment rate (female to male ratio)
## 33496                                                                                          HIV prevalence, adult (% ages 15-49)
## 33497                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 33498                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 33499                                                                                              Life expectancy at birth (years)
## 33500                                                                                      Life expectancy at birth, female (years)
## 33501                                                                                        Life expectancy at birth, male (years)
## 33502                                                                                                         Life expectancy index
## 33503                                                                               Mortality rate, female adult (per 1,000 people)
## 33504                                                                                Mortality rate, infant (per 1,000 live births)
## 33505                                                                                 Mortality rate, male adult (per 1,000 people)
## 33506                                                                            Mortality rate, under-five (per 1,000 live births)
## 33519                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 33520                                                                                                                  Income index
## 33551                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 33564                                                                                                Exports and imports (% of GDP)
## 33565                                                                             Foreign direct investment, net inflows (% of GDP)
## 33566                                                                       Net official development assistance received (% of GNI)
## 33567                                                                                              Private capital flows (% of GDP)
## 33568                                                                                               Remittances, inflows (% of GDP)
## 33570                                                                             Employment in agriculture (% of total employment)
## 33571                                                                                Employment in services (% of total employment)
## 33572                                                                          Employment to population ratio (% ages 15 and older)
## 33577                                                                                       Unemployment, total (% of labour force)
## 33578                                                                                            Unemployment, youth (% ages 15–24)
## 33579                                                                                 Vulnerable employment (% of total employment)
## 33581                                                                                                 Human Development Index (HDI)
## 33583                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 33584                                                                                              Population ages 15–64 (millions)
## 33585                                                                                       Population ages 65 and older (millions)
## 33586                                                                                             Population under age 5 (millions)
## 33588                                                                                                   Total population (millions)
## 33589                                                                                                          Urban population (%)
## 33590                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 33591                                                                                                               Education index
## 33592                                                                                           Expected years of schooling (years)
## 33593                                                                                   Expected years of schooling, female (years)
## 33594                                                                                     Expected years of schooling, male (years)
## 33601                                                                                               Mean years of schooling (years)
## 33602                                                                                       Mean years of schooling, female (years)
## 33603                                                                                         Mean years of schooling, male (years)
## 33605                                               Population with at least some secondary education, female (% ages 25 and older)
## 33606                                                 Population with at least some secondary education, male (% ages 25 and older)
## 33639                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 33641                                                                                Total unemployment rate (female to male ratio)
## 33645                                                                                Youth unemployment rate (female to male ratio)
## 33648                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 33649                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 33650                                                                                              Life expectancy at birth (years)
## 33651                                                                                      Life expectancy at birth, female (years)
## 33652                                                                                        Life expectancy at birth, male (years)
## 33653                                                                                                         Life expectancy index
## 33655                                                                               Mortality rate, female adult (per 1,000 people)
## 33656                                                                                Mortality rate, infant (per 1,000 live births)
## 33657                                                                                 Mortality rate, male adult (per 1,000 people)
## 33658                                                                            Mortality rate, under-five (per 1,000 live births)
## 33671                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 33672                                                                                                                  Income index
## 33691                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 33704                                                                                                Exports and imports (% of GDP)
## 33705                                                                             Foreign direct investment, net inflows (% of GDP)
## 33706                                                                       Net official development assistance received (% of GNI)
## 33707                                                                                              Private capital flows (% of GDP)
## 33708                                                                                               Remittances, inflows (% of GDP)
## 33709                                                                             Employment in agriculture (% of total employment)
## 33710                                                                                Employment in services (% of total employment)
## 33711                                                                          Employment to population ratio (% ages 15 and older)
## 33716                                                                                       Unemployment, total (% of labour force)
## 33717                                                                                            Unemployment, youth (% ages 15–24)
## 33718                                                                                 Vulnerable employment (% of total employment)
## 33723                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 33724                                                                                              Population ages 15–64 (millions)
## 33725                                                                                       Population ages 65 and older (millions)
## 33726                                                                                             Population under age 5 (millions)
## 33728                                                                                                   Total population (millions)
## 33729                                                                                                          Urban population (%)
## 33730                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 33761                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 33763                                                                                Total unemployment rate (female to male ratio)
## 33766                                                                                Youth unemployment rate (female to male ratio)
## 33771                                                                                              Life expectancy at birth (years)
## 33772                                                                                      Life expectancy at birth, female (years)
## 33773                                                                                        Life expectancy at birth, male (years)
## 33774                                                                                                         Life expectancy index
## 33775                                                                               Mortality rate, female adult (per 1,000 people)
## 33776                                                                                Mortality rate, infant (per 1,000 live births)
## 33777                                                                                 Mortality rate, male adult (per 1,000 people)
## 33778                                                                            Mortality rate, under-five (per 1,000 live births)
## 33790                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 33791                                                                                                                  Income index
## 33817                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 33824                                                                                                Exports and imports (% of GDP)
## 33829                                                                             Employment in agriculture (% of total employment)
## 33830                                                                                Employment in services (% of total employment)
## 33831                                                                          Employment to population ratio (% ages 15 and older)
## 33835                                                                                       Unemployment, total (% of labour force)
## 33836                                                                                            Unemployment, youth (% ages 15–24)
## 33837                                                                                 Vulnerable employment (% of total employment)
## 33839                                                                                                 Human Development Index (HDI)
## 33841                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 33842                                                                                              Population ages 15–64 (millions)
## 33843                                                                                       Population ages 65 and older (millions)
## 33844                                                                                             Population under age 5 (millions)
## 33846                                                                                                   Total population (millions)
## 33847                                                                                                          Urban population (%)
## 33848                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 33849                                                                                                               Education index
## 33850                                                                                           Expected years of schooling (years)
## 33851                                                                                   Expected years of schooling, female (years)
## 33852                                                                                     Expected years of schooling, male (years)
## 33859                                                                                               Mean years of schooling (years)
## 33860                                                                                       Mean years of schooling, female (years)
## 33861                                                                                         Mean years of schooling, male (years)
## 33863                                               Population with at least some secondary education, female (% ages 25 and older)
## 33864                                                 Population with at least some secondary education, male (% ages 25 and older)
## 33891                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 33893                                                                                Total unemployment rate (female to male ratio)
## 33897                                                                                Youth unemployment rate (female to male ratio)
## 33900                                                                                          HIV prevalence, adult (% ages 15-49)
## 33901                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 33902                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 33903                                                                                              Life expectancy at birth (years)
## 33904                                                                                      Life expectancy at birth, female (years)
## 33905                                                                                        Life expectancy at birth, male (years)
## 33906                                                                                                         Life expectancy index
## 33908                                                                               Mortality rate, female adult (per 1,000 people)
## 33909                                                                                Mortality rate, infant (per 1,000 live births)
## 33910                                                                                 Mortality rate, male adult (per 1,000 people)
## 33911                                                                            Mortality rate, under-five (per 1,000 live births)
## 33924                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 33925                                                                                                                  Income index
## 33956                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 33968                                                                                                Exports and imports (% of GDP)
## 33969                                                                             Foreign direct investment, net inflows (% of GDP)
## 33970                                                                       Net official development assistance received (% of GNI)
## 33971                                                                                              Private capital flows (% of GDP)
## 33974                                                                             Employment in agriculture (% of total employment)
## 33975                                                                                Employment in services (% of total employment)
## 33976                                                                          Employment to population ratio (% ages 15 and older)
## 33981                                                                                       Unemployment, total (% of labour force)
## 33982                                                                                            Unemployment, youth (% ages 15–24)
## 33983                                                                                 Vulnerable employment (% of total employment)
## 33986                                                                                                 Human Development Index (HDI)
## 33988                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 33989                                                                                              Population ages 15–64 (millions)
## 33990                                                                                       Population ages 65 and older (millions)
## 33991                                                                                             Population under age 5 (millions)
## 33993                                                                                                   Total population (millions)
## 33994                                                                                                          Urban population (%)
## 33995                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 33996                                                                                                               Education index
## 33997                                                                                           Expected years of schooling (years)
## 33998                                                                                   Expected years of schooling, female (years)
## 33999                                                                                     Expected years of schooling, male (years)
## 34006                                                                                               Mean years of schooling (years)
## 34007                                                                                       Mean years of schooling, female (years)
## 34008                                                                                         Mean years of schooling, male (years)
## 34010                                               Population with at least some secondary education, female (% ages 25 and older)
## 34011                                                 Population with at least some secondary education, male (% ages 25 and older)
## 34041                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 34043                                                                                Total unemployment rate (female to male ratio)
## 34048                                                                                Youth unemployment rate (female to male ratio)
## 34050                                                                                          HIV prevalence, adult (% ages 15-49)
## 34053                                                                                              Life expectancy at birth (years)
## 34054                                                                                      Life expectancy at birth, female (years)
## 34055                                                                                        Life expectancy at birth, male (years)
## 34056                                                                                                         Life expectancy index
## 34057                                                                               Mortality rate, female adult (per 1,000 people)
## 34058                                                                                Mortality rate, infant (per 1,000 live births)
## 34059                                                                                 Mortality rate, male adult (per 1,000 people)
## 34060                                                                            Mortality rate, under-five (per 1,000 live births)
## 34073                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 34074                                                                                                                  Income index
## 34106                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 34119                                                                                                Exports and imports (% of GDP)
## 34125                                                                             Employment in agriculture (% of total employment)
## 34126                                                                                Employment in services (% of total employment)
## 34127                                                                          Employment to population ratio (% ages 15 and older)
## 34132                                                                                       Unemployment, total (% of labour force)
## 34133                                                                                            Unemployment, youth (% ages 15–24)
## 34134                                                                                 Vulnerable employment (% of total employment)
## 34137                                                                                                 Human Development Index (HDI)
## 34139                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 34140                                                                                              Population ages 15–64 (millions)
## 34141                                                                                       Population ages 65 and older (millions)
## 34142                                                                                             Population under age 5 (millions)
## 34144                                                                                                   Total population (millions)
## 34145                                                                                                          Urban population (%)
## 34146                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 34147                                                                                                               Education index
## 34148                                                                                           Expected years of schooling (years)
## 34149                                                                                   Expected years of schooling, female (years)
## 34150                                                                                     Expected years of schooling, male (years)
## 34156                                                                                               Mean years of schooling (years)
## 34157                                                                                       Mean years of schooling, female (years)
## 34158                                                                                         Mean years of schooling, male (years)
## 34160                                               Population with at least some secondary education, female (% ages 25 and older)
## 34161                                                 Population with at least some secondary education, male (% ages 25 and older)
## 34189                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 34191                                                                                Total unemployment rate (female to male ratio)
## 34195                                                                                Youth unemployment rate (female to male ratio)
## 34197                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 34198                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 34199                                                                                              Life expectancy at birth (years)
## 34200                                                                                      Life expectancy at birth, female (years)
## 34201                                                                                        Life expectancy at birth, male (years)
## 34202                                                                                                         Life expectancy index
## 34203                                                                               Mortality rate, female adult (per 1,000 people)
## 34204                                                                                Mortality rate, infant (per 1,000 live births)
## 34205                                                                                 Mortality rate, male adult (per 1,000 people)
## 34206                                                                            Mortality rate, under-five (per 1,000 live births)
## 34219                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 34220                                                                                                                  Income index
## 34250                                                                                                Exports and imports (% of GDP)
## 34251                                                                             Foreign direct investment, net inflows (% of GDP)
## 34252                                                                                              Private capital flows (% of GDP)
## 34253                                                                                               Remittances, inflows (% of GDP)
## 34254                                                                             Employment in agriculture (% of total employment)
## 34255                                                                                Employment in services (% of total employment)
## 34256                                                                          Employment to population ratio (% ages 15 and older)
## 34261                                                                                       Unemployment, total (% of labour force)
## 34262                                                                                            Unemployment, youth (% ages 15–24)
## 34263                                                                                 Vulnerable employment (% of total employment)
## 34267                                                                                                 Human Development Index (HDI)
## 34269                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 34270                                                                                              Population ages 15–64 (millions)
## 34271                                                                                       Population ages 65 and older (millions)
## 34272                                                                                             Population under age 5 (millions)
## 34274                                                                                                   Total population (millions)
## 34275                                                                                                          Urban population (%)
## 34276                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 34277                                                                                                               Education index
## 34278                                                                                           Expected years of schooling (years)
## 34287                                                                                               Mean years of schooling (years)
## 34288                                                                                       Mean years of schooling, female (years)
## 34289                                                                                         Mean years of schooling, male (years)
## 34291                                               Population with at least some secondary education, female (% ages 25 and older)
## 34292                                                 Population with at least some secondary education, male (% ages 25 and older)
## 34326                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 34328                                                                                Total unemployment rate (female to male ratio)
## 34330                                                                                Youth unemployment rate (female to male ratio)
## 34333                                                                                          HIV prevalence, adult (% ages 15-49)
## 34334                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 34335                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 34336                                                                                              Life expectancy at birth (years)
## 34337                                                                                      Life expectancy at birth, female (years)
## 34338                                                                                        Life expectancy at birth, male (years)
## 34339                                                                                                         Life expectancy index
## 34340                                                                               Mortality rate, female adult (per 1,000 people)
## 34341                                                                                Mortality rate, infant (per 1,000 live births)
## 34342                                                                                 Mortality rate, male adult (per 1,000 people)
## 34343                                                                            Mortality rate, under-five (per 1,000 live births)
## 34356                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 34357                                                                                                                  Income index
## 34375                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 34386                                                                                                Exports and imports (% of GDP)
## 34387                                                                             Foreign direct investment, net inflows (% of GDP)
## 34388                                                                       Net official development assistance received (% of GNI)
## 34389                                                                                              Private capital flows (% of GDP)
## 34391                                                                             Employment in agriculture (% of total employment)
## 34392                                                                                Employment in services (% of total employment)
## 34393                                                                          Employment to population ratio (% ages 15 and older)
## 34398                                                                                       Unemployment, total (% of labour force)
## 34399                                                                                            Unemployment, youth (% ages 15–24)
## 34400                                                                                 Vulnerable employment (% of total employment)
## 34405                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 34406                                                                                              Population ages 15–64 (millions)
## 34407                                                                                       Population ages 65 and older (millions)
## 34408                                                                                             Population under age 5 (millions)
## 34410                                                                                                   Total population (millions)
## 34411                                                                                                          Urban population (%)
## 34412                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 34414                                                                                           Expected years of schooling (years)
## 34455                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 34457                                                                                Total unemployment rate (female to male ratio)
## 34459                                                                                Youth unemployment rate (female to male ratio)
## 34464                                                                                              Life expectancy at birth (years)
## 34465                                                                                      Life expectancy at birth, female (years)
## 34466                                                                                        Life expectancy at birth, male (years)
## 34467                                                                                                         Life expectancy index
## 34469                                                                               Mortality rate, female adult (per 1,000 people)
## 34470                                                                                Mortality rate, infant (per 1,000 live births)
## 34471                                                                                 Mortality rate, male adult (per 1,000 people)
## 34472                                                                            Mortality rate, under-five (per 1,000 live births)
## 34484                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 34485                                                                                                                  Income index
## 34512                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 34519                                                                                                Exports and imports (% of GDP)
## 34523                                                                             Employment in agriculture (% of total employment)
## 34524                                                                                Employment in services (% of total employment)
## 34525                                                                          Employment to population ratio (% ages 15 and older)
## 34530                                                                                       Unemployment, total (% of labour force)
## 34531                                                                                            Unemployment, youth (% ages 15–24)
## 34532                                                                                 Vulnerable employment (% of total employment)
## 34536                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 34537                                                                                              Population ages 15–64 (millions)
## 34538                                                                                       Population ages 65 and older (millions)
## 34539                                                                                             Population under age 5 (millions)
## 34541                                                                                                   Total population (millions)
## 34542                                                                                                          Urban population (%)
## 34543                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 34576                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 34578                                                                                Total unemployment rate (female to male ratio)
## 34582                                                                                Youth unemployment rate (female to male ratio)
## 34585                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 34586                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 34587                                                                                              Life expectancy at birth (years)
## 34588                                                                                      Life expectancy at birth, female (years)
## 34589                                                                                        Life expectancy at birth, male (years)
## 34590                                                                                                         Life expectancy index
## 34592                                                                               Mortality rate, female adult (per 1,000 people)
## 34593                                                                                Mortality rate, infant (per 1,000 live births)
## 34594                                                                                 Mortality rate, male adult (per 1,000 people)
## 34595                                                                            Mortality rate, under-five (per 1,000 live births)
## 34608                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 34609                                                                                                                  Income index
## 34646                                                                                                Exports and imports (% of GDP)
## 34647                                                                             Foreign direct investment, net inflows (% of GDP)
## 34648                                                                       Net official development assistance received (% of GNI)
## 34649                                                                                              Private capital flows (% of GDP)
## 34650                                                                                               Remittances, inflows (% of GDP)
## 34651                                                                             Employment in agriculture (% of total employment)
## 34652                                                                                Employment in services (% of total employment)
## 34653                                                                          Employment to population ratio (% ages 15 and older)
## 34658                                                                                       Unemployment, total (% of labour force)
## 34659                                                                                            Unemployment, youth (% ages 15–24)
## 34660                                                                                 Vulnerable employment (% of total employment)
## 34662                                                                                                 Human Development Index (HDI)
## 34664                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 34665                                                                                              Population ages 15–64 (millions)
## 34666                                                                                       Population ages 65 and older (millions)
## 34667                                                                                             Population under age 5 (millions)
## 34669                                                                                                   Total population (millions)
## 34670                                                                                                          Urban population (%)
## 34671                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 34672                                                                                                               Education index
## 34673                                                                                           Expected years of schooling (years)
## 34682                                                                                               Mean years of schooling (years)
## 34683                                                                                       Mean years of schooling, female (years)
## 34684                                                                                         Mean years of schooling, male (years)
## 34686                                               Population with at least some secondary education, female (% ages 25 and older)
## 34687                                                 Population with at least some secondary education, male (% ages 25 and older)
## 34713                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 34715                                                                                Total unemployment rate (female to male ratio)
## 34717                                                                                Youth unemployment rate (female to male ratio)
## 34720                                                                                          HIV prevalence, adult (% ages 15-49)
## 34721                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 34722                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 34723                                                                                              Life expectancy at birth (years)
## 34724                                                                                      Life expectancy at birth, female (years)
## 34725                                                                                        Life expectancy at birth, male (years)
## 34726                                                                                                         Life expectancy index
## 34728                                                                               Mortality rate, female adult (per 1,000 people)
## 34729                                                                                Mortality rate, infant (per 1,000 live births)
## 34730                                                                                 Mortality rate, male adult (per 1,000 people)
## 34731                                                                            Mortality rate, under-five (per 1,000 live births)
## 34744                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 34745                                                                                                                  Income index
## 34763                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 34774                                                                                                Exports and imports (% of GDP)
## 34775                                                                             Foreign direct investment, net inflows (% of GDP)
## 34776                                                                       Net official development assistance received (% of GNI)
## 34777                                                                                              Private capital flows (% of GDP)
## 34778                                                                                               Remittances, inflows (% of GDP)
## 34779                                                                             Employment in agriculture (% of total employment)
## 34780                                                                                Employment in services (% of total employment)
## 34781                                                                          Employment to population ratio (% ages 15 and older)
## 34786                                                                                       Unemployment, total (% of labour force)
## 34787                                                                                            Unemployment, youth (% ages 15–24)
## 34788                                                                                 Vulnerable employment (% of total employment)
## 34791                                                                                                 Human Development Index (HDI)
## 34793                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 34794                                                                                              Population ages 15–64 (millions)
## 34795                                                                                       Population ages 65 and older (millions)
## 34796                                                                                             Population under age 5 (millions)
## 34798                                                                                                   Total population (millions)
## 34799                                                                                                          Urban population (%)
## 34800                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 34801                                                                                                               Education index
## 34802                                                                                           Expected years of schooling (years)
## 34810                                                                                               Mean years of schooling (years)
## 34811                                                                                       Mean years of schooling, female (years)
## 34812                                                                                         Mean years of schooling, male (years)
## 34814                                               Population with at least some secondary education, female (% ages 25 and older)
## 34815                                                 Population with at least some secondary education, male (% ages 25 and older)
## 34842                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 34844                                                                                Total unemployment rate (female to male ratio)
## 34847                                                                                Youth unemployment rate (female to male ratio)
## 34850                                                                                          HIV prevalence, adult (% ages 15-49)
## 34851                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 34852                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 34853                                                                                              Life expectancy at birth (years)
## 34854                                                                                      Life expectancy at birth, female (years)
## 34855                                                                                        Life expectancy at birth, male (years)
## 34856                                                                                                         Life expectancy index
## 34858                                                                               Mortality rate, female adult (per 1,000 people)
## 34859                                                                                Mortality rate, infant (per 1,000 live births)
## 34860                                                                                 Mortality rate, male adult (per 1,000 people)
## 34861                                                                            Mortality rate, under-five (per 1,000 live births)
## 34874                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 34875                                                                                                                  Income index
## 34906                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 34918                                                                                                Exports and imports (% of GDP)
## 34919                                                                             Foreign direct investment, net inflows (% of GDP)
## 34920                                                                       Net official development assistance received (% of GNI)
## 34922                                                                                               Remittances, inflows (% of GDP)
## 34923                                                                             Employment in agriculture (% of total employment)
## 34924                                                                                Employment in services (% of total employment)
## 34925                                                                          Employment to population ratio (% ages 15 and older)
## 34930                                                                                       Unemployment, total (% of labour force)
## 34931                                                                                            Unemployment, youth (% ages 15–24)
## 34932                                                                                 Vulnerable employment (% of total employment)
## 34935                                                                                                 Human Development Index (HDI)
## 34937                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 34938                                                                                              Population ages 15–64 (millions)
## 34939                                                                                       Population ages 65 and older (millions)
## 34940                                                                                             Population under age 5 (millions)
## 34942                                                                                                   Total population (millions)
## 34943                                                                                                          Urban population (%)
## 34944                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 34945                                                                                                               Education index
## 34946                                                                                           Expected years of schooling (years)
## 34954                                                                                               Mean years of schooling (years)
## 34955                                                                                       Mean years of schooling, female (years)
## 34956                                                                                         Mean years of schooling, male (years)
## 34958                                               Population with at least some secondary education, female (% ages 25 and older)
## 34959                                                 Population with at least some secondary education, male (% ages 25 and older)
## 34987                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 34989                                                                                Total unemployment rate (female to male ratio)
## 34993                                                                                Youth unemployment rate (female to male ratio)
## 34996                                                                                          HIV prevalence, adult (% ages 15-49)
## 34997                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 34998                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 34999                                                                                              Life expectancy at birth (years)
## 35000                                                                                      Life expectancy at birth, female (years)
## 35001                                                                                        Life expectancy at birth, male (years)
## 35002                                                                                                         Life expectancy index
## 35004                                                                               Mortality rate, female adult (per 1,000 people)
## 35005                                                                                Mortality rate, infant (per 1,000 live births)
## 35006                                                                                 Mortality rate, male adult (per 1,000 people)
## 35007                                                                            Mortality rate, under-five (per 1,000 live births)
## 35020                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 35021                                                                                                                  Income index
## 35051                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 35064                                                                             Foreign direct investment, net inflows (% of GDP)
## 35065                                                                       Net official development assistance received (% of GNI)
## 35066                                                                                              Private capital flows (% of GDP)
## 35068                                                                             Employment in agriculture (% of total employment)
## 35069                                                                                Employment in services (% of total employment)
## 35070                                                                          Employment to population ratio (% ages 15 and older)
## 35075                                                                                       Unemployment, total (% of labour force)
## 35076                                                                                            Unemployment, youth (% ages 15–24)
## 35077                                                                                 Vulnerable employment (% of total employment)
## 35080                                                                                                 Human Development Index (HDI)
## 35082                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 35083                                                                                              Population ages 15–64 (millions)
## 35084                                                                                       Population ages 65 and older (millions)
## 35085                                                                                             Population under age 5 (millions)
## 35087                                                                                                   Total population (millions)
## 35088                                                                                                          Urban population (%)
## 35089                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 35090                                                                                                               Education index
## 35091                                                                                           Expected years of schooling (years)
## 35092                                                                                   Expected years of schooling, female (years)
## 35093                                                                                     Expected years of schooling, male (years)
## 35100                                                                                               Mean years of schooling (years)
## 35101                                                                                       Mean years of schooling, female (years)
## 35102                                                                                         Mean years of schooling, male (years)
## 35104                                               Population with at least some secondary education, female (% ages 25 and older)
## 35105                                                 Population with at least some secondary education, male (% ages 25 and older)
## 35134                                       Share of employment in nonagriculture, female (% of total employment in nonagriculture)
## 35136                                                                                Total unemployment rate (female to male ratio)
## 35140                                                                                Youth unemployment rate (female to male ratio)
## 35143                                                                                          HIV prevalence, adult (% ages 15-49)
## 35144                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 35145                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 35146                                                                                              Life expectancy at birth (years)
## 35147                                                                                      Life expectancy at birth, female (years)
## 35148                                                                                        Life expectancy at birth, male (years)
## 35149                                                                                                         Life expectancy index
## 35151                                                                               Mortality rate, female adult (per 1,000 people)
## 35152                                                                                Mortality rate, infant (per 1,000 live births)
## 35153                                                                                 Mortality rate, male adult (per 1,000 people)
## 35154                                                                            Mortality rate, under-five (per 1,000 live births)
## 35167                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 35168                                                                                                                  Income index
## 35200                                                                        Working poor at PPP$3.10 a day (% of total employment)
## 35210                                                                                                Exports and imports (% of GDP)
## 35211                                                                             Foreign direct investment, net inflows (% of GDP)
## 35212                                                                       Net official development assistance received (% of GNI)
## 35213                                                                                              Private capital flows (% of GDP)
## 35214                                                                                               Remittances, inflows (% of GDP)
## 35215                                                                             Employment in agriculture (% of total employment)
## 35216                                                                                Employment in services (% of total employment)
## 35217                                                                          Employment to population ratio (% ages 15 and older)
## 35222                                                                                       Unemployment, total (% of labour force)
## 35223                                                                                            Unemployment, youth (% ages 15–24)
## 35224                                                                                 Vulnerable employment (% of total employment)
## 35227                                                                                                 Human Development Index (HDI)
## 35229                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 35230                                                                                              Population ages 15–64 (millions)
## 35231                                                                                       Population ages 65 and older (millions)
## 35232                                                                                             Population under age 5 (millions)
## 35234                                                                                                   Total population (millions)
## 35235                                                                                                          Urban population (%)
## 35236                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 35237                                                                                                               Education index
## 35238                                                                                           Expected years of schooling (years)
## 35239                                                                                   Expected years of schooling, female (years)
## 35240                                                                                     Expected years of schooling, male (years)
## 35247                                                                                               Mean years of schooling (years)
## 35248                                                                                       Mean years of schooling, female (years)
## 35249                                                                                         Mean years of schooling, male (years)
## 35251                                               Population with at least some secondary education, female (% ages 25 and older)
## 35252                                                 Population with at least some secondary education, male (% ages 25 and older)
## 35294                                                                                          HIV prevalence, adult (% ages 15-49)
## 35295                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 35296                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 35297                                                                                              Life expectancy at birth (years)
## 35298                                                                                      Life expectancy at birth, female (years)
## 35299                                                                                        Life expectancy at birth, male (years)
## 35300                                                                                                         Life expectancy index
## 35301                                                                               Mortality rate, female adult (per 1,000 people)
## 35302                                                                                Mortality rate, infant (per 1,000 live births)
## 35303                                                                                 Mortality rate, male adult (per 1,000 people)
## 35304                                                                            Mortality rate, under-five (per 1,000 live births)
## 35317                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 35318                                                                                                                  Income index
## 35362                                                                                                Exports and imports (% of GDP)
## 35363                                                                             Foreign direct investment, net inflows (% of GDP)
## 35364                                                                       Net official development assistance received (% of GNI)
## 35365                                                                                              Private capital flows (% of GDP)
## 35366                                                                                               Remittances, inflows (% of GDP)
## 35380                                                                                                 Human Development Index (HDI)
## 35382                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 35383                                                                                              Population ages 15–64 (millions)
## 35384                                                                                       Population ages 65 and older (millions)
## 35385                                                                                             Population under age 5 (millions)
## 35387                                                                                                   Total population (millions)
## 35388                                                                                                          Urban population (%)
## 35389                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 35390                                                                                                               Education index
## 35391                                                                                           Expected years of schooling (years)
## 35400                                                                                               Mean years of schooling (years)
## 35401                                                                                       Mean years of schooling, female (years)
## 35402                                                                                         Mean years of schooling, male (years)
## 35404                                               Population with at least some secondary education, female (% ages 25 and older)
## 35405                                                 Population with at least some secondary education, male (% ages 25 and older)
## 35447                                                                                          HIV prevalence, adult (% ages 15-49)
## 35448                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 35449                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 35450                                                                                              Life expectancy at birth (years)
## 35451                                                                                      Life expectancy at birth, female (years)
## 35452                                                                                        Life expectancy at birth, male (years)
## 35453                                                                                                         Life expectancy index
## 35455                                                                               Mortality rate, female adult (per 1,000 people)
## 35456                                                                                Mortality rate, infant (per 1,000 live births)
## 35457                                                                                 Mortality rate, male adult (per 1,000 people)
## 35458                                                                            Mortality rate, under-five (per 1,000 live births)
## 35471                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 35472                                                                                                                  Income index
## 35514                                                                                                Exports and imports (% of GDP)
## 35515                                                                             Foreign direct investment, net inflows (% of GDP)
## 35516                                                                       Net official development assistance received (% of GNI)
## 35518                                                                                               Remittances, inflows (% of GDP)
## 35534                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 35535                                                                                              Population ages 15–64 (millions)
## 35536                                                                                       Population ages 65 and older (millions)
## 35537                                                                                             Population under age 5 (millions)
## 35539                                                                                                   Total population (millions)
## 35540                                                                                                          Urban population (%)
## 35541                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 35543                                                                                           Expected years of schooling (years)
## 35585                                                                                          HIV prevalence, adult (% ages 15-49)
## 35586                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 35587                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 35588                                                                                              Life expectancy at birth (years)
## 35589                                                                                      Life expectancy at birth, female (years)
## 35590                                                                                        Life expectancy at birth, male (years)
## 35591                                                                                                         Life expectancy index
## 35593                                                                               Mortality rate, female adult (per 1,000 people)
## 35594                                                                                Mortality rate, infant (per 1,000 live births)
## 35595                                                                                 Mortality rate, male adult (per 1,000 people)
## 35596                                                                            Mortality rate, under-five (per 1,000 live births)
## 35609                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 35610                                                                                                                  Income index
## 35652                                                                                                Exports and imports (% of GDP)
## 35672                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 35673                                                                                              Population ages 15–64 (millions)
## 35674                                                                                       Population ages 65 and older (millions)
## 35675                                                                                             Population under age 5 (millions)
## 35677                                                                                                   Total population (millions)
## 35678                                                                                                          Urban population (%)
## 35679                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 35710                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 35711                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 35712                                                                                              Life expectancy at birth (years)
## 35713                                                                                      Life expectancy at birth, female (years)
## 35714                                                                                        Life expectancy at birth, male (years)
## 35715                                                                                                         Life expectancy index
## 35716                                                                               Mortality rate, female adult (per 1,000 people)
## 35717                                                                                Mortality rate, infant (per 1,000 live births)
## 35718                                                                                 Mortality rate, male adult (per 1,000 people)
## 35719                                                                            Mortality rate, under-five (per 1,000 live births)
## 35730                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 35731                                                                                                                  Income index
## 35743                                                                                                Exports and imports (% of GDP)
## 35744                                                                             Foreign direct investment, net inflows (% of GDP)
## 35745                                                                       Net official development assistance received (% of GNI)
## 35746                                                                                              Private capital flows (% of GDP)
## 35747                                                                                               Remittances, inflows (% of GDP)
## 35750                                                                                                 Human Development Index (HDI)
## 35752                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 35753                                                                                              Population ages 15–64 (millions)
## 35754                                                                                       Population ages 65 and older (millions)
## 35755                                                                                             Population under age 5 (millions)
## 35757                                                                                                   Total population (millions)
## 35758                                                                                                          Urban population (%)
## 35759                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 35760                                                                                                               Education index
## 35761                                                                                           Expected years of schooling (years)
## 35770                                                                                               Mean years of schooling (years)
## 35771                                                                                       Mean years of schooling, female (years)
## 35772                                                                                         Mean years of schooling, male (years)
## 35774                                               Population with at least some secondary education, female (% ages 25 and older)
## 35775                                                 Population with at least some secondary education, male (% ages 25 and older)
## 35813                                                                                          HIV prevalence, adult (% ages 15-49)
## 35814                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 35815                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 35816                                                                                              Life expectancy at birth (years)
## 35817                                                                                      Life expectancy at birth, female (years)
## 35818                                                                                        Life expectancy at birth, male (years)
## 35819                                                                                                         Life expectancy index
## 35821                                                                               Mortality rate, female adult (per 1,000 people)
## 35822                                                                                Mortality rate, infant (per 1,000 live births)
## 35823                                                                                 Mortality rate, male adult (per 1,000 people)
## 35824                                                                            Mortality rate, under-five (per 1,000 live births)
## 35837                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 35838                                                                                                                  Income index
## 35870                                                                                                Exports and imports (% of GDP)
## 35871                                                                             Foreign direct investment, net inflows (% of GDP)
## 35872                                                                       Net official development assistance received (% of GNI)
## 35873                                                                                              Private capital flows (% of GDP)
## 35874                                                                                               Remittances, inflows (% of GDP)
## 35887                                                                                                 Human Development Index (HDI)
## 35889                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 35890                                                                                              Population ages 15–64 (millions)
## 35891                                                                                       Population ages 65 and older (millions)
## 35892                                                                                             Population under age 5 (millions)
## 35894                                                                                                   Total population (millions)
## 35895                                                                                                          Urban population (%)
## 35896                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 35897                                                                                                               Education index
## 35898                                                                                           Expected years of schooling (years)
## 35907                                                                                               Mean years of schooling (years)
## 35908                                                                                       Mean years of schooling, female (years)
## 35909                                                                                         Mean years of schooling, male (years)
## 35911                                               Population with at least some secondary education, female (% ages 25 and older)
## 35912                                                 Population with at least some secondary education, male (% ages 25 and older)
## 35951                                                                                          HIV prevalence, adult (% ages 15-49)
## 35952                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 35953                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 35954                                                                                              Life expectancy at birth (years)
## 35955                                                                                      Life expectancy at birth, female (years)
## 35956                                                                                        Life expectancy at birth, male (years)
## 35957                                                                                                         Life expectancy index
## 35958                                                                               Mortality rate, female adult (per 1,000 people)
## 35959                                                                                Mortality rate, infant (per 1,000 live births)
## 35960                                                                                 Mortality rate, male adult (per 1,000 people)
## 35961                                                                            Mortality rate, under-five (per 1,000 live births)
## 35974                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 35975                                                                                                                  Income index
## 36020                                                                                                Exports and imports (% of GDP)
## 36021                                                                             Foreign direct investment, net inflows (% of GDP)
## 36022                                                                       Net official development assistance received (% of GNI)
## 36038                                                                                                 Human Development Index (HDI)
## 36040                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 36041                                                                                              Population ages 15–64 (millions)
## 36042                                                                                       Population ages 65 and older (millions)
## 36043                                                                                             Population under age 5 (millions)
## 36045                                                                                                   Total population (millions)
## 36046                                                                                                          Urban population (%)
## 36047                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 36048                                                                                                               Education index
## 36049                                                                                           Expected years of schooling (years)
## 36050                                                                                   Expected years of schooling, female (years)
## 36051                                                                                     Expected years of schooling, male (years)
## 36057                                                                                               Mean years of schooling (years)
## 36058                                                                                       Mean years of schooling, female (years)
## 36059                                                                                         Mean years of schooling, male (years)
## 36061                                               Population with at least some secondary education, female (% ages 25 and older)
## 36062                                                 Population with at least some secondary education, male (% ages 25 and older)
## 36099                                                                                          HIV prevalence, adult (% ages 15-49)
## 36100                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 36101                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 36102                                                                                              Life expectancy at birth (years)
## 36103                                                                                      Life expectancy at birth, female (years)
## 36104                                                                                        Life expectancy at birth, male (years)
## 36105                                                                                                         Life expectancy index
## 36106                                                                               Mortality rate, female adult (per 1,000 people)
## 36107                                                                                Mortality rate, infant (per 1,000 live births)
## 36108                                                                                 Mortality rate, male adult (per 1,000 people)
## 36109                                                                            Mortality rate, under-five (per 1,000 live births)
## 36122                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 36123                                                                                                                  Income index
## 36153                                                                                                Exports and imports (% of GDP)
## 36154                                                                             Foreign direct investment, net inflows (% of GDP)
## 36155                                                                                              Private capital flows (% of GDP)
## 36156                                                                                               Remittances, inflows (% of GDP)
## 36169                                                                                                 Human Development Index (HDI)
## 36171                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 36172                                                                                              Population ages 15–64 (millions)
## 36173                                                                                       Population ages 65 and older (millions)
## 36174                                                                                             Population under age 5 (millions)
## 36176                                                                                                   Total population (millions)
## 36177                                                                                                          Urban population (%)
## 36178                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 36179                                                                                                               Education index
## 36180                                                                                           Expected years of schooling (years)
## 36181                                                                                   Expected years of schooling, female (years)
## 36182                                                                                     Expected years of schooling, male (years)
## 36188                                                                                               Mean years of schooling (years)
## 36189                                                                                       Mean years of schooling, female (years)
## 36190                                                                                         Mean years of schooling, male (years)
## 36192                                               Population with at least some secondary education, female (% ages 25 and older)
## 36193                                                 Population with at least some secondary education, male (% ages 25 and older)
## 36232                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 36233                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 36234                                                                                              Life expectancy at birth (years)
## 36235                                                                                      Life expectancy at birth, female (years)
## 36236                                                                                        Life expectancy at birth, male (years)
## 36237                                                                                                         Life expectancy index
## 36238                                                                               Mortality rate, female adult (per 1,000 people)
## 36239                                                                                Mortality rate, infant (per 1,000 live births)
## 36240                                                                                 Mortality rate, male adult (per 1,000 people)
## 36241                                                                            Mortality rate, under-five (per 1,000 live births)
## 36254                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 36255                                                                                                                  Income index
## 36285                                                                                                Exports and imports (% of GDP)
## 36286                                                                             Foreign direct investment, net inflows (% of GDP)
## 36288                                                                                               Remittances, inflows (% of GDP)
## 36303                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 36304                                                                                              Population ages 15–64 (millions)
## 36305                                                                                       Population ages 65 and older (millions)
## 36306                                                                                             Population under age 5 (millions)
## 36308                                                                                                   Total population (millions)
## 36309                                                                                                          Urban population (%)
## 36310                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 36312                                                                                           Expected years of schooling (years)
## 36313                                                                                   Expected years of schooling, female (years)
## 36314                                                                                     Expected years of schooling, male (years)
## 36365                                                                                          HIV prevalence, adult (% ages 15-49)
## 36366                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 36367                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 36368                                                                                              Life expectancy at birth (years)
## 36369                                                                                      Life expectancy at birth, female (years)
## 36370                                                                                        Life expectancy at birth, male (years)
## 36371                                                                                                         Life expectancy index
## 36373                                                                               Mortality rate, female adult (per 1,000 people)
## 36374                                                                                Mortality rate, infant (per 1,000 live births)
## 36375                                                                                 Mortality rate, male adult (per 1,000 people)
## 36376                                                                            Mortality rate, under-five (per 1,000 live births)
## 36434                                                                                                Exports and imports (% of GDP)
## 36452                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 36453                                                                                              Population ages 15–64 (millions)
## 36454                                                                                       Population ages 65 and older (millions)
## 36455                                                                                             Population under age 5 (millions)
## 36457                                                                                                   Total population (millions)
## 36458                                                                                                          Urban population (%)
## 36459                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 36461                                                                                           Expected years of schooling (years)
## 36462                                                                                   Expected years of schooling, female (years)
## 36463                                                                                     Expected years of schooling, male (years)
## 36504                                                                                          HIV prevalence, adult (% ages 15-49)
## 36505                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 36506                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 36507                                                                                              Life expectancy at birth (years)
## 36508                                                                                      Life expectancy at birth, female (years)
## 36509                                                                                        Life expectancy at birth, male (years)
## 36510                                                                                                         Life expectancy index
## 36511                                                                               Mortality rate, female adult (per 1,000 people)
## 36512                                                                                Mortality rate, infant (per 1,000 live births)
## 36513                                                                                 Mortality rate, male adult (per 1,000 people)
## 36514                                                                            Mortality rate, under-five (per 1,000 live births)
## 36526                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 36527                                                                                                                  Income index
## 36549                                                                                                Exports and imports (% of GDP)
## 36550                                                                             Foreign direct investment, net inflows (% of GDP)
## 36551                                                                       Net official development assistance received (% of GNI)
## 36564                                                                                                 Human Development Index (HDI)
## 36566                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 36567                                                                                              Population ages 15–64 (millions)
## 36568                                                                                       Population ages 65 and older (millions)
## 36569                                                                                             Population under age 5 (millions)
## 36571                                                                                                   Total population (millions)
## 36572                                                                                                          Urban population (%)
## 36573                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 36574                                                                                                               Education index
## 36575                                                                                           Expected years of schooling (years)
## 36576                                                                                   Expected years of schooling, female (years)
## 36577                                                                                     Expected years of schooling, male (years)
## 36584                                                                                               Mean years of schooling (years)
## 36585                                                                                       Mean years of schooling, female (years)
## 36586                                                                                         Mean years of schooling, male (years)
## 36588                                               Population with at least some secondary education, female (% ages 25 and older)
## 36589                                                 Population with at least some secondary education, male (% ages 25 and older)
## 36628                                                                                          HIV prevalence, adult (% ages 15-49)
## 36629                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 36630                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 36631                                                                                              Life expectancy at birth (years)
## 36632                                                                                      Life expectancy at birth, female (years)
## 36633                                                                                        Life expectancy at birth, male (years)
## 36634                                                                                                         Life expectancy index
## 36636                                                                               Mortality rate, female adult (per 1,000 people)
## 36637                                                                                Mortality rate, infant (per 1,000 live births)
## 36638                                                                                 Mortality rate, male adult (per 1,000 people)
## 36639                                                                            Mortality rate, under-five (per 1,000 live births)
## 36652                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 36653                                                                                                                  Income index
## 36697                                                                                                Exports and imports (% of GDP)
## 36698                                                                             Foreign direct investment, net inflows (% of GDP)
## 36699                                                                       Net official development assistance received (% of GNI)
## 36700                                                                                              Private capital flows (% of GDP)
## 36701                                                                                               Remittances, inflows (% of GDP)
## 36714                                                                                                 Human Development Index (HDI)
## 36716                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 36717                                                                                              Population ages 15–64 (millions)
## 36718                                                                                       Population ages 65 and older (millions)
## 36719                                                                                             Population under age 5 (millions)
## 36721                                                                                                   Total population (millions)
## 36722                                                                                                          Urban population (%)
## 36723                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 36724                                                                                                               Education index
## 36725                                                                                           Expected years of schooling (years)
## 36726                                                                                   Expected years of schooling, female (years)
## 36727                                                                                     Expected years of schooling, male (years)
## 36733                                                                                               Mean years of schooling (years)
## 36734                                                                                       Mean years of schooling, female (years)
## 36735                                                                                         Mean years of schooling, male (years)
## 36737                                               Population with at least some secondary education, female (% ages 25 and older)
## 36738                                                 Population with at least some secondary education, male (% ages 25 and older)
## 36774                                                                                          HIV prevalence, adult (% ages 15-49)
## 36775                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 36776                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 36777                                                                                              Life expectancy at birth (years)
## 36778                                                                                      Life expectancy at birth, female (years)
## 36779                                                                                        Life expectancy at birth, male (years)
## 36780                                                                                                         Life expectancy index
## 36781                                                                               Mortality rate, female adult (per 1,000 people)
## 36782                                                                                Mortality rate, infant (per 1,000 live births)
## 36783                                                                                 Mortality rate, male adult (per 1,000 people)
## 36784                                                                            Mortality rate, under-five (per 1,000 live births)
## 36797                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 36798                                                                                                                  Income index
## 36831                                                                                                Exports and imports (% of GDP)
## 36832                                                                             Foreign direct investment, net inflows (% of GDP)
## 36833                                                                       Net official development assistance received (% of GNI)
## 36834                                                                                              Private capital flows (% of GDP)
## 36835                                                                                               Remittances, inflows (% of GDP)
## 36850                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 36851                                                                                              Population ages 15–64 (millions)
## 36852                                                                                       Population ages 65 and older (millions)
## 36853                                                                                             Population under age 5 (millions)
## 36855                                                                                                   Total population (millions)
## 36856                                                                                                          Urban population (%)
## 36857                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 36859                                                                                           Expected years of schooling (years)
## 36911                                                                                          HIV prevalence, adult (% ages 15-49)
## 36912                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 36913                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 36914                                                                                              Life expectancy at birth (years)
## 36915                                                                                      Life expectancy at birth, female (years)
## 36916                                                                                        Life expectancy at birth, male (years)
## 36917                                                                                                         Life expectancy index
## 36918                                                                               Mortality rate, female adult (per 1,000 people)
## 36919                                                                                Mortality rate, infant (per 1,000 live births)
## 36920                                                                                 Mortality rate, male adult (per 1,000 people)
## 36921                                                                            Mortality rate, under-five (per 1,000 live births)
## 36934                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 36935                                                                                                                  Income index
## 36967                                                                                                Exports and imports (% of GDP)
## 36985                                                                                                 Human Development Index (HDI)
## 36987                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 36988                                                                                              Population ages 15–64 (millions)
## 36989                                                                                       Population ages 65 and older (millions)
## 36990                                                                                             Population under age 5 (millions)
## 36992                                                                                                   Total population (millions)
## 36993                                                                                                          Urban population (%)
## 36994                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 36995                                                                                                               Education index
## 36996                                                                                           Expected years of schooling (years)
## 37004                                                                                               Mean years of schooling (years)
## 37005                                                                                       Mean years of schooling, female (years)
## 37006                                                                                         Mean years of schooling, male (years)
## 37008                                               Population with at least some secondary education, female (% ages 25 and older)
## 37009                                                 Population with at least some secondary education, male (% ages 25 and older)
## 37047                                                                                          HIV prevalence, adult (% ages 15-49)
## 37048                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 37049                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 37050                                                                                              Life expectancy at birth (years)
## 37051                                                                                      Life expectancy at birth, female (years)
## 37052                                                                                        Life expectancy at birth, male (years)
## 37053                                                                                                         Life expectancy index
## 37055                                                                               Mortality rate, female adult (per 1,000 people)
## 37056                                                                                Mortality rate, infant (per 1,000 live births)
## 37057                                                                                 Mortality rate, male adult (per 1,000 people)
## 37058                                                                            Mortality rate, under-five (per 1,000 live births)
## 37071                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 37072                                                                                                                  Income index
## 37108                                                                                                Exports and imports (% of GDP)
## 37109                                                                             Foreign direct investment, net inflows (% of GDP)
## 37110                                                                       Net official development assistance received (% of GNI)
## 37111                                                                                              Private capital flows (% of GDP)
## 37112                                                                                               Remittances, inflows (% of GDP)
## 37126                                                                                                 Human Development Index (HDI)
## 37128                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 37129                                                                                              Population ages 15–64 (millions)
## 37130                                                                                       Population ages 65 and older (millions)
## 37131                                                                                             Population under age 5 (millions)
## 37133                                                                                                   Total population (millions)
## 37134                                                                                                          Urban population (%)
## 37135                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 37136                                                                                                               Education index
## 37137                                                                                           Expected years of schooling (years)
## 37146                                                                                               Mean years of schooling (years)
## 37147                                                                                       Mean years of schooling, female (years)
## 37148                                                                                         Mean years of schooling, male (years)
## 37150                                               Population with at least some secondary education, female (% ages 25 and older)
## 37151                                                 Population with at least some secondary education, male (% ages 25 and older)
## 37188                                                                                          HIV prevalence, adult (% ages 15-49)
## 37189                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 37190                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 37191                                                                                              Life expectancy at birth (years)
## 37192                                                                                      Life expectancy at birth, female (years)
## 37193                                                                                        Life expectancy at birth, male (years)
## 37194                                                                                                         Life expectancy index
## 37196                                                                               Mortality rate, female adult (per 1,000 people)
## 37197                                                                                Mortality rate, infant (per 1,000 live births)
## 37198                                                                                 Mortality rate, male adult (per 1,000 people)
## 37199                                                                            Mortality rate, under-five (per 1,000 live births)
## 37212                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 37213                                                                                                                  Income index
## 37256                                                                                                Exports and imports (% of GDP)
## 37257                                                                             Foreign direct investment, net inflows (% of GDP)
## 37258                                                                       Net official development assistance received (% of GNI)
## 37259                                                                                              Private capital flows (% of GDP)
## 37260                                                                                               Remittances, inflows (% of GDP)
## 37276                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 37277                                                                                              Population ages 15–64 (millions)
## 37278                                                                                       Population ages 65 and older (millions)
## 37279                                                                                             Population under age 5 (millions)
## 37281                                                                                                   Total population (millions)
## 37282                                                                                                          Urban population (%)
## 37283                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 37285                                                                                           Expected years of schooling (years)
## 37338                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 37339                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 37340                                                                                              Life expectancy at birth (years)
## 37341                                                                                      Life expectancy at birth, female (years)
## 37342                                                                                        Life expectancy at birth, male (years)
## 37343                                                                                                         Life expectancy index
## 37345                                                                               Mortality rate, female adult (per 1,000 people)
## 37346                                                                                Mortality rate, infant (per 1,000 live births)
## 37347                                                                                 Mortality rate, male adult (per 1,000 people)
## 37348                                                                            Mortality rate, under-five (per 1,000 live births)
## 37361                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 37362                                                                                                                  Income index
## 37403                                                                                                Exports and imports (% of GDP)
## 37404                                                                             Foreign direct investment, net inflows (% of GDP)
## 37405                                                                       Net official development assistance received (% of GNI)
## 37420                                                                                                 Human Development Index (HDI)
## 37422                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 37423                                                                                              Population ages 15–64 (millions)
## 37424                                                                                       Population ages 65 and older (millions)
## 37425                                                                                             Population under age 5 (millions)
## 37427                                                                                                   Total population (millions)
## 37428                                                                                                          Urban population (%)
## 37429                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 37430                                                                                                               Education index
## 37431                                                                                           Expected years of schooling (years)
## 37439                                                                                               Mean years of schooling (years)
## 37440                                                                                       Mean years of schooling, female (years)
## 37441                                                                                         Mean years of schooling, male (years)
## 37443                                               Population with at least some secondary education, female (% ages 25 and older)
## 37444                                                 Population with at least some secondary education, male (% ages 25 and older)
## 37481                                                                                          HIV prevalence, adult (% ages 15-49)
## 37482                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 37483                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 37484                                                                                              Life expectancy at birth (years)
## 37485                                                                                      Life expectancy at birth, female (years)
## 37486                                                                                        Life expectancy at birth, male (years)
## 37487                                                                                                         Life expectancy index
## 37489                                                                               Mortality rate, female adult (per 1,000 people)
## 37490                                                                                Mortality rate, infant (per 1,000 live births)
## 37491                                                                                 Mortality rate, male adult (per 1,000 people)
## 37492                                                                            Mortality rate, under-five (per 1,000 live births)
## 37505                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 37506                                                                                                                  Income index
## 37549                                                                                                Exports and imports (% of GDP)
## 37550                                                                             Foreign direct investment, net inflows (% of GDP)
## 37551                                                                       Net official development assistance received (% of GNI)
## 37552                                                                                              Private capital flows (% of GDP)
## 37553                                                                                               Remittances, inflows (% of GDP)
## 37566                                                                                                 Human Development Index (HDI)
## 37568                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 37569                                                                                              Population ages 15–64 (millions)
## 37570                                                                                       Population ages 65 and older (millions)
## 37571                                                                                             Population under age 5 (millions)
## 37573                                                                                                   Total population (millions)
## 37574                                                                                                          Urban population (%)
## 37575                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 37576                                                                                                               Education index
## 37577                                                                                           Expected years of schooling (years)
## 37578                                                                                   Expected years of schooling, female (years)
## 37579                                                                                     Expected years of schooling, male (years)
## 37585                                                                                               Mean years of schooling (years)
## 37586                                                                                       Mean years of schooling, female (years)
## 37587                                                                                         Mean years of schooling, male (years)
## 37589                                               Population with at least some secondary education, female (% ages 25 and older)
## 37590                                                 Population with at least some secondary education, male (% ages 25 and older)
## 37626                                                                                          HIV prevalence, adult (% ages 15-49)
## 37627                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 37628                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 37629                                                                                              Life expectancy at birth (years)
## 37630                                                                                      Life expectancy at birth, female (years)
## 37631                                                                                        Life expectancy at birth, male (years)
## 37632                                                                                                         Life expectancy index
## 37634                                                                               Mortality rate, female adult (per 1,000 people)
## 37635                                                                                Mortality rate, infant (per 1,000 live births)
## 37636                                                                                 Mortality rate, male adult (per 1,000 people)
## 37637                                                                            Mortality rate, under-five (per 1,000 live births)
## 37650                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 37651                                                                                                                  Income index
## 37681                                                                                                Exports and imports (% of GDP)
## 37682                                                                             Foreign direct investment, net inflows (% of GDP)
## 37683                                                                       Net official development assistance received (% of GNI)
## 37684                                                                                              Private capital flows (% of GDP)
## 37685                                                                                               Remittances, inflows (% of GDP)
## 37698                                                                                                 Human Development Index (HDI)
## 37700                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 37701                                                                                              Population ages 15–64 (millions)
## 37702                                                                                       Population ages 65 and older (millions)
## 37703                                                                                             Population under age 5 (millions)
## 37705                                                                                                   Total population (millions)
## 37706                                                                                                          Urban population (%)
## 37707                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 37708                                                                                                               Education index
## 37709                                                                                           Expected years of schooling (years)
## 37718                                                                                               Mean years of schooling (years)
## 37719                                                                                       Mean years of schooling, female (years)
## 37720                                                                                         Mean years of schooling, male (years)
## 37722                                               Population with at least some secondary education, female (% ages 25 and older)
## 37723                                                 Population with at least some secondary education, male (% ages 25 and older)
## 37764                                                                                          HIV prevalence, adult (% ages 15-49)
## 37765                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 37766                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 37767                                                                                              Life expectancy at birth (years)
## 37768                                                                                      Life expectancy at birth, female (years)
## 37769                                                                                        Life expectancy at birth, male (years)
## 37770                                                                                                         Life expectancy index
## 37772                                                                               Mortality rate, female adult (per 1,000 people)
## 37773                                                                                Mortality rate, infant (per 1,000 live births)
## 37774                                                                                 Mortality rate, male adult (per 1,000 people)
## 37775                                                                            Mortality rate, under-five (per 1,000 live births)
## 37788                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 37789                                                                                                                  Income index
## 37834                                                                                                Exports and imports (% of GDP)
## 37835                                                                             Foreign direct investment, net inflows (% of GDP)
## 37836                                                                       Net official development assistance received (% of GNI)
## 37837                                                                                              Private capital flows (% of GDP)
## 37838                                                                                               Remittances, inflows (% of GDP)
## 37852                                                                                                 Human Development Index (HDI)
## 37854                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 37855                                                                                              Population ages 15–64 (millions)
## 37856                                                                                       Population ages 65 and older (millions)
## 37857                                                                                             Population under age 5 (millions)
## 37859                                                                                                   Total population (millions)
## 37860                                                                                                          Urban population (%)
## 37861                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 37862                                                                                                               Education index
## 37863                                                                                           Expected years of schooling (years)
## 37864                                                                                   Expected years of schooling, female (years)
## 37865                                                                                     Expected years of schooling, male (years)
## 37872                                                                                               Mean years of schooling (years)
## 37873                                                                                       Mean years of schooling, female (years)
## 37874                                                                                         Mean years of schooling, male (years)
## 37876                                               Population with at least some secondary education, female (% ages 25 and older)
## 37877                                                 Population with at least some secondary education, male (% ages 25 and older)
## 37911                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 37912                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 37913                                                                                              Life expectancy at birth (years)
## 37914                                                                                      Life expectancy at birth, female (years)
## 37915                                                                                        Life expectancy at birth, male (years)
## 37916                                                                                                         Life expectancy index
## 37917                                                                               Mortality rate, female adult (per 1,000 people)
## 37918                                                                                Mortality rate, infant (per 1,000 live births)
## 37919                                                                                 Mortality rate, male adult (per 1,000 people)
## 37920                                                                            Mortality rate, under-five (per 1,000 live births)
## 37932                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 37933                                                                                                                  Income index
## 37951                                                                                                Exports and imports (% of GDP)
## 37953                                                                       Net official development assistance received (% of GNI)
## 37967                                                                                                 Human Development Index (HDI)
## 37969                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 37970                                                                                              Population ages 15–64 (millions)
## 37971                                                                                       Population ages 65 and older (millions)
## 37972                                                                                             Population under age 5 (millions)
## 37974                                                                                                   Total population (millions)
## 37975                                                                                                          Urban population (%)
## 37976                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 37977                                                                                                               Education index
## 37978                                                                                           Expected years of schooling (years)
## 37979                                                                                   Expected years of schooling, female (years)
## 37980                                                                                     Expected years of schooling, male (years)
## 37987                                                                                               Mean years of schooling (years)
## 37988                                                                                       Mean years of schooling, female (years)
## 37989                                                                                         Mean years of schooling, male (years)
## 37991                                               Population with at least some secondary education, female (% ages 25 and older)
## 37992                                                 Population with at least some secondary education, male (% ages 25 and older)
## 38030                                                                                          HIV prevalence, adult (% ages 15-49)
## 38031                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 38032                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 38033                                                                                              Life expectancy at birth (years)
## 38034                                                                                      Life expectancy at birth, female (years)
## 38035                                                                                        Life expectancy at birth, male (years)
## 38036                                                                                                         Life expectancy index
## 38037                                                                               Mortality rate, female adult (per 1,000 people)
## 38038                                                                                Mortality rate, infant (per 1,000 live births)
## 38039                                                                                 Mortality rate, male adult (per 1,000 people)
## 38040                                                                            Mortality rate, under-five (per 1,000 live births)
## 38053                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 38054                                                                                                                  Income index
## 38084                                                                                                Exports and imports (% of GDP)
## 38085                                                                             Foreign direct investment, net inflows (% of GDP)
## 38086                                                                                              Private capital flows (% of GDP)
## 38102                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 38103                                                                                              Population ages 15–64 (millions)
## 38104                                                                                       Population ages 65 and older (millions)
## 38105                                                                                             Population under age 5 (millions)
## 38107                                                                                                   Total population (millions)
## 38108                                                                                                          Urban population (%)
## 38109                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 38111                                                                                           Expected years of schooling (years)
## 38112                                                                                   Expected years of schooling, female (years)
## 38113                                                                                     Expected years of schooling, male (years)
## 38162                                                                                          HIV prevalence, adult (% ages 15-49)
## 38163                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 38164                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 38165                                                                                              Life expectancy at birth (years)
## 38166                                                                                      Life expectancy at birth, female (years)
## 38167                                                                                        Life expectancy at birth, male (years)
## 38168                                                                                                         Life expectancy index
## 38170                                                                               Mortality rate, female adult (per 1,000 people)
## 38171                                                                                Mortality rate, infant (per 1,000 live births)
## 38172                                                                                 Mortality rate, male adult (per 1,000 people)
## 38173                                                                            Mortality rate, under-five (per 1,000 live births)
## 38186                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 38187                                                                                                                  Income index
## 38231                                                                                                Exports and imports (% of GDP)
## 38232                                                                             Foreign direct investment, net inflows (% of GDP)
## 38233                                                                       Net official development assistance received (% of GNI)
## 38235                                                                                               Remittances, inflows (% of GDP)
## 38248                                                                                                 Human Development Index (HDI)
## 38250                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 38251                                                                                              Population ages 15–64 (millions)
## 38252                                                                                       Population ages 65 and older (millions)
## 38253                                                                                             Population under age 5 (millions)
## 38255                                                                                                   Total population (millions)
## 38256                                                                                                          Urban population (%)
## 38257                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 38258                                                                                                               Education index
## 38259                                                                                           Expected years of schooling (years)
## 38260                                                                                   Expected years of schooling, female (years)
## 38261                                                                                     Expected years of schooling, male (years)
## 38268                                                                                               Mean years of schooling (years)
## 38269                                                                                       Mean years of schooling, female (years)
## 38270                                                                                         Mean years of schooling, male (years)
## 38272                                               Population with at least some secondary education, female (% ages 25 and older)
## 38273                                                 Population with at least some secondary education, male (% ages 25 and older)
## 38309                                                                                          HIV prevalence, adult (% ages 15-49)
## 38310                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 38311                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 38312                                                                                              Life expectancy at birth (years)
## 38313                                                                                      Life expectancy at birth, female (years)
## 38314                                                                                        Life expectancy at birth, male (years)
## 38315                                                                                                         Life expectancy index
## 38317                                                                               Mortality rate, female adult (per 1,000 people)
## 38318                                                                                Mortality rate, infant (per 1,000 live births)
## 38319                                                                                 Mortality rate, male adult (per 1,000 people)
## 38320                                                                            Mortality rate, under-five (per 1,000 live births)
## 38333                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 38334                                                                                                                  Income index
## 38377                                                                                                Exports and imports (% of GDP)
## 38378                                                                             Foreign direct investment, net inflows (% of GDP)
## 38379                                                                       Net official development assistance received (% of GNI)
## 38380                                                                                              Private capital flows (% of GDP)
## 38395                                                                                                 Human Development Index (HDI)
## 38397                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 38398                                                                                              Population ages 15–64 (millions)
## 38399                                                                                       Population ages 65 and older (millions)
## 38400                                                                                             Population under age 5 (millions)
## 38402                                                                                                   Total population (millions)
## 38403                                                                                                          Urban population (%)
## 38404                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 38405                                                                                                               Education index
## 38406                                                                                           Expected years of schooling (years)
## 38407                                                                                   Expected years of schooling, female (years)
## 38415                                                                                               Mean years of schooling (years)
## 38416                                                                                       Mean years of schooling, female (years)
## 38417                                                                                         Mean years of schooling, male (years)
## 38419                                               Population with at least some secondary education, female (% ages 25 and older)
## 38420                                                 Population with at least some secondary education, male (% ages 25 and older)
## 38458                                                                                          HIV prevalence, adult (% ages 15-49)
## 38459                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 38460                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 38461                                                                                              Life expectancy at birth (years)
## 38462                                                                                      Life expectancy at birth, female (years)
## 38463                                                                                        Life expectancy at birth, male (years)
## 38464                                                                                                         Life expectancy index
## 38466                                                                               Mortality rate, female adult (per 1,000 people)
## 38467                                                                                Mortality rate, infant (per 1,000 live births)
## 38468                                                                                 Mortality rate, male adult (per 1,000 people)
## 38469                                                                            Mortality rate, under-five (per 1,000 live births)
## 38482                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 38483                                                                                                                  Income index
## 38526                                                                                                Exports and imports (% of GDP)
## 38527                                                                             Foreign direct investment, net inflows (% of GDP)
## 38528                                                                       Net official development assistance received (% of GNI)
## 38529                                                                                              Private capital flows (% of GDP)
## 38530                                                                                               Remittances, inflows (% of GDP)
## 38544                                                                                                 Human Development Index (HDI)
## 38546                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 38547                                                                                              Population ages 15–64 (millions)
## 38548                                                                                       Population ages 65 and older (millions)
## 38549                                                                                             Population under age 5 (millions)
## 38551                                                                                                   Total population (millions)
## 38552                                                                                                          Urban population (%)
## 38553                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 38554                                                                                                               Education index
## 38555                                                                                           Expected years of schooling (years)
## 38556                                                                                   Expected years of schooling, female (years)
## 38557                                                                                     Expected years of schooling, male (years)
## 38564                                                                                               Mean years of schooling (years)
## 38565                                                                                       Mean years of schooling, female (years)
## 38566                                                                                         Mean years of schooling, male (years)
## 38568                                               Population with at least some secondary education, female (% ages 25 and older)
## 38569                                                 Population with at least some secondary education, male (% ages 25 and older)
## 38605                                                                                          HIV prevalence, adult (% ages 15-49)
## 38606                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 38607                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 38608                                                                                              Life expectancy at birth (years)
## 38609                                                                                      Life expectancy at birth, female (years)
## 38610                                                                                        Life expectancy at birth, male (years)
## 38611                                                                                                         Life expectancy index
## 38613                                                                               Mortality rate, female adult (per 1,000 people)
## 38614                                                                                Mortality rate, infant (per 1,000 live births)
## 38615                                                                                 Mortality rate, male adult (per 1,000 people)
## 38616                                                                            Mortality rate, under-five (per 1,000 live births)
## 38629                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 38630                                                                                                                  Income index
## 38672                                                                                                Exports and imports (% of GDP)
## 38673                                                                             Foreign direct investment, net inflows (% of GDP)
## 38674                                                                       Net official development assistance received (% of GNI)
## 38675                                                                                              Private capital flows (% of GDP)
## 38676                                                                                               Remittances, inflows (% of GDP)
## 38690                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 38691                                                                                              Population ages 15–64 (millions)
## 38692                                                                                       Population ages 65 and older (millions)
## 38693                                                                                             Population under age 5 (millions)
## 38695                                                                                                   Total population (millions)
## 38696                                                                                                          Urban population (%)
## 38697                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 38699                                                                                           Expected years of schooling (years)
## 38749                                                                                          HIV prevalence, adult (% ages 15-49)
## 38750                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 38751                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 38752                                                                                              Life expectancy at birth (years)
## 38753                                                                                      Life expectancy at birth, female (years)
## 38754                                                                                        Life expectancy at birth, male (years)
## 38755                                                                                                         Life expectancy index
## 38757                                                                               Mortality rate, female adult (per 1,000 people)
## 38758                                                                                Mortality rate, infant (per 1,000 live births)
## 38759                                                                                 Mortality rate, male adult (per 1,000 people)
## 38760                                                                            Mortality rate, under-five (per 1,000 live births)
## 38773                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 38774                                                                                                                  Income index
## 38816                                                                                                Exports and imports (% of GDP)
## 38817                                                                             Foreign direct investment, net inflows (% of GDP)
## 38818                                                                       Net official development assistance received (% of GNI)
## 38819                                                                                              Private capital flows (% of GDP)
## 38820                                                                                               Remittances, inflows (% of GDP)
## 38833                                                                                                 Human Development Index (HDI)
## 38835                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 38836                                                                                              Population ages 15–64 (millions)
## 38837                                                                                       Population ages 65 and older (millions)
## 38838                                                                                             Population under age 5 (millions)
## 38840                                                                                                   Total population (millions)
## 38841                                                                                                          Urban population (%)
## 38842                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 38843                                                                                                               Education index
## 38844                                                                                           Expected years of schooling (years)
## 38845                                                                                   Expected years of schooling, female (years)
## 38846                                                                                     Expected years of schooling, male (years)
## 38853                                                                                               Mean years of schooling (years)
## 38854                                                                                       Mean years of schooling, female (years)
## 38855                                                                                         Mean years of schooling, male (years)
## 38857                                               Population with at least some secondary education, female (% ages 25 and older)
## 38858                                                 Population with at least some secondary education, male (% ages 25 and older)
## 38878                                                               Estimated gross national income per capita, female (2011 PPP $)
## 38879                                                                 Estimated gross national income per capita, male (2011 PPP $)
## 38881                                                                                                Gender Development Index (GDI)
## 38883                                                                                         Human Development Index (HDI), female
## 38884                                                                                           Human Development Index (HDI), male
## 38895                                                                                          HIV prevalence, adult (% ages 15-49)
## 38896                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 38897                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 38898                                                                                              Life expectancy at birth (years)
## 38899                                                                                      Life expectancy at birth, female (years)
## 38900                                                                                        Life expectancy at birth, male (years)
## 38901                                                                                                         Life expectancy index
## 38902                                                                               Mortality rate, female adult (per 1,000 people)
## 38903                                                                                Mortality rate, infant (per 1,000 live births)
## 38904                                                                                 Mortality rate, male adult (per 1,000 people)
## 38905                                                                            Mortality rate, under-five (per 1,000 live births)
## 38918                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 38919                                                                                                                  Income index
## 38949                                                                                                Exports and imports (% of GDP)
## 38950                                                                             Foreign direct investment, net inflows (% of GDP)
## 38951                                                                       Net official development assistance received (% of GNI)
## 38952                                                                                              Private capital flows (% of GDP)
## 38967                                                                                                 Human Development Index (HDI)
## 38969                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 38970                                                                                              Population ages 15–64 (millions)
## 38971                                                                                       Population ages 65 and older (millions)
## 38972                                                                                             Population under age 5 (millions)
## 38974                                                                                                   Total population (millions)
## 38975                                                                                                          Urban population (%)
## 38976                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 38977                                                                                                               Education index
## 38978                                                                                           Expected years of schooling (years)
## 38979                                                                                   Expected years of schooling, female (years)
## 38980                                                                                     Expected years of schooling, male (years)
## 38987                                                                                               Mean years of schooling (years)
## 38988                                                                                       Mean years of schooling, female (years)
## 38989                                                                                         Mean years of schooling, male (years)
## 38991                                               Population with at least some secondary education, female (% ages 25 and older)
## 38992                                                 Population with at least some secondary education, male (% ages 25 and older)
## 39028                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 39029                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 39030                                                                                              Life expectancy at birth (years)
## 39031                                                                                      Life expectancy at birth, female (years)
## 39032                                                                                        Life expectancy at birth, male (years)
## 39033                                                                                                         Life expectancy index
## 39035                                                                               Mortality rate, female adult (per 1,000 people)
## 39036                                                                                Mortality rate, infant (per 1,000 live births)
## 39037                                                                                 Mortality rate, male adult (per 1,000 people)
## 39038                                                                            Mortality rate, under-five (per 1,000 live births)
## 39050                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 39051                                                                                                                  Income index
## 39093                                                                                                Exports and imports (% of GDP)
## 39094                                                                             Foreign direct investment, net inflows (% of GDP)
## 39095                                                                       Net official development assistance received (% of GNI)
## 39096                                                                                              Private capital flows (% of GDP)
## 39097                                                                                               Remittances, inflows (% of GDP)
## 39109                                                                                                 Human Development Index (HDI)
## 39111                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 39112                                                                                              Population ages 15–64 (millions)
## 39113                                                                                       Population ages 65 and older (millions)
## 39114                                                                                             Population under age 5 (millions)
## 39116                                                                                                   Total population (millions)
## 39117                                                                                                          Urban population (%)
## 39118                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 39119                                                                                                               Education index
## 39120                                                                                           Expected years of schooling (years)
## 39121                                                                                   Expected years of schooling, female (years)
## 39122                                                                                     Expected years of schooling, male (years)
## 39129                                                                                               Mean years of schooling (years)
## 39130                                                                                       Mean years of schooling, female (years)
## 39131                                                                                         Mean years of schooling, male (years)
## 39133                                               Population with at least some secondary education, female (% ages 25 and older)
## 39134                                                 Population with at least some secondary education, male (% ages 25 and older)
## 39175                                                                                          HIV prevalence, adult (% ages 15-49)
## 39176                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 39177                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 39178                                                                                              Life expectancy at birth (years)
## 39179                                                                                      Life expectancy at birth, female (years)
## 39180                                                                                        Life expectancy at birth, male (years)
## 39181                                                                                                         Life expectancy index
## 39183                                                                               Mortality rate, female adult (per 1,000 people)
## 39184                                                                                Mortality rate, infant (per 1,000 live births)
## 39185                                                                                 Mortality rate, male adult (per 1,000 people)
## 39186                                                                            Mortality rate, under-five (per 1,000 live births)
## 39199                                                                           Gross national income (GNI) per capita (2011 PPP $)
## 39200                                                                                                                  Income index
## 39245                                                                                                Exports and imports (% of GDP)
## 39246                                                                             Foreign direct investment, net inflows (% of GDP)
## 39247                                                                       Net official development assistance received (% of GNI)
## 39248                                                                                              Private capital flows (% of GDP)
## 39249                                                                                               Remittances, inflows (% of GDP)
## 39263                                                                                                 Human Development Index (HDI)
## 39265                                                           Old-age (65 and older) dependency ratio (per 100 people ages 15-64)
## 39266                                                                                              Population ages 15–64 (millions)
## 39267                                                                                       Population ages 65 and older (millions)
## 39268                                                                                             Population under age 5 (millions)
## 39270                                                                                                   Total population (millions)
## 39271                                                                                                          Urban population (%)
## 39272                                                                 Young age (0-14) dependency ratio (per 100 people ages 15-64)
## 39273                                                                                                               Education index
## 39274                                                                                           Expected years of schooling (years)
## 39275                                                                                   Expected years of schooling, female (years)
## 39276                                                                                     Expected years of schooling, male (years)
## 39283                                                                                               Mean years of schooling (years)
## 39284                                                                                       Mean years of schooling, female (years)
## 39285                                                                                         Mean years of schooling, male (years)
## 39287                                               Population with at least some secondary education, female (% ages 25 and older)
## 39288                                                 Population with at least some secondary education, male (% ages 25 and older)
## 39323                                                                                          HIV prevalence, adult (% ages 15-49)
## 39324                                                                        Infants lacking immunization, DPT (% of one-year-olds)
## 39325                                                                    Infants lacking immunization, measles (% of one-year-olds)
## 39326                                                                                              Life expectancy at birth (years)
## 39327                                                                                      Life expectancy at birth, female (years)
## 39328                                                                                        Life expectancy at birth, male (years)
##        iso3  hdi_value
## 2229    ALB      0.645
## 2230    ALB     24.100
## 2231    ALB      8.900
## 2232    ALB      2.000
## 2233    ALB      0.200
## 2234    ALB      0.400
## 2235    ALB      1.070
## 2236    ALB      3.300
## 2237    ALB     36.400
## 2238    ALB     52.900
## 2239    ALB      0.584
## 2240    ALB     11.600
## 2241    ALB     11.300
## 2242    ALB     11.900
## 2244    ALB     56.000
## 2245    ALB    100.000
## 2246    ALB     90.000
## 2247    ALB      8.000
## 2249    ALB      7.800
## 2250    ALB      7.300
## 2251    ALB      8.200
## 2252    ALB     64.700
## 2253    ALB     59.500
## 2254    ALB     69.700
## 2262    ALB      0.360
## 2263    ALB      1.700
## 2264    ALB     28.800
## 2266    ALB     76.600
## 2267    ALB      4.000
## 2271    ALB     25.500
## 2272    ALB     16.300
## 2285    ALB     71.000
## 2286    ALB     93.000
## 2296    ALB      0.100
## 2297    ALB      3.000
## 2298    ALB     12.000
## 2299    ALB     71.800
## 2300    ALB     75.000
## 2301    ALB     69.100
## 2302    ALB      0.797
## 2303    ALB     75.000
## 2304    ALB     34.700
## 2305    ALB    144.000
## 2306    ALB     40.000
## 2316    ALB   4723.000
## 2317    ALB     15.500
## 2318    ALB     29.300
## 2319    ALB   4502.000
## 2320    ALB      0.575
## 2337    ALB      0.000
## 2352    ALB      5.100
## 2354    ALB     29.300
## 2361    ALB    100.000
## 2364    ALB     38.100
## 2366    ALB      0.500
## 2367    ALB      0.000
## 2373    ALB     64.200
## 2374    ALB     53.600
## 2375    ALB     74.400
## 2382    DZA      0.577
## 2383    DZA     18.000
## 2384    DZA      6.300
## 2385    DZA     13.800
## 2386    DZA      0.900
## 2387    DZA      4.000
## 2388    DZA      1.050
## 2389    DZA     25.900
## 2390    DZA     52.100
## 2391    DZA     81.300
## 2392    DZA      0.385
## 2393    DZA      9.600
## 2398    DZA     92.000
## 2399    DZA     59.000
## 2400    DZA     10.000
## 2402    DZA      3.600
## 2403    DZA      2.200
## 2404    DZA      4.700
## 2405    DZA     16.600
## 2406    DZA     10.400
## 2407    DZA     21.900
## 2408    DZA      9.800
## 2414    DZA     28.000
## 2415    DZA     81.000
## 2416    DZA      0.290
## 2417    DZA      3.000
## 2418    DZA      0.700
## 2420    DZA     99.900
## 2421    DZA     38.000
## 2425    DZA      0.200
## 2426    DZA     33.100
## 2439    DZA    216.000
## 2449    DZA      0.100
## 2450    DZA      4.000
## 2451    DZA     17.000
## 2452    DZA     66.700
## 2453    DZA     68.300
## 2454    DZA     65.200
## 2455    DZA      0.719
## 2457    DZA    152.000
## 2458    DZA     41.400
## 2459    DZA    200.000
## 2460    DZA     49.000
## 2469    DZA     78.400
## 2470    DZA  10237.000
## 2471    DZA    265.300
## 2472    DZA     27.000
## 2473    DZA   9910.000
## 2474    DZA      0.694
## 2491    DZA     -0.800
## 2506    DZA     13.400
## 2508    DZA     28.600
## 2513    DZA     96.400
## 2515    DZA     65.100
## 2516    DZA     48.400
## 2517    DZA      0.000
## 2518    DZA      0.600
## 2519    DZA      0.000
## 2520    DZA      0.570
## 2525    DZA     44.200
## 2526    DZA     11.500
## 2527    DZA     76.500
## 2535    AGO     15.800
## 2536    AGO      5.200
## 2537    AGO      6.000
## 2538    AGO      0.300
## 2539    AGO      2.400
## 2540    AGO      1.020
## 2541    AGO     12.200
## 2542    AGO     37.100
## 2543    AGO     98.200
## 2545    AGO      3.800
## 2549    AGO     15.000
## 2550    AGO     71.000
## 2551    AGO      8.000
## 2552    AGO      1.000
## 2555    AGO     65.400
## 2558    AGO      0.120
## 2559    AGO      0.400
## 2560    AGO     48.900
## 2562    AGO     25.500
## 2567    AGO     72.300
## 2568    AGO    220.500
## 2576    AGO   1160.000
## 2587    AGO      0.200
## 2588    AGO     52.000
## 2589    AGO     62.000
## 2590    AGO     41.700
## 2591    AGO     43.900
## 2592    AGO     39.600
## 2593    AGO      0.334
## 2595    AGO    396.000
## 2596    AGO    130.900
## 2597    AGO    470.000
## 2598    AGO    221.400
## 2608    AGO   3431.000
## 2609    AGO     41.800
## 2610    AGO      0.000
## 2611    AGO   2050.000
## 2612    AGO      0.456
## 2629    AGO     -2.700
## 2644    AGO    -48.000
## 2646    AGO      0.000
## 2651    AGO      7.500
## 2653    AGO      8.100
## 2654    AGO     59.500
## 2655    AGO     -3.000
## 2656    AGO      2.600
## 2657    AGO      3.000
## 2663    AGO     78.300
## 2664    AGO     75.200
## 2665    AGO     81.600
## 2673    ATG     24.400
## 2674    ATG     12.200
## 2675    ATG      0.000
## 2676    ATG      0.000
## 2677    ATG      0.000
## 2678    ATG      1.030
## 2679    ATG      0.100
## 2680    ATG     35.400
## 2681    ATG     51.000
## 2696    ATG      0.260
## 2697    ATG      4.200
## 2698    ATG     23.400
## 2700    ATG      0.000
## 2701    ATG      3.300
## 2705    ATG      0.000
## 2706    ATG     83.300
## 2712    ATG      1.000
## 2713    ATG     11.000
## 2714    ATG     71.400
## 2715    ATG     73.800
## 2716    ATG     68.700
## 2717    ATG      0.790
## 2718    ATG    154.000
## 2719    ATG     24.900
## 2720    ATG    200.000
## 2721    ATG     26.100
## 2729    ATG     53.400
## 2730    ATG  16381.000
## 2731    ATG      1.100
## 2732    ATG  14765.000
## 2733    ATG      0.755
## 2740    ATG    -22.400
## 2744    ATG     77.000
## 2745    ATG    149.300
## 2746    ATG     13.200
## 2747    ATG      1.100
## 2748    ATG    -13.200
## 2749    ATG      2.730
## 2752    ARG      0.704
## 2753    ARG     27.200
## 2754    ARG     15.000
## 2755    ARG     19.700
## 2756    ARG      3.000
## 2757    ARG      3.400
## 2758    ARG      1.040
## 2759    ARG     32.700
## 2760    ARG     87.000
## 2761    ARG     50.700
## 2762    ARG      0.628
## 2763    ARG     13.200
## 2766    ARG      1.100
## 2768    ARG    107.000
## 2769    ARG     71.000
## 2772    ARG      7.900
## 2773    ARG      7.900
## 2774    ARG      7.900
## 2775    ARG     37.300
## 2776    ARG     36.300
## 2777    ARG     38.500
## 2785    ARG      0.320
## 2786    ARG      3.400
## 2787    ARG     12.700
## 2789    ARG     88.700
## 2794    ARG      8.900
## 2795    ARG     73.400
## 2807    ARG     72.000
## 2808    ARG     96.900
## 2815    ARG      0.300
## 2816    ARG      5.000
## 2817    ARG      7.000
## 2818    ARG     71.600
## 2819    ARG     75.200
## 2820    ARG     68.100
## 2821    ARG      0.793
## 2823    ARG    105.000
## 2824    ARG     25.500
## 2825    ARG    205.000
## 2826    ARG     28.800
## 2835    ARG     32.400
## 2836    ARG  10816.000
## 2837    ARG    354.000
## 2838    ARG     14.000
## 2839    ARG  10376.000
## 2840    ARG      0.701
## 2858    ARG      1.000
## 2860    ARG      6.700
## 2862    ARG     14.000
## 2869    ARG     90.600
## 2871    ARG     37.100
## 2872    ARG     15.000
## 2873    ARG      1.300
## 2874    ARG      0.100
## 2875    ARG     -0.400
## 2876    ARG      0.020
## 2880    ARG     59.400
## 2881    ARG     44.300
## 2882    ARG     75.500
## 2889    ARM      0.631
## 2890    ARM     27.200
## 2891    ARM      8.800
## 2892    ARM      2.300
## 2893    ARM      0.200
## 2894    ARM      0.400
## 2895    ARM      1.060
## 2896    ARM      3.500
## 2897    ARM     67.400
## 2898    ARM     46.700
## 2899    ARM      0.634
## 2900    ARM     10.700
## 2904    ARM     48.000
## 2907    ARM     23.000
## 2909    ARM     10.100
## 2910    ARM      9.900
## 2911    ARM     10.200
## 2912    ARM     86.600
## 2913    ARM     85.000
## 2914    ARM     88.500
## 2922    ARM     11.800
## 2924    ARM     97.000
## 2929    ARM      2.100
## 2930    ARM     65.600
## 2942    ARM     58.000
## 2943    ARM     99.700
## 2953    ARM      0.100
## 2956    ARM     67.900
## 2957    ARM     70.800
## 2958    ARM     64.900
## 2959    ARM      0.737
## 2960    ARM    130.000
## 2961    ARM     42.400
## 2962    ARM    234.000
## 2963    ARM     49.700
## 2973    ARM   3742.000
## 2974    ARM     13.200
## 2975    ARM     44.300
## 2976    ARM   3518.000
## 2977    ARM      0.538
## 2995    ARM     -3.900
## 3012    ARM     47.100
## 3019    ARM     95.800
## 3022    ARM     81.300
## 3031    ARM     59.200
## 3032    ARM     49.000
## 3033    ARM     70.500
## 3040    AUS      0.866
## 3041    AUS     32.100
## 3042    AUS     16.500
## 3043    AUS     11.400
## 3044    AUS      1.900
## 3045    AUS      1.300
## 3046    AUS      1.050
## 3047    AUS     17.000
## 3048    AUS     85.400
## 3049    AUS     33.000
## 3050    AUS      0.873
## 3051    AUS     17.400
## 3052    AUS     17.300
## 3053    AUS     17.400
## 3054    AUS      4.700
## 3055    AUS     70.000
## 3056    AUS    106.000
## 3058    AUS     35.000
## 3059    AUS     11.700
## 3060    AUS     11.000
## 3061    AUS     11.400
## 3062    AUS     90.300
## 3063    AUS     89.800
## 3064    AUS     90.700
## 3069    AUS      0.540
## 3070    AUS     15.500
## 3071    AUS     16.700
## 3073    AUS     93.900
## 3078    AUS      8.000
## 3079    AUS     21.100
## 3091    AUS      8.000
## 3101    AUS      0.100
## 3102    AUS      2.000
## 3103    AUS     14.000
## 3104    AUS     76.900
## 3105    AUS     80.000
## 3106    AUS     73.900
## 3107    AUS      0.876
## 3108    AUS     66.000
## 3109    AUS      7.600
## 3110    AUS    124.000
## 3111    AUS      9.200
## 3120    AUS     70.400
## 3121    AUS  28658.000
## 3122    AUS    489.100
## 3123    AUS     27.700
## 3124    AUS  27790.000
## 3125    AUS      0.850
## 3143    AUS      8.100
## 3144    AUS      8.700
## 3146    AUS     29.000
## 3153    AUS    100.000
## 3155    AUS     32.200
## 3156    AUS      2.600
## 3157    AUS     -5.000
## 3158    AUS      0.760
## 3162    AUS     63.900
## 3163    AUS     52.300
## 3164    AUS     75.800
## 3171    AUT      0.795
## 3172    AUT     36.500
## 3173    AUT     21.900
## 3174    AUT      5.300
## 3175    AUT      1.200
## 3176    AUT      0.400
## 3177    AUT      1.060
## 3178    AUT      7.700
## 3179    AUT     63.000
## 3180    AUT     24.800
## 3181    AUT      0.676
## 3182    AUT     14.000
## 3183    AUT     13.500
## 3184    AUT     14.400
## 3185    AUT      5.000
## 3186    AUT     72.000
## 3187    AUT    105.000
## 3188    AUT    101.000
## 3189    AUT     33.000
## 3190    AUT      8.600
## 3191    AUT      7.700
## 3192    AUT      9.700
## 3193    AUT     60.800
## 3194    AUT     49.000
## 3195    AUT     73.600
## 3201    AUT     11.000
## 3203    AUT      0.240
## 3204    AUT      7.500
## 3205    AUT     45.700
## 3207    AUT     79.100
## 3208    AUT      4.900
## 3212    AUT     25.100
## 3213    AUT     21.400
## 3224    AUT      8.000
## 3234    AUT      4.000
## 3235    AUT     40.000
## 3236    AUT     75.600
## 3237    AUT     78.800
## 3238    AUT     72.100
## 3239    AUT      0.855
## 3240    AUT     75.000
## 3241    AUT      8.000
## 3242    AUT    155.000
## 3243    AUT      9.500
## 3253    AUT  31342.000
## 3254    AUT    240.600
## 3255    AUT     25.400
## 3256    AUT  31587.000
## 3257    AUT      0.869
## 3275    AUT      2.900
## 3278    AUT     26.700
## 3285    AUT    100.000
## 3287    AUT     71.500
## 3288    AUT      0.400
## 3290    AUT      0.380
## 3294    AUT     56.000
## 3295    AUT     43.400
## 3296    AUT     70.000
## 3304    AZE     24.100
## 3305    AZE      7.500
## 3306    AZE      4.500
## 3307    AZE      0.300
## 3308    AZE      0.900
## 3309    AZE      1.060
## 3310    AZE      7.200
## 3311    AZE     53.700
## 3312    AZE     53.400
## 3314    AZE     10.700
## 3315    AZE     10.400
## 3316    AZE     10.900
## 3318    AZE     21.000
## 3319    AZE    115.000
## 3320    AZE     92.000
## 3321    AZE     24.000
## 3336    AZE     10.200
## 3338    AZE     99.900
## 3343    AZE      0.700
## 3344    AZE     25.700
## 3356    AZE     64.000
## 3357    AZE     97.300
## 3367    AZE      0.100
## 3370    AZE     64.800
## 3371    AZE     68.800
## 3372    AZE     60.700
## 3373    AZE      0.690
## 3375    AZE    114.000
## 3376    AZE     75.400
## 3377    AZE    244.000
## 3378    AZE     94.500
## 3388    AZE   8513.000
## 3389    AZE     60.900
## 3390    AZE     20.300
## 3391    AZE   8706.000
## 3392    AZE      0.675
## 3410    AZE     -4.600
## 3426    AZE     26.500
## 3433    AZE     92.500
## 3436    AZE     83.100
## 3444    AZE     60.800
## 3445    AZE     52.100
## 3446    AZE     70.200
## 3453    BHS     23.600
## 3454    BHS      6.800
## 3455    BHS      0.200
## 3456    BHS      0.000
## 3457    BHS      0.000
## 3458    BHS      1.060
## 3459    BHS      0.300
## 3460    BHS     79.800
## 3461    BHS     51.300
## 3463    BHS     12.100
## 3464    BHS     12.500
## 3465    BHS     11.800
## 3468    BHS     98.000
## 3469    BHS     86.000
## 3481    BHS      0.250
## 3482    BHS      7.600
## 3483    BHS     51.400
## 3485    BHS      0.000
## 3489    BHS      0.000
## 3490    BHS     69.800
## 3499    BHS     46.000
## 3500    BHS     99.000
## 3506    BHS      1.000
## 3507    BHS      5.000
## 3508    BHS     14.000
## 3509    BHS     70.700
## 3510    BHS     74.200
## 3511    BHS     67.300
## 3512    BHS      0.780
## 3513    BHS    149.000
## 3514    BHS     19.600
## 3515    BHS    260.000
## 3516    BHS     23.500
## 3524    BHS     58.500
## 3525    BHS  30992.000
## 3526    BHS      7.900
## 3527    BHS     25.600
## 3528    BHS  29221.000
## 3529    BHS      0.858
## 3542    BHS     -0.900
## 3546    BHS     29.400
## 3549    BHS     82.000
## 3551    BHS    110.100
## 3552    BHS     -0.500
## 3553    BHS      0.100
## 3558    BHS     72.000
## 3559    BHS     64.800
## 3560    BHS     79.400
## 3566    BGD      0.387
## 3567    BGD     18.600
## 3568    BGD      5.700
## 3569    BGD     57.900
## 3570    BGD      3.300
## 3571    BGD     16.500
## 3572    BGD      1.050
## 3573    BGD    106.200
## 3574    BGD     19.800
## 3575    BGD     77.600
## 3576    BGD      0.251
## 3577    BGD      5.600
## 3578    BGD      4.700
## 3579    BGD      6.600
## 3580    BGD      1.500
## 3582    BGD     81.000
## 3583    BGD     20.000
## 3584    BGD      4.000
## 3586    BGD      2.800
## 3587    BGD      1.900
## 3588    BGD      3.700
## 3589    BGD     20.800
## 3590    BGD     12.300
## 3591    BGD     27.400
## 3595    BGD     63.000
## 3597    BGD      0.110
## 3598    BGD      0.100
## 3599    BGD     11.500
## 3601    BGD     45.500
## 3606    BGD     71.700
## 3607    BGD    169.700
## 3619    BGD    569.000
## 3630    BGD      0.100
## 3631    BGD     14.000
## 3632    BGD     35.000
## 3633    BGD     58.400
## 3634    BGD     58.800
## 3635    BGD     58.100
## 3636    BGD      0.591
## 3638    BGD    196.000
## 3639    BGD     99.700
## 3640    BGD    197.000
## 3641    BGD    143.800
## 3650    BGD     21.600
## 3651    BGD   1288.000
## 3652    BGD    136.800
## 3653    BGD     16.500
## 3654    BGD   1320.000
## 3655    BGD      0.390
## 3673    BGD     -0.400
## 3688    BGD      6.200
## 3690    BGD     16.500
## 3698    BGD     34.200
## 3699    BGD     19.000
## 3700    BGD      0.000
## 3701    BGD      6.500
## 3702    BGD      0.000
## 3703    BGD      2.460
## 3707    BGD     56.500
## 3708    BGD     23.100
## 3709    BGD     88.200
## 3716    BRB      0.716
## 3717    BRB     28.300
## 3718    BRB     15.300
## 3719    BRB      0.200
## 3720    BRB      0.000
## 3721    BRB      0.000
## 3722    BRB      1.040
## 3723    BRB      0.300
## 3724    BRB     37.400
## 3725    BRB     36.600
## 3726    BRB      0.625
## 3727    BRB     12.800
## 3728    BRB     12.700
## 3729    BRB     12.900
## 3732    BRB    114.000
## 3733    BRB     85.000
## 3734    BRB     17.000
## 3735    BRB      8.100
## 3736    BRB      8.000
## 3737    BRB      8.200
## 3738    BRB     66.500
## 3739    BRB     64.600
## 3740    BRB     68.200
## 3744    BRB     18.000
## 3746    BRB      0.290
## 3747    BRB      4.100
## 3748    BRB     14.700
## 3750    BRB      0.000
## 3755    BRB     18.900
## 3756    BRB     49.900
## 3757    BRB    100.000
## 3767    BRB     58.000
## 3776    BRB      0.100
## 3777    BRB      3.000
## 3778    BRB     13.000
## 3779    BRB     71.400
## 3780    BRB     73.500
## 3781    BRB     69.000
## 3782    BRB      0.791
## 3783    BRB    122.000
## 3784    BRB     15.900
## 3785    BRB    183.000
## 3786    BRB     17.800
## 3795    BRB     51.100
## 3796    BRB  14434.000
## 3797    BRB      3.800
## 3798    BRB     14.900
## 3799    BRB  13612.000
## 3800    BRB      0.742
## 3814    BRB     -3.200
## 3827    BRB     10.900
## 3829    BRB     14.800
## 3833    BRB     86.000
## 3834    BRB      0.600
## 3835    BRB      0.100
## 3836    BRB      0.800
## 3837    BRB      1.870
## 3842    BRB     69.000
## 3843    BRB     61.300
## 3844    BRB     77.600
## 3851    BLR     33.100
## 3852    BLR     16.100
## 3853    BLR      6.800
## 3854    BLR      1.100
## 3855    BLR      0.800
## 3856    BLR      1.060
## 3857    BLR     10.200
## 3858    BLR     66.000
## 3859    BLR     34.500
## 3861    BLR     12.900
## 3865    BLR     95.000
## 3866    BLR     94.000
## 3867    BLR     97.000
## 3868    BLR     49.000
## 3880    BLR     98.000
## 3883    BLR     38.400
## 3885    BLR     95.600
## 3890    BLR      0.800
## 3891    BLR     37.800
## 3904    BLR     33.000
## 3905    BLR     99.900
## 3913    BLR      0.100
## 3916    BLR     70.600
## 3917    BLR     75.500
## 3918    BLR     65.400
## 3919    BLR      0.779
## 3920    BLR    107.000
## 3921    BLR     12.100
## 3922    BLR    282.000
## 3923    BLR     15.200
## 3933    BLR   8354.000
## 3934    BLR     85.100
## 3935    BLR     21.900
## 3936    BLR   8428.000
## 3937    BLR      0.670
## 3955    BLR     -0.500
## 3959    BLR     26.500
## 3966    BLR    100.000
## 3969    BLR     89.600
## 3978    BLR     59.800
## 3979    BLR     53.200
## 3980    BLR     67.600
## 3987    BLZ      0.644
## 3988    BLZ     17.900
## 3989    BLZ      7.900
## 3990    BLZ      0.100
## 3991    BLZ      0.000
## 3992    BLZ      0.000
## 3993    BLZ      1.030
## 3994    BLZ      0.200
## 3995    BLZ     47.500
## 3996    BLZ     82.900
## 3997    BLZ      0.573
## 3998    BLZ     10.800
## 4002    BLZ     23.000
## 4003    BLZ    113.000
## 4006    BLZ      8.200
## 4007    BLZ      8.200
## 4008    BLZ      8.300
## 4009    BLZ     21.800
## 4010    BLZ     21.100
## 4011    BLZ     22.200
## 4016    BLZ      0.320
## 4017    BLZ      1.700
## 4018    BLZ     70.800
## 4020    BLZ      0.000
## 4025    BLZ     38.000
## 4026    BLZ    131.600
## 4039    BLZ     54.000
## 4049    BLZ      0.100
## 4050    BLZ      3.000
## 4051    BLZ     14.000
## 4052    BLZ     71.200
## 4053    BLZ     73.600
## 4054    BLZ     69.100
## 4055    BLZ      0.788
## 4057    BLZ    120.000
## 4058    BLZ     31.700
## 4059    BLZ    186.000
## 4060    BLZ     39.000
## 4069    BLZ     26.700
## 4070    BLZ   5166.000
## 4071    BLZ      1.000
## 4072    BLZ     25.000
## 4073    BLZ   4984.000
## 4074    BLZ      0.590
## 4087    BLZ     -6.100
## 4100    BLZ     29.900
## 4102    BLZ     25.700
## 4107    BLZ     78.700
## 4109    BLZ      7.200
## 4110    BLZ    122.300
## 4111    BLZ      4.200
## 4112    BLZ      7.500
## 4113    BLZ     -4.200
## 4114    BLZ      4.470
## 4119    BLZ     58.300
## 4120    BLZ     34.500
## 4121    BLZ     81.900
## 4128    BEN      0.348
## 4129    BEN     17.100
## 4130    BEN      7.400
## 4131    BEN      2.500
## 4132    BEN      0.200
## 4133    BEN      0.900
## 4134    BEN      1.040
## 4135    BEN      5.000
## 4136    BEN     34.500
## 4137    BEN     90.700
## 4138    BEN      0.201
## 4139    BEN      5.300
## 4143    BEN      3.000
## 4144    BEN     51.000
## 4146    BEN      2.000
## 4148    BEN      1.600
## 4149    BEN      0.800
## 4150    BEN      2.600
## 4151    BEN      9.600
## 4152    BEN      4.500
## 4153    BEN     14.800
## 4154    BEN     37.000
## 4156    BEN     31.000
## 4158    BEN      0.100
## 4159    BEN      0.100
## 4160    BEN     51.100
## 4162    BEN      4.800
## 4167    BEN     93.700
## 4168    BEN    123.100
## 4180    BEN    576.000
## 4190    BEN      0.200
## 4191    BEN     14.000
## 4192    BEN     21.000
## 4193    BEN     53.800
## 4194    BEN     55.800
## 4195    BEN     51.700
## 4196    BEN      0.520
## 4198    BEN    245.000
## 4199    BEN    107.400
## 4200    BEN    313.000
## 4201    BEN    178.400
## 4210    BEN     21.100
## 4211    BEN   1463.000
## 4212    BEN      7.300
## 4213    BEN     12.600
## 4214    BEN   1432.000
## 4215    BEN      0.402
## 4232    BEN     -0.400
## 4247    BEN     -2.400
## 4249    BEN     14.100
## 4257    BEN      9.900
## 4258    BEN     45.700
## 4259    BEN      3.200
## 4260    BEN     13.900
## 4261    BEN     -2.900
## 4262    BEN      5.160
## 4267    BEN     72.400
## 4268    BEN     57.400
## 4269    BEN     89.200
## 4277    BTN     17.900
## 4278    BTN      5.200
## 4279    BTN      0.300
## 4280    BTN      0.000
## 4281    BTN      0.100
## 4282    BTN      1.040
## 4283    BTN      0.500
## 4284    BTN     16.400
## 4285    BTN     82.200
## 4287    BTN      5.400
## 4307    BTN      0.100
## 4308    BTN      0.200
## 4309    BTN     53.700
## 4311    BTN      0.000
## 4316    BTN     95.900
## 4317    BTN    111.300
## 4328    BTN    945.000
## 4340    BTN      2.000
## 4341    BTN      7.000
## 4342    BTN     52.900
## 4343    BTN     53.200
## 4344    BTN     52.600
## 4345    BTN      0.506
## 4347    BTN    377.000
## 4348    BTN     89.500
## 4349    BTN    372.000
## 4350    BTN    127.600
## 4359    BTN     -1.000
## 4360    BTN   2325.000
## 4361    BTN      1.200
## 4362    BTN     31.000
## 4363    BTN   2099.000
## 4364    BTN      0.460
## 4381    BTN      0.600
## 4398    BTN     30.400
## 4405    BTN     57.500
## 4406    BTN      0.500
## 4407    BTN     16.400
## 4414    BTN     64.500
## 4415    BTN     51.500
## 4416    BTN     76.400
## 4422    BOL      0.536
## 4423    BOL     19.100
## 4424    BOL      8.100
## 4425    BOL      3.700
## 4426    BOL      0.300
## 4427    BOL      1.000
## 4428    BOL      1.050
## 4429    BOL      6.900
## 4430    BOL     55.600
## 4431    BOL     76.000
## 4432    BOL      0.528
## 4433    BOL     11.300
## 4437    BOL     31.000
## 4438    BOL    100.000
## 4441    BOL      6.400
## 4442    BOL      5.400
## 4443    BOL      7.400
## 4444    BOL     44.600
## 4445    BOL     37.000
## 4446    BOL     52.700
## 4450    BOL     95.000
## 4451    BOL      0.230
## 4452    BOL      0.800
## 4453    BOL     58.000
## 4455    BOL     67.200
## 4460    BOL     37.400
## 4461    BOL     96.100
## 4472    BOL    425.000
## 4483    BOL      0.100
## 4484    BOL     34.000
## 4485    BOL     47.000
## 4486    BOL     55.100
## 4487    BOL     56.800
## 4488    BOL     53.500
## 4489    BOL      0.540
## 4491    BOL    257.000
## 4492    BOL     85.200
## 4493    BOL    317.000
## 4494    BOL    123.800
## 4503    BOL     23.000
## 4504    BOL   3707.000
## 4505    BOL     25.400
## 4506    BOL     12.600
## 4507    BOL   3540.000
## 4508    BOL      0.539
## 4525    BOL     -3.300
## 4541    BOL     12.500
## 4548    BOL     10.400
## 4550    BOL     39.400
## 4551    BOL     46.700
## 4552    BOL      0.600
## 4553    BOL     11.800
## 4554    BOL     -0.500
## 4555    BOL      0.090
## 4559    BOL     68.400
## 4560    BOL     55.500
## 4561    BOL     81.300
## 4568    BWA      0.581
## 4569    BWA     17.500
## 4570    BWA      5.000
## 4571    BWA      0.700
## 4572    BWA      0.000
## 4573    BWA      0.200
## 4574    BWA      1.030
## 4575    BWA      1.400
## 4576    BWA     41.900
## 4577    BWA     84.000
## 4578    BWA      0.461
## 4579    BWA     10.000
## 4580    BWA     10.300
## 4581    BWA      9.600
## 4582    BWA      5.700
## 4584    BWA    103.000
## 4585    BWA     39.000
## 4587    BWA      5.500
## 4588    BWA      5.600
## 4589    BWA      5.900
## 4590    BWA     41.200
## 4591    BWA     41.000
## 4592    BWA     46.100
## 4596    BWA     32.000
## 4598    BWA      0.240
## 4599    BWA      2.000
## 4600    BWA     24.200
## 4602    BWA     64.800
## 4607    BWA     47.600
## 4608    BWA    122.000
## 4618    BWA    243.000
## 4628    BWA      7.000
## 4629    BWA      1.000
## 4630    BWA     13.000
## 4631    BWA     61.900
## 4632    BWA     64.300
## 4633    BWA     59.300
## 4634    BWA      0.645
## 4636    BWA    244.000
## 4637    BWA     41.500
## 4638    BWA    337.000
## 4639    BWA     53.900
## 4648    BWA    -45.600
## 4649    BWA   8110.000
## 4650    BWA     11.200
## 4651    BWA     32.400
## 4652    BWA   7895.000
## 4653    BWA      0.660
## 4671    BWA      0.900
## 4673    BWA     32.700
## 4675    BWA     37.400
## 4681    BWA      0.200
## 4682    BWA      4.300
## 4683    BWA    104.800
## 4684    BWA      2.500
## 4685    BWA      3.900
## 4686    BWA     -2.400
## 4687    BWA      2.260
## 4691    BWA     62.500
## 4692    BWA     47.800
## 4693    BWA     78.200
## 4700    BRA      0.611
## 4701    BRA     22.400
## 4702    BRA      6.700
## 4703    BRA     90.400
## 4704    BRA      6.000
## 4705    BRA     18.000
## 4706    BRA      1.050
## 4707    BRA    149.400
## 4708    BRA     73.900
## 4709    BRA     58.600
## 4710    BRA      0.463
## 4711    BRA     12.200
## 4720    BRA      3.800
## 4721    BRA      4.200
## 4722    BRA      3.900
## 4723    BRA     20.100
## 4724    BRA     20.600
## 4725    BRA     19.900
## 4733    BRA      0.140
## 4734    BRA      1.400
## 4735    BRA     65.400
## 4737    BRA     51.200
## 4742    BRA     49.900
## 4743    BRA     82.200
## 4756    BRA    104.000
## 4766    BRA      0.200
## 4767    BRA     14.000
## 4768    BRA     22.000
## 4769    BRA     65.300
## 4770    BRA     69.200
## 4771    BRA     61.700
## 4772    BRA      0.697
## 4774    BRA    159.000
## 4775    BRA     53.400
## 4776    BRA    290.000
## 4777    BRA     64.200
## 4786    BRA     87.600
## 4787    BRA  10345.000
## 4788    BRA   1545.000
## 4789    BRA     20.700
## 4790    BRA  10697.000
## 4791    BRA      0.706
## 4809    BRA      0.000
## 4824    BRA      9.900
## 4826    BRA     20.200
## 4833    BRA     55.400
## 4835    BRA     22.600
## 4836    BRA     15.200
## 4837    BRA      0.200
## 4838    BRA      0.000
## 4839    BRA     -0.200
## 4840    BRA      0.120
## 4845    BRA     62.200
## 4846    BRA     42.000
## 4847    BRA     83.200
## 4854    BRN      0.782
## 4855    BRN     23.200
## 4856    BRN      4.200
## 4857    BRN      0.200
## 4858    BRN      0.000
## 4859    BRN      0.000
## 4860    BRN      1.060
## 4861    BRN      0.300
## 4862    BRN     66.400
## 4863    BRN     55.200
## 4864    BRN      0.588
## 4865    BRN     12.100
## 4866    BRN     12.300
## 4867    BRN     12.000
## 4868    BRN      4.000
## 4874    BRN      7.500
## 4875    BRN      6.700
## 4876    BRN      8.100
## 4877    BRN     55.600
## 4878    BRN     51.000
## 4879    BRN     57.900
## 4885    BRN      0.280
## 4886    BRN     23.900
## 4887    BRN     78.400
## 4889    BRN     99.900
## 4893    BRN      0.700
## 4894    BRN     41.400
## 4905    BRN     35.000
## 4913    BRN      3.000
## 4914    BRN      1.000
## 4915    BRN     72.900
## 4916    BRN     74.600
## 4917    BRN     71.500
## 4918    BRN      0.814
## 4919    BRN    111.000
## 4920    BRN     10.200
## 4921    BRN    150.000
## 4922    BRN     13.300
## 4931    BRN  84672.000
## 4932    BRN     21.900
## 4933    BRN     18.700
## 4934    BRN  85126.000
## 4935    BRN      1.000
## 4943    BRN      2.400
## 4947    BRN     18.700
## 4951    BRN    100.000
## 4953    BRN     99.100
## 4955    BRN      0.100
## 4960    BRN     65.000
## 4961    BRN     45.800
## 4962    BRN     81.800
## 4969    BGR      0.694
## 4970    BGR     36.500
## 4971    BGR     19.800
## 4972    BGR      5.900
## 4973    BGR      1.200
## 4974    BGR      0.600
## 4975    BGR      1.060
## 4976    BGR      8.800
## 4977    BGR     66.400
## 4978    BGR     30.600
## 4979    BGR      0.632
## 4980    BGR     12.100
## 4981    BGR     12.100
## 4982    BGR     12.100
## 4983    BGR      4.500
## 4984    BGR     69.000
## 4985    BGR     95.000
## 4986    BGR     99.000
## 4987    BGR     26.000
## 4989    BGR      8.900
## 4990    BGR      8.200
## 4991    BGR      8.400
## 4992    BGR     50.700
## 4993    BGR     49.100
## 4994    BGR     78.200
## 4995    BGR      5.100
## 5000    BGR     86.000
## 5001    BGR      0.920
## 5002    BGR      8.500
## 5003    BGR     30.100
## 5005    BGR     84.100
## 5006    BGR     35.200
## 5010    BGR      1.900
## 5011    BGR     75.800
## 5022    BGR     25.000
## 5023    BGR     99.100
## 5032    BGR      0.100
## 5033    BGR      1.000
## 5034    BGR      1.000
## 5035    BGR     71.300
## 5036    BGR     74.800
## 5037    BGR     68.000
## 5038    BGR      0.789
## 5039    BGR     98.000
## 5040    BGR     14.700
## 5041    BGR    219.000
## 5042    BGR     18.400
## 5052    BGR   9297.000
## 5053    BGR     81.100
## 5054    BGR     21.300
## 5055    BGR   8518.000
## 5056    BGR      0.671
## 5074    BGR     -4.100
## 5075    BGR      0.400
## 5077    BGR     25.600
## 5083    BGR    100.000
## 5085    BGR     19.400
## 5086    BGR     69.800
## 5087    BGR      0.000
## 5088    BGR      0.000
## 5093    BGR     58.000
## 5094    BGR     54.500
## 5095    BGR     61.700
## 5103    BFA     16.300
## 5104    BFA      6.600
## 5105    BFA      4.400
## 5106    BFA      0.300
## 5107    BFA      1.700
## 5108    BFA      1.050
## 5109    BFA      8.800
## 5110    BFA     13.800
## 5111    BFA     95.500
## 5113    BFA      2.500
## 5114    BFA      1.900
## 5115    BFA      3.000
## 5117    BFA      1.000
## 5118    BFA     33.000
## 5119    BFA      7.000
## 5120    BFA      1.000
## 5128    BFA     29.200
## 5130    BFA     55.000
## 5131    BFA     67.000
## 5132    BFA      0.080
## 5133    BFA      0.100
## 5134    BFA     25.000
## 5140    BFA     93.200
## 5141    BFA    150.200
## 5153    BFA    727.000
## 5164    BFA      3.100
## 5165    BFA      8.000
## 5166    BFA     21.000
## 5167    BFA     49.500
## 5168    BFA     50.500
## 5169    BFA     48.300
## 5170    BFA      0.453
## 5172    BFA    296.000
## 5173    BFA     98.600
## 5174    BFA    355.000
## 5175    BFA    198.600
## 5184    BFA     12.200
## 5185    BFA    844.000
## 5186    BFA      7.400
## 5187    BFA     17.700
## 5188    BFA    845.000
## 5189    BFA      0.322
## 5206    BFA     -4.400
## 5223    BFA     18.900
## 5232    BFA      9.400
## 5233    BFA     35.400
## 5234    BFA      0.000
## 5235    BFA     10.600
## 5237    BFA      4.500
## 5242    BFA     83.100
## 5243    BFA     76.200
## 5244    BFA     90.800
## 5250    BDI      0.297
## 5251    BDI     16.400
## 5252    BDI      6.300
## 5253    BDI      2.700
## 5254    BDI      0.200
## 5255    BDI      1.100
## 5256    BDI      1.030
## 5257    BDI      5.400
## 5258    BDI      6.300
## 5259    BDI     95.900
## 5260    BDI      0.171
## 5261    BDI      4.400
## 5262    BDI      3.900
## 5263    BDI      5.000
## 5264    BDI      3.400
## 5266    BDI     70.000
## 5267    BDI      5.000
## 5268    BDI      1.000
## 5269    BDI     37.400
## 5270    BDI      1.400
## 5271    BDI      0.800
## 5272    BDI      2.100
## 5273    BDI      3.100
## 5274    BDI      1.800
## 5275    BDI      4.600
## 5278    BDI     66.000
## 5280    BDI      0.040
## 5281    BDI      0.000
## 5282    BDI     11.300
## 5288    BDI     95.200
## 5289    BDI     49.800
## 5301    BDI   1220.000
## 5311    BDI      0.500
## 5312    BDI      5.000
## 5313    BDI     26.000
## 5314    BDI     48.100
## 5315    BDI     49.700
## 5316    BDI     46.300
## 5317    BDI      0.432
## 5319    BDI    340.000
## 5320    BDI    103.000
## 5321    BDI    399.000
## 5322    BDI    170.100
## 5331    BDI     16.800
## 5332    BDI   1087.000
## 5333    BDI      5.900
## 5334    BDI     15.200
## 5335    BDI   1032.000
## 5336    BDI      0.353
## 5354    BDI     -6.000
## 5369    BDI    -20.600
## 5371    BDI     14.500
## 5378    BDI     43.400
## 5379    BDI     35.600
## 5380    BDI      0.100
## 5381    BDI     23.500
## 5382    BDI     -0.100
## 5388    BDI     90.600
## 5389    BDI     90.800
## 5390    BDI     90.500
## 5397    CMR      0.440
## 5398    CMR     16.800
## 5399    CMR      7.100
## 5400    CMR      5.900
## 5401    CMR      0.400
## 5402    CMR      2.200
## 5403    CMR      1.030
## 5404    CMR     11.700
## 5405    CMR     39.700
## 5406    CMR     92.400
## 5407    CMR      0.339
## 5408    CMR      8.000
## 5409    CMR      7.300
## 5411    CMR      3.300
## 5412    CMR     12.000
## 5413    CMR    100.000
## 5414    CMR     26.000
## 5415    CMR      3.000
## 5417    CMR      3.500
## 5418    CMR      2.500
## 5419    CMR      4.500
## 5420    CMR     13.800
## 5421    CMR      8.700
## 5422    CMR     19.700
## 5423    CMR     40.500
## 5425    CMR     51.000
## 5426    CMR     92.000
## 5427    CMR      0.050
## 5428    CMR      0.100
## 5429    CMR     51.400
## 5431    CMR     18.700
## 5436    CMR     81.600
## 5437    CMR    191.500
## 5448    CMR    728.000
## 5460    CMR      0.800
## 5461    CMR     30.000
## 5462    CMR     44.000
## 5463    CMR     52.200
## 5464    CMR     53.700
## 5465    CMR     50.800
## 5466    CMR      0.496
## 5468    CMR    327.000
## 5469    CMR     88.500
## 5470    CMR    379.000
## 5471    CMR    143.100
## 5480    CMR     30.900
## 5481    CMR   3020.000
## 5482    CMR     35.400
## 5483    CMR     17.300
## 5484    CMR   2905.000
## 5485    CMR      0.509
## 5502    CMR     -0.400
## 5517    CMR      1.200
## 5519    CMR     17.800
## 5525    CMR      5.500
## 5527    CMR     20.500
## 5528    CMR     37.500
## 5529    CMR     -1.000
## 5530    CMR      4.200
## 5531    CMR      0.600
## 5532    CMR      0.210
## 5537    CMR     77.700
## 5538    CMR     71.500
## 5539    CMR     84.200
## 5546    CAF      0.317
## 5547    CAF     18.400
## 5548    CAF      7.600
## 5549    CAF      1.600
## 5550    CAF      0.100
## 5551    CAF      0.500
## 5552    CAF      1.030
## 5553    CAF      2.900
## 5554    CAF     36.800
## 5555    CAF     81.900
## 5556    CAF      0.214
## 5557    CAF      5.200
## 5558    CAF      3.800
## 5559    CAF      6.700
## 5560    CAF      2.200
## 5562    CAF     70.000
## 5563    CAF     11.000
## 5564    CAF      1.000
## 5566    CAF      2.100
## 5567    CAF      1.100
## 5568    CAF      3.100
## 5569    CAF      9.500
## 5570    CAF      4.000
## 5571    CAF     14.900
## 5572    CAF     71.600
## 5574    CAF     90.000
## 5575    CAF     54.000
## 5576    CAF      0.070
## 5577    CAF      0.100
## 5578    CAF     36.200
## 5584    CAF     93.500
## 5585    CAF    156.300
## 5596    CAF   1290.000
## 5607    CAF      2.900
## 5608    CAF      5.000
## 5609    CAF     18.000
## 5610    CAF     48.800
## 5611    CAF     51.000
## 5612    CAF     46.600
## 5613    CAF      0.443
## 5615    CAF    368.000
## 5616    CAF    114.000
## 5617    CAF    427.000
## 5618    CAF    173.800
## 5627    CAF     13.200
## 5628    CAF    925.000
## 5629    CAF      2.700
## 5630    CAF     11.800
## 5631    CAF    935.000
## 5632    CAF      0.338
## 5649    CAF     -3.200
## 5664    CAF      3.100
## 5666    CAF     12.700
## 5673    CAF     13.200
## 5674    CAF     42.900
## 5675    CAF      0.000
## 5676    CAF     17.500
## 5677    CAF      0.200
## 5678    CAF      0.010
## 5683    CAF     72.300
## 5684    CAF     64.600
## 5685    CAF     80.500
## 5691    TCD     16.300
## 5692    TCD      6.500
## 5693    TCD      2.900
## 5694    TCD      0.200
## 5695    TCD      1.200
## 5696    TCD      1.030
## 5697    TCD      6.000
## 5698    TCD     20.800
## 5699    TCD     96.200
## 5701    TCD      3.200
## 5706    TCD     50.000
## 5707    TCD      7.000
## 5716    TCD     57.900
## 5718    TCD     67.000
## 5719    TCD     66.000
## 5720    TCD      0.020
## 5721    TCD      0.000
## 5722    TCD      5.300
## 5728    TCD     98.200
## 5729    TCD    218.100
## 5740    TCD   1450.000
## 5751    TCD      0.800
## 5752    TCD     56.000
## 5753    TCD     68.000
## 5754    TCD     47.000
## 5755    TCD     48.100
## 5756    TCD     45.800
## 5757    TCD      0.415
## 5759    TCD    364.000
## 5760    TCD    111.200
## 5761    TCD    413.000
## 5762    TCD    210.800
## 5771    TCD     11.500
## 5772    TCD   1110.000
## 5773    TCD      6.600
## 5774    TCD      4.800
## 5775    TCD   1097.000
## 5776    TCD      0.362
## 5793    TCD      0.100
## 5808    TCD     -5.900
## 5810    TCD      6.800
## 5816    TCD      0.000
## 5817    TCD      4.300
## 5818    TCD     41.400
## 5819    TCD      0.500
## 5820    TCD     18.000
## 5821    TCD      0.000
## 5827    TCD     72.200
## 5828    TCD     64.900
## 5829    TCD     79.800
## 5835    CHL      0.701
## 5836    CHL     25.600
## 5837    CHL      9.800
## 5838    CHL      8.400
## 5839    CHL      0.800
## 5840    CHL      1.400
## 5841    CHL      1.040
## 5842    CHL     13.200
## 5843    CHL     83.300
## 5844    CHL     47.000
## 5845    CHL      0.626
## 5846    CHL     12.900
## 5847    CHL     12.700
## 5848    CHL     13.000
## 5849    CHL      2.300
## 5850    CHL     81.000
## 5851    CHL    104.000
## 5852    CHL     76.000
## 5855    CHL      8.100
## 5856    CHL      7.900
## 5857    CHL      8.200
## 5858    CHL     50.100
## 5859    CHL     49.000
## 5860    CHL     51.000
## 5868    CHL      0.280
## 5869    CHL      2.500
## 5870    CHL     20.500
## 5872    CHL     72.200
## 5877    CHL     34.000
## 5878    CHL     66.600
## 5880    CHL   3937.000
## 5881    CHL  12677.000
## 5883    CHL      0.909
## 5885    CHL      0.658
## 5886    CHL      0.724
## 5888    CHL     57.000
## 5897    CHL      0.100
## 5898    CHL      2.000
## 5899    CHL      3.000
## 5900    CHL     73.700
## 5901    CHL     76.700
## 5902    CHL     70.600
## 5903    CHL      0.826
## 5904    CHL     97.000
## 5905    CHL     16.000
## 5906    CHL    176.000
## 5907    CHL     19.100
## 5916    CHL     66.900
## 5917    CHL   8992.000
## 5918    CHL    119.100
## 5919    CHL     24.000
## 5920    CHL   8248.000
## 5921    CHL      0.667
## 5938    CHL     -0.300
## 5940    CHL      6.300
## 5942    CHL     25.800
## 5949    CHL     62.900
## 5951    CHL     61.700
## 5952    CHL      2.000
## 5953    CHL      0.300
## 5954    CHL     -3.100
## 5955    CHL      0.000
## 5960    CHL     53.900
## 5961    CHL     32.100
## 5962    CHL     76.900
## 5969    CHN      0.502
## 5970    CHN     24.900
## 5971    CHN      8.600
## 5972    CHN    769.000
## 5973    CHN     66.300
## 5974    CHN    133.200
## 5975    CHN      1.080
## 5976    CHN   1172.400
## 5977    CHN     26.400
## 5978    CHN     43.900
## 5979    CHN      0.405
## 5980    CHN      8.800
## 5981    CHN      8.200
## 5982    CHN      9.300
## 5984    CHN     21.000
## 5985    CHN    127.000
## 5986    CHN     37.000
## 5987    CHN      3.000
## 5988    CHN     77.800
## 5989    CHN      4.800
## 5990    CHN      4.800
## 5991    CHN      5.200
## 5992    CHN     36.400
## 5993    CHN     28.500
## 5994    CHN     43.900
## 5995    CHN     14.900
## 5999    CHN     22.000
## 6000    CHN     88.000
## 6001    CHN      1.410
## 6002    CHN      2.200
## 6003    CHN     16.700
## 6005    CHN     75.700
## 6006    CHN     17.600
## 6010    CHN     34.100
## 6011    CHN     23.500
## 6021    CHN     97.000
## 6022    CHN     94.000
## 6030    CHN      2.000
## 6031    CHN      2.000
## 6032    CHN     69.300
## 6033    CHN     71.000
## 6034    CHN     67.700
## 6035    CHN      0.758
## 6037    CHN    111.000
## 6038    CHN     42.200
## 6039    CHN    147.000
## 6040    CHN     53.900
## 6048    CHN     88.400
## 6049    CHN   1526.000
## 6050    CHN   1732.800
## 6051    CHN     24.600
## 6052    CHN   1529.000
## 6053    CHN      0.412
## 6070    CHN     -0.100
## 6085    CHN     18.000
## 6087    CHN     34.700
## 6093    CHN     89.700
## 6094    CHN     11.700
## 6095    CHN     24.300
## 6096    CHN      1.000
## 6097    CHN      0.600
## 6098    CHN     -0.700
## 6099    CHN      0.050
## 6103    CHN     79.100
## 6104    CHN     73.200
## 6105    CHN     84.800
## 6111    COL      0.592
## 6112    COL     21.600
## 6113    COL      7.000
## 6114    COL     20.400
## 6115    COL      1.400
## 6116    COL      4.300
## 6117    COL      1.050
## 6118    COL     34.300
## 6119    COL     69.500
## 6120    COL     61.100
## 6121    COL      0.433
## 6122    COL      9.000
## 6123    COL      9.300
## 6124    COL      8.600
## 6127    COL    102.000
## 6129    COL     14.000
## 6131    COL      5.500
## 6132    COL      5.300
## 6133    COL      5.600
## 6134    COL     34.200
## 6135    COL     31.000
## 6136    COL     35.100
## 6143    COL     30.000
## 6145    COL      0.220
## 6146    COL      1.700
## 6147    COL     58.100
## 6149    COL     67.400
## 6154    COL     38.300
## 6155    COL     75.700
## 6156    COL     82.000
## 6158    COL     66.100
## 6167    COL    118.000
## 6168    COL     80.600
## 6172    COL     13.700
## 6177    COL      0.100
## 6178    COL      4.000
## 6179    COL     18.000
## 6180    COL     68.300
## 6181    COL     72.400
## 6182    COL     64.400
## 6183    COL      0.743
## 6185    COL    129.000
## 6186    COL     28.900
## 6187    COL    262.000
## 6188    COL     35.100
## 6197    COL     36.400
## 6198    COL   7534.000
## 6199    COL    258.200
## 6200    COL     16.600
## 6201    COL   7174.000
## 6202    COL      0.645
## 6220    COL     -1.600
## 6235    COL      7.100
## 6237    COL     18.500
## 6244    COL     71.000
## 6246    COL     43.100
## 6247    COL     35.400
## 6248    COL      1.200
## 6249    COL      0.200
## 6250    COL     -1.200
## 6251    COL      1.230
## 6256    COL     53.500
## 6257    COL     29.900
## 6258    COL     78.100
## 6265    COG      0.536
## 6266    COG     17.900
## 6267    COG      7.100
## 6268    COG      1.300
## 6269    COG      0.100
## 6270    COG      0.400
## 6271    COG      1.030
## 6272    COG      2.400
## 6273    COG     54.300
## 6274    COG     83.000
## 6275    COG      0.455
## 6276    COG     11.200
## 6277    COG     10.300
## 6278    COG     12.000
## 6280    COG      3.000
## 6281    COG    123.000
## 6282    COG     47.000
## 6283    COG      5.000
## 6285    COG      4.400
## 6286    COG      3.100
## 6287    COG      5.800
## 6288    COG     30.400
## 6289    COG     22.000
## 6290    COG     39.500
## 6293    COG     64.000
## 6295    COG      0.090
## 6296    COG      0.500
## 6297    COG     66.500
## 6299    COG     34.300
## 6303    COG     65.400
## 6304    COG    133.800
## 6315    COG    603.000
## 6325    COG      3.300
## 6326    COG      8.000
## 6327    COG     25.000
## 6328    COG     56.000
## 6329    COG     57.500
## 6330    COG     54.400
## 6331    COG      0.553
## 6333    COG    309.000
## 6334    COG     59.300
## 6335    COG    353.000
## 6336    COG     90.800
## 6345    COG     29.100
## 6346    COG   5140.000
## 6347    COG     12.500
## 6348    COG     17.200
## 6349    COG   5771.000
## 6350    COG      0.613
## 6367    COG      0.200
## 6382    COG    -24.500
## 6384    COG     15.900
## 6392    COG     34.600
## 6393    COG     70.800
## 6394    COG      0.800
## 6395    COG      9.300
## 6396    COG      0.000
## 6397    COG      0.160
## 6402    COG     68.500
## 6403    COG     65.800
## 6404    COG     71.300
## 6411    CRI      0.656
## 6412    CRI     23.100
## 6413    CRI      7.800
## 6414    CRI      1.900
## 6415    CRI      0.100
## 6416    CRI      0.400
## 6417    CRI      1.050
## 6418    CRI      3.100
## 6419    CRI     50.000
## 6420    CRI     58.400
## 6421    CRI      0.505
## 6422    CRI      9.800
## 6426    CRI     30.000
## 6427    CRI    102.000
## 6428    CRI     44.000
## 6429    CRI     27.000
## 6431    CRI      6.900
## 6432    CRI      6.700
## 6433    CRI      6.800
## 6434    CRI     36.000
## 6435    CRI     33.200
## 6436    CRI     33.700
## 6437    CRI     22.800
## 6443    CRI     32.000
## 6444    CRI     65.000
## 6445    CRI      0.120
## 6446    CRI      1.000
## 6447    CRI     50.200
## 6449    CRI     58.500
## 6454    CRI     45.400
## 6455    CRI     95.300
## 6459    CRI   3709.000
## 6460    CRI  11329.000
## 6468    CRI     43.000
## 6478    CRI      0.100
## 6479    CRI      2.000
## 6480    CRI     10.000
## 6481    CRI     75.600
## 6482    CRI     78.300
## 6483    CRI     73.100
## 6484    CRI      0.856
## 6486    CRI     83.000
## 6487    CRI     14.300
## 6488    CRI    132.000
## 6489    CRI     16.800
## 6498    CRI     23.700
## 6499    CRI   7787.000
## 6500    CRI     24.100
## 6501    CRI     20.100
## 6502    CRI   7550.000
## 6503    CRI      0.653
## 6521    CRI      1.200
## 6523    CRI      7.700
## 6525    CRI     18.500
## 6531    CRI     94.900
## 6533    CRI     24.500
## 6534    CRI     66.500
## 6535    CRI      2.200
## 6536    CRI      3.200
## 6537    CRI     -1.800
## 6538    CRI      0.160
## 6543    CRI     58.500
## 6544    CRI     32.900
## 6545    CRI     83.900
## 6552    CUB      0.676
## 6553    CUB     27.700
## 6554    CUB     13.000
## 6555    CUB      7.200
## 6556    CUB      0.900
## 6557    CUB      0.900
## 6558    CUB      1.060
## 6559    CUB     10.600
## 6560    CUB     73.400
## 6561    CUB     34.100
## 6562    CUB      0.624
## 6563    CUB     12.300
## 6564    CUB     12.700
## 6565    CUB     11.900
## 6567    CUB     90.000
## 6568    CUB    100.000
## 6569    CUB     89.000
## 6570    CUB     21.000
## 6572    CUB      8.500
## 6573    CUB      7.400
## 6574    CUB      8.200
## 6575    CUB     53.900
## 6576    CUB     51.900
## 6577    CUB     59.800
## 6578    CUB     11.100
## 6580    CUB     12.000
## 6581    CUB     86.000
## 6582    CUB      3.200
## 6583    CUB     19.200
## 6585    CUB     61.700
## 6590    CUB     42.900
## 6591    CUB     85.700
## 6602    CUB     58.000
## 6603    CUB     99.800
## 6609    CUB      0.100
## 6610    CUB      3.000
## 6611    CUB      6.000
## 6612    CUB     74.600
## 6613    CUB     76.600
## 6614    CUB     72.800
## 6615    CUB      0.841
## 6616    CUB    106.000
## 6617    CUB     10.600
## 6618    CUB    149.000
## 6619    CUB     13.300
## 6628    CUB     24.500
## 6629    CUB   4906.000
## 6630    CUB      0.588
## 6640    CUB     -1.400
## 6643    CUB     24.800
## 6648    CUB     76.000
## 6650    CUB     71.100
## 6651    CUB      0.200
## 6655    CUB     50.000
## 6656    CUB     35.900
## 6657    CUB     64.000
## 6662    CYP      0.732
## 6663    CYP     29.900
## 6664    CYP     15.300
## 6665    CYP      0.500
## 6666    CYP      0.100
## 6667    CYP      0.100
## 6668    CYP      1.070
## 6669    CYP      0.800
## 6670    CYP     66.800
## 6671    CYP     39.500
## 6672    CYP      0.546
## 6673    CYP      9.200
## 6674    CYP      9.400
## 6675    CYP      9.100
## 6676    CYP      3.300
## 6677    CYP     40.000
## 6678    CYP     82.000
## 6679    CYP     64.000
## 6680    CYP      9.000
## 6682    CYP      8.700
## 6683    CYP      8.000
## 6684    CYP      9.400
## 6685    CYP     51.200
## 6686    CYP     45.400
## 6687    CYP     57.500
## 6693    CYP     21.000
## 6695    CYP      0.320
## 6696    CYP      5.700
## 6697    CYP     17.400
## 6699    CYP     99.600
## 6700    CYP     28.600
## 6704    CYP      0.500
## 6705    CYP     34.600
## 6716    CYP     16.000
## 6717    CYP    100.000
## 6726    CYP      3.000
## 6727    CYP     23.000
## 6728    CYP     76.600
## 6729    CYP     78.600
## 6730    CYP     74.500
## 6731    CYP      0.870
## 6732    CYP     57.000
## 6733    CYP      9.900
## 6734    CYP    106.000
## 6735    CYP     11.100
## 6745    CYP  23301.000
## 6746    CYP     13.500
## 6747    CYP     24.600
## 6748    CYP  23680.000
## 6749    CYP      0.826
## 6767    CYP      4.700
## 6768    CYP     13.500
## 6770    CYP     27.000
## 6777    CYP    100.000
## 6779    CYP    108.600
## 6780    CYP      2.300
## 6781    CYP      0.700
## 6782    CYP     -1.500
## 6783    CYP      1.410
## 6787    CYP     59.900
## 6788    CYP     46.200
## 6789    CYP     73.400
## 6797    DNK      0.799
## 6798    DNK     37.100
## 6799    DNK     23.200
## 6800    DNK      3.500
## 6801    DNK      0.800
## 6802    DNK      0.300
## 6803    DNK      1.060
## 6804    DNK      5.100
## 6805    DNK     84.800
## 6806    DNK     25.300
## 6807    DNK      0.690
## 6808    DNK     14.100
## 6809    DNK     14.300
## 6810    DNK     13.900
## 6812    DNK     96.000
## 6813    DNK     98.000
## 6814    DNK    109.000
## 6815    DNK     34.000
## 6816    DNK      9.000
## 6817    DNK      8.400
## 6818    DNK      9.600
## 6819    DNK     51.100
## 6820    DNK     58.000
## 6821    DNK     72.000
## 6822    DNK      1.100
## 6827    DNK     11.000
## 6829    DNK      0.290
## 6830    DNK      9.800
## 6831    DNK     12.800
## 6833    DNK     89.600
## 6834    DNK     20.800
## 6838    DNK      7.000
## 6839    DNK      9.200
## 6849    DNK     11.000
## 6859    DNK      2.000
## 6860    DNK     16.000
## 6861    DNK     74.900
## 6862    DNK     77.700
## 6863    DNK     72.100
## 6864    DNK      0.845
## 6865    DNK    101.000
## 6866    DNK      7.400
## 6867    DNK    155.000
## 6868    DNK      9.000
## 6878    DNK  33786.000
## 6879    DNK    173.700
## 6880    DNK     20.400
## 6881    DNK  32969.000
## 6882    DNK      0.876
## 6900    DNK      1.300
## 6901    DNK     13.400
## 6903    DNK     20.800
## 6910    DNK    100.000
## 6912    DNK     67.300
## 6913    DNK      0.800
## 6914    DNK     -1.800
## 6919    DNK     67.300
## 6920    DNK     61.100
## 6921    DNK     73.900
## 6929    DJI     17.400
## 6930    DJI      4.900
## 6931    DJI      0.300
## 6932    DJI      0.000
## 6933    DJI      0.100
## 6934    DJI      1.040
## 6935    DJI      0.600
## 6936    DJI     76.000
## 6937    DJI     85.900
## 6939    DJI      2.700
## 6940    DJI      2.300
## 6941    DJI      3.200
## 6943    DJI      1.000
## 6944    DJI     33.000
## 6945    DJI     10.000
## 6948    DJI     21.500
## 6950    DJI     44.000
## 6953    DJI      0.500
## 6954    DJI      0.200
## 6956    DJI      0.000
## 6961    DJI     26.600
## 6962    DJI     50.000
## 6969    DJI    517.000
## 6978    DJI      0.100
## 6979    DJI      5.000
## 6980    DJI     15.000
## 6981    DJI     56.700
## 6982    DJI     58.300
## 6983    DJI     55.100
## 6984    DJI      0.564
## 6986    DJI    264.000
## 6987    DJI     91.400
## 6988    DJI    319.000
## 6989    DJI    117.600
## 6998    DJI     40.600
## 7002    DJI   2031.000
## 7003    DJI      0.455
## 7020    DJI     35.400
## 7042    DJI     87.800
## 7051    DJI     63.400
## 7052    DJI     46.200
## 7053    DJI     80.500
## 7060    DMA      0.100
## 7061    DMA     63.100
## 7063    DMA     11.400
## 7065    DMA     75.000
## 7066    DMA    103.000
## 7067    DMA     70.000
## 7077    DMA      0.120
## 7078    DMA      0.800
## 7079    DMA     66.700
## 7081    DMA      0.000
## 7084    DMA     14.600
## 7085    DMA     90.000
## 7090    DMA      3.000
## 7091    DMA     12.000
## 7092    DMA     75.600
## 7093    DMA      0.856
## 7094    DMA    113.000
## 7095    DMA     14.000
## 7096    DMA    154.000
## 7097    DMA     17.100
## 7103    DMA     59.600
## 7104    DMA   6730.000
## 7105    DMA      0.500
## 7106    DMA   6335.000
## 7107    DMA      0.627
## 7114    DMA     66.000
## 7115    DMA      6.600
## 7116    DMA    135.100
## 7117    DMA      7.700
## 7118    DMA     12.200
## 7119    DMA     -7.500
## 7120    DMA      8.370
## 7123    DOM      0.598
## 7124    DOM     20.200
## 7125    DOM      6.800
## 7126    DOM      4.100
## 7127    DOM      0.300
## 7128    DOM      1.000
## 7129    DOM      1.050
## 7130    DOM      7.200
## 7131    DOM     55.200
## 7132    DOM     67.400
## 7133    DOM      0.485
## 7134    DOM     11.500
## 7143    DOM      5.000
## 7144    DOM      5.200
## 7145    DOM      5.400
## 7146    DOM     29.500
## 7147    DOM     25.900
## 7148    DOM     25.300
## 7157    DOM      0.230
## 7158    DOM      1.300
## 7159    DOM     22.900
## 7161    DOM     76.500
## 7166    DOM     28.000
## 7167    DOM    110.200
## 7180    DOM    198.000
## 7191    DOM      0.600
## 7192    DOM     13.000
## 7193    DOM     30.000
## 7194    DOM     67.900
## 7195    DOM     70.500
## 7196    DOM     65.500
## 7197    DOM      0.736
## 7199    DOM    164.000
## 7200    DOM     46.300
## 7201    DOM    235.000
## 7202    DOM     59.900
## 7211    DOM     31.500
## 7212    DOM   5477.000
## 7213    DOM     39.300
## 7214    DOM     24.900
## 7215    DOM   5243.000
## 7216    DOM      0.598
## 7233    DOM     -3.900
## 7248    DOM     10.900
## 7250    DOM     25.100
## 7256    DOM     60.900
## 7258    DOM     12.500
## 7259    DOM     77.500
## 7260    DOM      1.900
## 7261    DOM      1.500
## 7262    DOM     -1.900
## 7263    DOM      4.450
## 7268    DOM     63.800
## 7269    DOM     43.600
## 7270    DOM     84.000
## 7277    ECU      0.643
## 7278    ECU     20.500
## 7279    ECU      7.400
## 7280    ECU      5.900
## 7281    ECU      0.400
## 7282    ECU      1.400
## 7283    ECU      1.050
## 7284    ECU     10.200
## 7285    ECU     55.100
## 7286    ECU     66.400
## 7287    ECU      0.551
## 7288    ECU     11.900
## 7292    ECU     43.000
## 7293    ECU    124.000
## 7294    ECU     58.000
## 7295    ECU     20.000
## 7296    ECU     88.300
## 7297    ECU      6.600
## 7298    ECU      6.100
## 7299    ECU      6.800
## 7300    ECU     35.300
## 7301    ECU     33.300
## 7302    ECU     37.600
## 7306    ECU     30.000
## 7308    ECU      0.220
## 7309    ECU      1.600
## 7310    ECU     52.800
## 7312    ECU     78.200
## 7317    ECU     24.200
## 7318    ECU     88.700
## 7331    ECU    185.000
## 7342    ECU      0.100
## 7343    ECU     13.000
## 7344    ECU     40.000
## 7345    ECU     69.000
## 7346    ECU     71.500
## 7347    ECU     66.600
## 7348    ECU      0.754
## 7350    ECU    130.000
## 7351    ECU     44.100
## 7352    ECU    204.000
## 7353    ECU     56.700
## 7362    ECU     10.500
## 7363    ECU   7472.000
## 7364    ECU     76.300
## 7365    ECU     18.300
## 7366    ECU   6887.000
## 7367    ECU      0.639
## 7385    ECU     -0.400
## 7400    ECU     34.700
## 7402    ECU     24.100
## 7409    ECU     77.200
## 7411    ECU     33.200
## 7412    ECU     44.600
## 7413    ECU      0.800
## 7414    ECU      1.100
## 7416    ECU      0.330
## 7420    ECU     63.500
## 7421    ECU     45.700
## 7422    ECU     81.300
## 7429    EGY      0.546
## 7430    EGY     19.600
## 7431    EGY      8.300
## 7432    EGY     31.300
## 7433    EGY      2.600
## 7434    EGY      9.000
## 7435    EGY      1.060
## 7436    EGY     57.400
## 7437    EGY     43.500
## 7438    EGY     75.300
## 7439    EGY      0.389
## 7440    EGY      9.800
## 7441    EGY      8.600
## 7442    EGY     10.900
## 7444    EGY      5.000
## 7445    EGY     89.000
## 7446    EGY     72.000
## 7447    EGY     14.000
## 7449    EGY      3.500
## 7450    EGY      2.200
## 7451    EGY      4.900
## 7452    EGY     24.500
## 7453    EGY     15.400
## 7454    EGY     33.800
## 7458    EGY     25.000
## 7460    EGY      0.220
## 7461    EGY      1.300
## 7462    EGY      0.000
## 7464    EGY     94.100
## 7469    EGY      8.500
## 7470    EGY     86.100
## 7482    EGY    106.000
## 7493    EGY      0.100
## 7494    EGY      5.000
## 7495    EGY     14.000
## 7496    EGY     64.600
## 7497    EGY     67.000
## 7498    EGY     62.200
## 7499    EGY      0.686
## 7500    EGY    144.000
## 7501    EGY     63.000
## 7502    EGY    231.000
## 7503    EGY     85.900
## 7512    EGY     99.800
## 7513    EGY   5909.000
## 7514    EGY    339.300
## 7515    EGY     26.900
## 7516    EGY   5759.000
## 7517    EGY      0.612
## 7535    EGY     -0.800
## 7550    EGY     11.500
## 7552    EGY     28.800
## 7559    EGY     90.200
## 7561    EGY     28.600
## 7562    EGY     52.800
## 7563    EGY      1.700
## 7564    EGY     14.400
## 7565    EGY     -1.700
## 7566    EGY      9.930
## 7571    EGY     46.600
## 7572    EGY     21.300
## 7573    EGY     72.500
## 7580    SLV      0.529
## 7581    SLV     19.700
## 7582    SLV      7.800
## 7583    SLV      2.900
## 7584    SLV      0.200
## 7585    SLV      0.700
## 7586    SLV      1.050
## 7587    SLV      5.300
## 7588    SLV     49.300
## 7589    SLV     71.700
## 7590    SLV      0.382
## 7591    SLV      9.300
## 7598    SLV     16.000
## 7600    SLV      3.700
## 7601    SLV      3.500
## 7602    SLV      4.000
## 7603    SLV     16.300
## 7604    SLV     15.100
## 7605    SLV     17.700
## 7611    SLV      0.110
## 7612    SLV      0.500
## 7613    SLV     18.200
## 7615    SLV     31.400
## 7620    SLV     67.100
## 7621    SLV    108.200
## 7634    SLV    157.000
## 7645    SLV      0.300
## 7646    SLV      7.000
## 7647    SLV      2.000
## 7648    SLV     64.000
## 7649    SLV     68.900
## 7650    SLV     59.300
## 7651    SLV      0.677
## 7653    SLV    159.000
## 7654    SLV     46.100
## 7655    SLV    340.000
## 7656    SLV     59.600
## 7665    SLV     24.000
## 7666    SLV   4545.000
## 7667    SLV     23.900
## 7668    SLV     13.700
## 7669    SLV   4400.000
## 7670    SLV      0.572
## 7688    SLV    -10.100
## 7703    SLV      7.300
## 7705    SLV     13.800
## 7712    SLV     51.500
## 7714    SLV     21.700
## 7715    SLV     49.600
## 7716    SLV      0.000
## 7717    SLV      7.400
## 7719    SLV      7.600
## 7724    SLV     60.700
## 7725    SLV     39.700
## 7726    SLV     83.900
## 7735    ETH     16.800
## 7736    ETH      6.200
## 7737    ETH     24.300
## 7738    ETH      1.500
## 7739    ETH      9.100
## 7740    ETH      1.040
## 7741    ETH     48.100
## 7742    ETH     12.600
## 7743    ETH     91.500
## 7745    ETH      3.100
## 7746    ETH      2.500
## 7747    ETH      3.300
## 7749    ETH      2.000
## 7750    ETH     35.000
## 7752    ETH      1.000
## 7763    ETH     41.000
## 7765    ETH      0.100
## 7766    ETH      0.100
## 7767    ETH     15.200
## 7769    ETH      3.600
## 7774    ETH     96.600
## 7775    ETH    119.300
## 7778    ETH      4.800
## 7788    ETH   1250.000
## 7799    ETH      1.500
## 7800    ETH     27.000
## 7801    ETH     62.000
## 7802    ETH     47.100
## 7803    ETH     48.700
## 7804    ETH     45.600
## 7805    ETH      0.417
## 7807    ETH    356.000
## 7808    ETH    120.800
## 7809    ETH    414.000
## 7810    ETH    203.200
## 7819    ETH     39.200
## 7820    ETH    652.000
## 7821    ETH     31.400
## 7823    ETH    648.000
## 7824    ETH      0.282
## 7840    ETH      3.500
## 7857    ETH      0.000
## 7866    ETH     39.000
## 7869    ETH      8.300
## 7870    ETH      0.000
## 7871    ETH      0.040
## 7876    ETH     78.000
## 7877    ETH     66.500
## 7878    ETH     89.700
## 7885    FJI      0.643
## 7886    FJI     20.900
## 7887    FJI      5.000
## 7888    FJI      0.400
## 7889    FJI      0.000
## 7890    FJI      0.100
## 7891    FJI      1.060
## 7892    FJI      0.700
## 7893    FJI     41.600
## 7894    FJI     65.600
## 7895    FJI      0.616
## 7896    FJI     12.100
## 7900    FJI     13.000
## 7904    FJI      8.400
## 7905    FJI      6.400
## 7906    FJI      6.900
## 7907    FJI     52.400
## 7908    FJI     30.300
## 7909    FJI     33.700
## 7914    FJI      0.190
## 7915    FJI      1.100
## 7916    FJI     52.200
## 7918    FJI      0.000
## 7923    FJI     53.100
## 7924    FJI     63.300
## 7934    FJI     63.000
## 7935    FJI     95.300
## 7943    FJI      0.100
## 7944    FJI      2.000
## 7945    FJI     16.000
## 7946    FJI     65.500
## 7947    FJI     67.600
## 7948    FJI     63.600
## 7949    FJI      0.700
## 7950    FJI    192.000
## 7951    FJI     23.800
## 7952    FJI    265.000
## 7953    FJI     28.400
## 7961    FJI     38.500
## 7962    FJI   5891.000
## 7963    FJI      4.300
## 7964    FJI     12.500
## 7965    FJI   5928.000
## 7966    FJI      0.617
## 7983    FJI    -18.600
## 7985    FJI     -2.900
## 7987    FJI     14.300
## 7992    FJI     41.800
## 7994    FJI      9.200
## 7995    FJI    129.500
## 7996    FJI      6.900
## 7997    FJI      3.800
## 7998    FJI     -5.900
## 7999    FJI      1.640
## 8003    FJI     60.100
## 8004    FJI     39.900
## 8005    FJI     79.800
## 8012    FIN      0.784
## 8013    FIN     36.400
## 8014    FIN     20.000
## 8015    FIN      3.400
## 8016    FIN      0.700
## 8017    FIN      0.300
## 8018    FIN      1.050
## 8019    FIN      5.000
## 8020    FIN     79.400
## 8021    FIN     28.700
## 8022    FIN      0.666
## 8023    FIN     15.000
## 8024    FIN     15.700
## 8025    FIN     14.300
## 8026    FIN      5.300
## 8027    FIN     34.000
## 8028    FIN     98.000
## 8029    FIN    114.000
## 8030    FIN     44.000
## 8031    FIN      7.500
## 8032    FIN      7.100
## 8033    FIN      8.200
## 8034    FIN     44.400
## 8035    FIN     65.900
## 8036    FIN     81.500
## 8037    FIN      1.100
## 8044    FIN      0.360
## 8045    FIN     10.400
## 8046    FIN     71.800
## 8048    FIN     55.500
## 8049    FIN      2.100
## 8053    FIN     24.500
## 8054    FIN     12.700
## 8055    FIN     77.400
## 8065    FIN      6.000
## 8066    FIN     98.800
## 8075    FIN      4.000
## 8076    FIN      3.000
## 8077    FIN     75.300
## 8078    FIN     79.100
## 8079    FIN     71.200
## 8080    FIN      0.850
## 8081    FIN     70.000
## 8082    FIN      5.500
## 8083    FIN    183.000
## 8084    FIN      6.700
## 8094    FIN  28906.000
## 8095    FIN    144.100
## 8096    FIN     29.700
## 8097    FIN  28133.000
## 8098    FIN      0.852
## 8116    FIN      0.700
## 8117    FIN     11.400
## 8119    FIN     30.100
## 8126    FIN    100.000
## 8128    FIN     45.800
## 8129    FIN      0.600
## 8130    FIN     -2.300
## 8131    FIN      0.040
## 8135    FIN     65.200
## 8136    FIN     59.000
## 8137    FIN     71.900
## 8144    FRA      0.779
## 8145    FRA     35.000
## 8146    FRA     21.200
## 8147    FRA     37.600
## 8148    FRA      8.000
## 8149    FRA      3.800
## 8150    FRA      1.050
## 8151    FRA     57.000
## 8152    FRA     74.100
## 8153    FRA     30.100
## 8154    FRA      0.632
## 8155    FRA     14.200
## 8156    FRA     14.500
## 8157    FRA     13.900
## 8158    FRA      4.500
## 8159    FRA    108.000
## 8160    FRA    112.000
## 8161    FRA     97.000
## 8162    FRA     37.000
## 8163    FRA      7.100
## 8164    FRA      7.000
## 8165    FRA      7.800
## 8166    FRA     48.300
## 8167    FRA     44.400
## 8168    FRA     53.000
## 8169    FRA      3.400
## 8174    FRA     91.000
## 8175    FRA      0.220
## 8176    FRA      6.400
## 8177    FRA     26.400
## 8179    FRA     58.200
## 8184    FRA     10.400
## 8185    FRA     13.700
## 8196    FRA     15.000
## 8207    FRA      0.300
## 8208    FRA      3.000
## 8209    FRA     29.000
## 8210    FRA     76.600
## 8211    FRA     80.800
## 8212    FRA     72.500
## 8213    FRA      0.871
## 8214    FRA     69.000
## 8215    FRA      7.400
## 8216    FRA    168.000
## 8217    FRA      9.000
## 8227    FRA  29515.000
## 8228    FRA   1727.000
## 8229    FRA     23.400
## 8230    FRA  29661.000
## 8231    FRA      0.860
## 8249    FRA      1.700
## 8250    FRA     12.100
## 8252    FRA     24.400
## 8259    FRA    100.000
## 8261    FRA     42.700
## 8262    FRA      1.000
## 8263    FRA     -1.000
## 8264    FRA      0.320
## 8268    FRA     55.700
## 8269    FRA     46.300
## 8270    FRA     65.700
## 8278    GEO     31.000
## 8279    GEO     14.100
## 8280    GEO      3.600
## 8281    GEO      0.500
## 8282    GEO      0.500
## 8283    GEO      1.080
## 8284    GEO      5.400
## 8285    GEO     55.000
## 8286    GEO     37.800
## 8288    GEO     12.400
## 8289    GEO     12.200
## 8290    GEO     12.600
## 8301    GEO     83.900
## 8302    GEO     88.000
## 8313    GEO     39.600
## 8315    GEO     88.800
## 8320    GEO     12.800
## 8321    GEO     53.800
## 8333    GEO     34.000
## 8334    GEO     96.600
## 8345    GEO      0.100
## 8348    GEO     70.300
## 8349    GEO     73.900
## 8350    GEO     66.300
## 8351    GEO      0.773
## 8353    GEO     85.000
## 8354    GEO     40.400
## 8355    GEO    218.000
## 8356    GEO     47.200
## 8366    GEO   8007.000
## 8367    GEO     38.400
## 8368    GEO     23.300
## 8369    GEO   7589.000
## 8370    GEO      0.654
## 8388    GEO     -1.600
## 8392    GEO     30.700
## 8399    GEO     96.200
## 8402    GEO     85.300
## 8411    GEO     66.300
## 8412    GEO     58.100
## 8413    GEO     75.700
## 8419    GHA      0.455
## 8420    GHA     17.800
## 8421    GHA      5.200
## 8422    GHA      7.800
## 8423    GHA      0.400
## 8424    GHA      2.500
## 8425    GHA      1.050
## 8426    GHA     14.600
## 8427    GHA     36.400
## 8428    GHA     82.000
## 8429    GHA      0.375
## 8430    GHA      7.600
## 8434    GHA     36.000
## 8435    GHA     72.000
## 8436    GHA     36.000
## 8439    GHA      4.900
## 8440    GHA      3.400
## 8441    GHA      6.600
## 8442    GHA     41.400
## 8443    GHA     26.700
## 8444    GHA     55.800
## 8447    GHA     27.000
## 8449    GHA      0.140
## 8450    GHA      0.300
## 8451    GHA     37.900
## 8453    GHA     18.200
## 8458    GHA     80.600
## 8459    GHA    118.000
## 8472    GHA    634.000
## 8484    GHA      1.500
## 8485    GHA     20.000
## 8486    GHA     39.000
## 8487    GHA     56.800
## 8488    GHA     57.900
## 8489    GHA     55.700
## 8490    GHA      0.565
## 8492    GHA    256.000
## 8493    GHA     79.600
## 8494    GHA    305.000
## 8495    GHA    126.900
## 8504    GHA     17.500
## 8505    GHA   1920.000
## 8506    GHA     28.100
## 8507    GHA     14.400
## 8508    GHA   1897.000
## 8509    GHA      0.444
## 8526    GHA     -0.400
## 8541    GHA      3.600
## 8543    GHA     14.400
## 8552    GHA     38.800
## 8553    GHA     42.700
## 8554    GHA      0.300
## 8555    GHA      9.700
## 8556    GHA     -0.300
## 8557    GHA      0.100
## 8562    GHA     75.500
## 8563    GHA     72.400
## 8564    GHA     78.600
## 8572    GRD     20.400
## 8573    GRD     14.800
## 8574    GRD      0.100
## 8575    GRD      0.000
## 8576    GRD      0.000
## 8577    GRD      1.050
## 8578    GRD      0.100
## 8579    GRD     33.400
## 8580    GRD     73.200
## 8582    GRD     12.600
## 8587    GRD    117.000
## 8588    GRD     91.000
## 8593    GRD     25.000
## 8595    GRD      0.150
## 8596    GRD      1.100
## 8597    GRD     50.000
## 8599    GRD      0.000
## 8604    GRD      8.300
## 8605    GRD     99.200
## 8606    GRD    100.000
## 8607    GRD     54.300
## 8610    GRD     41.000
## 8614    GRD      7.000
## 8615    GRD     15.000
## 8616    GRD     68.600
## 8617    GRD     70.800
## 8618    GRD     66.300
## 8619    GRD      0.748
## 8620    GRD    148.000
## 8621    GRD     18.000
## 8622    GRD    244.000
## 8623    GRD     22.400
## 8631    GRD     46.700
## 8632    GRD   7242.000
## 8633    GRD      0.700
## 8634    GRD   6809.000
## 8635    GRD      0.638
## 8642    GRD    -30.600
## 8646    GRD     81.600
## 8647    GRD      4.300
## 8648    GRD     83.400
## 8649    GRD      4.600
## 8650    GRD      5.200
## 8651    GRD     -4.600
## 8652    GRD      6.460
## 8655    GIN      0.276
## 8656    GIN     18.200
## 8657    GIN      6.600
## 8658    GIN      3.200
## 8659    GIN      0.200
## 8660    GIN      1.100
## 8661    GIN      1.020
## 8662    GIN      6.000
## 8663    GIN     28.000
## 8664    GIN     83.100
## 8665    GIN      0.121
## 8666    GIN      2.900
## 8667    GIN      1.700
## 8668    GIN      4.200
## 8671    GIN     35.000
## 8672    GIN     11.000
## 8673    GIN      1.000
## 8675    GIN      1.200
## 8679    GIN     34.200
## 8681    GIN     38.000
## 8682    GIN     82.000
## 8683    GIN      0.120
## 8684    GIN      0.200
## 8685    GIN     29.600
## 8690    GIN     89.300
## 8691    GIN    181.300
## 8701    GIN   1040.000
## 8711    GIN      0.800
## 8712    GIN     60.000
## 8713    GIN     65.000
## 8714    GIN     49.900
## 8715    GIN     50.900
## 8716    GIN     49.000
## 8717    GIN      0.461
## 8719    GIN    267.000
## 8720    GIN    138.700
## 8721    GIN    306.000
## 8722    GIN    234.800
## 8732    GIN   1412.000
## 8733    GIN      8.500
## 8734    GIN     22.900
## 8735    GIN   1210.000
## 8736    GIN      0.377
## 8753    GIN      5.800
## 8768    GIN      5.700
## 8770    GIN     24.500
## 8777    GIN     20.100
## 8778    GIN     64.500
## 8779    GIN      0.700
## 8780    GIN     11.600
## 8782    GIN      0.670
## 8787    GIN     65.600
## 8788    GIN     63.000
## 8789    GIN     68.200
## 8796    GNB     16.900
## 8797    GNB      6.300
## 8798    GNB      0.500
## 8799    GNB      0.000
## 8800    GNB      0.200
## 8801    GNB      1.030
## 8802    GNB      1.000
## 8803    GNB     30.800
## 8804    GNB     91.000
## 8806    GNB      3.700
## 8818    GNB      0.110
## 8819    GNB      0.200
## 8820    GNB     78.800
## 8822    GNB      0.000
## 8827    GNB     88.600
## 8828    GNB    132.100
## 8835    GNB    907.000
## 8844    GNB      0.200
## 8845    GNB     18.000
## 8846    GNB     47.000
## 8847    GNB     49.100
## 8848    GNB     51.300
## 8849    GNB     46.900
## 8850    GNB      0.447
## 8852    GNB    286.000
## 8853    GNB    129.700
## 8854    GNB    363.000
## 8855    GNB    219.200
## 8863    GNB     77.500
## 8864    GNB   1574.000
## 8865    GNB      1.600
## 8866    GNB     29.900
## 8867    GNB   1335.000
## 8868    GNB      0.391
## 8884    GNB     -5.900
## 8899    GNB      7.800
## 8901    GNB     29.900
## 8908    GNB     32.300
## 8909    GNB     47.000
## 8910    GNB      0.800
## 8911    GNB     54.200
## 8912    GNB      0.000
## 8913    GNB      0.410
## 8918    GNB     73.500
## 8919    GNB     65.100
## 8920    GNB     82.600
## 8926    GUY      0.538
## 8927    GUY     21.100
## 8928    GUY      6.600
## 8929    GUY      0.400
## 8930    GUY      0.000
## 8931    GUY      0.100
## 8932    GUY      1.050
## 8933    GUY      0.700
## 8934    GUY     29.600
## 8935    GUY     60.300
## 8936    GUY      0.507
## 8937    GUY     10.100
## 8944    GUY      5.000
## 8946    GUY      6.800
## 8947    GUY      6.800
## 8948    GUY      6.800
## 8949    GUY     31.400
## 8950    GUY     32.500
## 8951    GUY     30.600
## 8957    GUY      0.540
## 8958    GUY      1.500
## 8959    GUY     84.600
## 8961    GUY      0.000
## 8966    GUY     42.200
## 8967    GUY     78.500
## 8980    GUY    171.000
## 8989    GUY      0.100
## 8990    GUY      6.000
## 8991    GUY     27.000
## 8992    GUY     63.300
## 8993    GUY     66.900
## 8994    GUY     60.000
## 8995    GUY      0.666
## 8997    GUY    187.000
## 8998    GUY     46.400
## 8999    GUY    305.000
## 9000    GUY     60.100
## 9009    GUY    265.900
## 9010    GUY   2843.000
## 9011    GUY      2.100
## 9012    GUY     27.700
## 9013    GUY   2113.000
## 9014    GUY      0.461
## 9028    GUY    -27.100
## 9043    GUY     31.100
## 9048    GUY     61.000
## 9050    GUY    142.600
## 9051    GUY      2.000
## 9052    GUY     61.200
## 9059    GUY     59.500
## 9060    GUY     37.300
## 9061    GUY     82.700
## 9068    HND      0.506
## 9069    HND     16.900
## 9070    HND      6.600
## 9071    HND      2.500
## 9072    HND      0.200
## 9073    HND      0.900
## 9074    HND      1.050
## 9075    HND      5.000
## 9076    HND     40.500
## 9077    HND     90.400
## 9078    HND      0.355
## 9079    HND      8.600
## 9080    HND      8.800
## 9081    HND      8.400
## 9083    HND     12.000
## 9084    HND    105.000
## 9086    HND      9.000
## 9088    HND      3.500
## 9089    HND      4.200
## 9090    HND      4.400
## 9091    HND     19.000
## 9092    HND     18.600
## 9093    HND     12.700
## 9095    HND     35.000
## 9097    HND      0.160
## 9098    HND      0.500
## 9099    HND     72.700
## 9101    HND     30.000
## 9105    HND     70.100
## 9106    HND    133.500
## 9119    HND    272.000
## 9130    HND      0.700
## 9131    HND      6.000
## 9132    HND     10.000
## 9133    HND     66.700
## 9134    HND     69.000
## 9135    HND     64.500
## 9136    HND      0.719
## 9138    HND    176.000
## 9139    HND     45.100
## 9140    HND    235.000
## 9141    HND     58.100
## 9150    HND     40.900
## 9151    HND   3172.000
## 9152    HND     15.700
## 9153    HND     20.200
## 9154    HND   2894.000
## 9155    HND      0.508
## 9172    HND     -3.200
## 9187    HND     15.400
## 9189    HND     23.000
## 9196    HND     30.300
## 9198    HND     38.300
## 9199    HND     77.100
## 9200    HND      1.400
## 9201    HND     16.000
## 9202    HND     -1.400
## 9203    HND      2.060
## 9207    HND     65.600
## 9208    HND     43.200
## 9209    HND     89.200
## 9216    IND      0.427
## 9217    IND     21.100
## 9218    IND      6.600
## 9219    IND    506.800
## 9220    IND     33.300
## 9221    IND    121.400
## 9222    IND      1.070
## 9223    IND    870.100
## 9224    IND     25.500
## 9225    IND     65.100
## 9226    IND      0.311
## 9227    IND      7.600
## 9228    IND      6.400
## 9229    IND      8.800
## 9231    IND      3.000
## 9232    IND     92.000
## 9234    IND      6.000
## 9236    IND      3.000
## 9237    IND      1.700
## 9238    IND      4.100
## 9239    IND     24.000
## 9240    IND     13.400
## 9241    IND     33.300
## 9246    IND      0.410
## 9247    IND      0.700
## 9248    IND     21.500
## 9250    IND     53.800
## 9251    IND     26.200
## 9255    IND     58.700
## 9256    IND    106.000
## 9268    IND    556.000
## 9279    IND      0.100
## 9280    IND     12.000
## 9281    IND     44.000
## 9282    IND     57.900
## 9283    IND     58.300
## 9284    IND     57.600
## 9285    IND      0.583
## 9287    IND    237.000
## 9288    IND     88.400
## 9289    IND    281.000
## 9290    IND    125.900
## 9299    IND     51.500
## 9300    IND   1755.000
## 9301    IND   1527.000
## 9302    IND     25.700
## 9303    IND   1733.000
## 9304    IND      0.431
## 9321    IND      0.000
## 9336    IND     14.500
## 9338    IND     29.000
## 9344    IND     29.700
## 9346    IND     33.000
## 9347    IND     15.700
## 9348    IND      0.100
## 9349    IND      0.400
## 9350    IND      0.000
## 9351    IND      0.750
## 9355    IND     60.700
## 9356    IND     35.100
## 9357    IND     84.500
## 9364    IRN      0.577
## 9365    IRN     17.200
## 9366    IRN      6.500
## 9367    IRN     28.800
## 9368    IRN      1.900
## 9369    IRN      9.400
## 9370    IRN      1.050
## 9371    IRN     56.200
## 9372    IRN     56.300
## 9373    IRN     88.500
## 9374    IRN      0.397
## 9375    IRN      9.200
## 9378    IRN      3.800
## 9379    IRN     12.000
## 9380    IRN    106.000
## 9381    IRN     53.000
## 9384    IRN      4.200
## 9385    IRN      3.100
## 9386    IRN      5.400
## 9387    IRN     25.600
## 9388    IRN     26.000
## 9389    IRN     36.200
## 9390    IRN      9.200
## 9394    IRN     79.000
## 9395    IRN      0.330
## 9396    IRN      3.700
## 9397    IRN      5.600
## 9399    IRN     98.900
## 9404    IRN      1.200
## 9405    IRN    111.400
## 9417    IRN    123.000
## 9427    IRN      0.100
## 9428    IRN      3.000
## 9429    IRN     15.000
## 9430    IRN     63.800
## 9431    IRN     66.300
## 9432    IRN     61.600
## 9433    IRN      0.674
## 9435    IRN    184.000
## 9436    IRN     44.100
## 9437    IRN    279.000
## 9438    IRN     56.700
## 9447    IRN     59.900
## 9448    IRN  11393.000
## 9449    IRN    640.600
## 9450    IRN     27.000
## 9451    IRN  11420.000
## 9452    IRN      0.716
## 9470    IRN      5.200
## 9472    IRN      2.000
## 9474    IRN     33.000
## 9480    IRN     90.300
## 9481    IRN      3.200
## 9482    IRN     37.100
## 9483    IRN     -0.300
## 9484    IRN      0.100
## 9485    IRN      0.000
## 9490    IRN     46.400
## 9491    IRN      9.800
## 9492    IRN     81.800
## 9499    ITA      0.769
## 9500    ITA     37.000
## 9501    ITA     21.600
## 9502    ITA     39.200
## 9503    ITA      8.500
## 9504    ITA      2.800
## 9505    ITA      1.060
## 9506    ITA     57.100
## 9507    ITA     66.700
## 9508    ITA     24.000
## 9509    ITA      0.599
## 9510    ITA     12.800
## 9511    ITA     12.800
## 9512    ITA     12.800
## 9514    ITA     90.000
## 9515    ITA     98.000
## 9516    ITA     80.000
## 9517    ITA     30.000
## 9519    ITA      7.300
## 9520    ITA      6.800
## 9521    ITA      7.800
## 9522    ITA     49.700
## 9523    ITA     44.100
## 9524    ITA     55.700
## 9529    ITA     12.000
## 9530    ITA     94.000
## 9531    ITA      0.240
## 9532    ITA      7.400
## 9533    ITA     25.800
## 9535    ITA     93.400
## 9540    ITA      3.800
## 9541    ITA     10.000
## 9552    ITA      8.000
## 9562    ITA      0.100
## 9563    ITA      6.000
## 9564    ITA     57.000
## 9565    ITA     76.900
## 9566    ITA     80.200
## 9567    ITA     73.600
## 9568    ITA      0.876
## 9569    ITA     61.000
## 9570    ITA      8.400
## 9571    ITA    131.000
## 9572    ITA      9.700
## 9582    ITA  31142.000
## 9583    ITA   1766.300
## 9584    ITA     22.000
## 9585    ITA  30729.000
## 9586    ITA      0.865
## 9604    ITA      0.000
## 9605    ITA      9.500
## 9607    ITA     22.300
## 9614    ITA    100.000
## 9616    ITA     36.400
## 9617    ITA      0.500
## 9618    ITA      0.100
## 9619    ITA      0.430
## 9623    ITA     50.500
## 9624    ITA     35.300
## 9625    ITA     66.900
## 9632    JOR      0.617
## 9633    JOR     16.800
## 9634    JOR      6.300
## 9635    JOR      1.800
## 9636    JOR      0.100
## 9637    JOR      0.600
## 9638    JOR      1.050
## 9639    JOR      3.600
## 9640    JOR     73.300
## 9641    JOR     89.700
## 9642    JOR      0.496
## 9643    JOR     11.700
## 9644    JOR     11.900
## 9645    JOR     11.500
## 9647    JOR     19.000
## 9648    JOR     98.000
## 9649    JOR     74.000
## 9650    JOR     19.000
## 9652    JOR      5.100
## 9653    JOR      3.800
## 9654    JOR      6.600
## 9655    JOR     35.600
## 9656    JOR     20.800
## 9657    JOR     29.400
## 9666    JOR      0.470
## 9667    JOR      2.900
## 9668    JOR      1.100
## 9670    JOR     98.100
## 9675    JOR      2.800
## 9676    JOR     56.800
## 9677    JOR     80.200
## 9679    JOR     40.000
## 9688    JOR    110.000
## 9689    JOR     87.200
## 9693    JOR     26.500
## 9699    JOR      0.100
## 9700    JOR      3.000
## 9701    JOR     13.000
## 9702    JOR     69.900
## 9703    JOR     71.400
## 9704    JOR     68.600
## 9705    JOR      0.767
## 9706    JOR    133.000
## 9707    JOR     29.900
## 9708    JOR    173.000
## 9709    JOR     36.500
## 9718    JOR    106.300
## 9719    JOR   6283.000
## 9720    JOR     22.400
## 9721    JOR     25.100
## 9722    JOR   5923.000
## 9723    JOR      0.617
## 9740    JOR     10.600
## 9755    JOR     15.800
## 9757    JOR     30.800
## 9763    JOR     90.000
## 9764    JOR     24.400
## 9765    JOR    149.500
## 9766    JOR      0.900
## 9767    JOR     24.100
## 9768    JOR     -1.700
## 9769    JOR     12.000
## 9774    JOR     40.500
## 9775    JOR     10.600
## 9776    JOR     67.100
## 9782    KEN      0.468
## 9783    KEN     15.500
## 9784    KEN      5.600
## 9785    KEN     11.300
## 9786    KEN      0.600
## 9787    KEN      4.400
## 9788    KEN      1.030
## 9789    KEN     23.400
## 9790    KEN     16.700
## 9791    KEN    101.500
## 9792    KEN      0.376
## 9793    KEN      9.100
## 9797    KEN     34.000
## 9798    KEN    101.000
## 9802    KEN      3.700
## 9803    KEN      2.500
## 9804    KEN      5.000
## 9805    KEN     15.000
## 9806    KEN      8.400
## 9807    KEN     23.400
## 9812    KEN      0.100
## 9813    KEN      0.200
## 9814    KEN      8.300
## 9816    KEN     17.800
## 9817    KEN      6.700
## 9821    KEN     77.500
## 9822    KEN    147.800
## 9833    KEN    687.000
## 9844    KEN      5.900
## 9845    KEN      8.000
## 9846    KEN     22.000
## 9847    KEN     57.500
## 9848    KEN     60.000
## 9849    KEN     55.200
## 9850    KEN      0.577
## 9852    KEN    283.000
## 9853    KEN     63.400
## 9854    KEN    373.000
## 9855    KEN     98.100
## 9864    KEN     35.800
## 9865    KEN   2380.000
## 9866    KEN     55.700
## 9867    KEN     20.600
## 9868    KEN   2297.000
## 9869    KEN      0.473
## 9885    KEN      0.000
## 9899    KEN      5.400
## 9901    KEN     24.200
## 9909    KEN     35.400
## 9910    KEN     57.000
## 9911    KEN      0.700
## 9912    KEN     14.400
## 9913    KEN     -0.700
## 9914    KEN      1.620
## 9918    KEN     73.800
## 9919    KEN     70.300
## 9920    KEN     77.400
## 9927    KIR     20.400
## 9928    KIR      6.100
## 9929    KIR      0.000
## 9930    KIR      0.000
## 9931    KIR      0.000
## 9932    KIR      1.070
## 9933    KIR      0.100
## 9934    KIR     35.000
## 9935    KIR     71.600
## 9937    KIR     10.400
## 9938    KIR     10.500
## 9939    KIR     10.400
## 9941    KIR    117.000
## 9942    KIR     37.000
## 9946    KIR     29.000
## 9948    KIR      0.150
## 9949    KIR      0.300
## 9950    KIR     15.000
## 9952    KIR      0.000
## 9956    KIR      5.200
## 9957    KIR     49.300
## 9962    KIR    234.000
## 9963    KIR     60.000
## 9969    KIR      2.000
## 9970    KIR     25.000
## 9971    KIR     60.400
## 9972    KIR     63.200
## 9973    KIR     57.600
## 9974    KIR      0.621
## 9975    KIR    220.000
## 9976    KIR     69.300
## 9977    KIR    298.000
## 9978    KIR     95.800
## 9987    KIR   1961.000
## 9988    KIR      0.100
## 9989    KIR     66.000
## 9990    KIR   2162.000
## 9991    KIR      0.464
## 10007   KIR     -2.200
## 10009   KIR     66.500
## 10013   KIR    138.100
## 10014   KIR      0.800
## 10015   KIR     41.900
## 10016   KIR     20.200
## 10017   KIR     12.920
## 10019   KGZ      0.618
## 10020   KGZ     21.800
## 10021   KGZ      8.700
## 10022   KGZ      2.500
## 10023   KGZ      0.200
## 10024   KGZ      0.600
## 10025   KGZ      1.050
## 10026   KGZ      4.400
## 10027   KGZ     37.800
## 10028   KGZ     65.100
## 10029   KGZ      0.619
## 10030   KGZ     12.000
## 10034   KGZ     34.000
## 10035   KGZ    111.000
## 10036   KGZ    105.000
## 10037   KGZ     27.000
## 10039   KGZ      8.600
## 10040   KGZ      8.100
## 10041   KGZ      9.100
## 10042   KGZ     66.500
## 10043   KGZ     71.100
## 10044   KGZ     71.000
## 10052   KGZ      4.400
## 10054   KGZ     93.500
## 10059   KGZ      7.900
## 10060   KGZ     50.400
## 10072   KGZ     80.000
## 10073   KGZ     98.900
## 10084   KGZ      0.100
## 10087   KGZ     66.300
## 10088   KGZ     70.200
## 10089   KGZ     62.300
## 10090   KGZ      0.713
## 10092   KGZ    134.000
## 10093   KGZ     54.300
## 10094   KGZ    266.000
## 10095   KGZ     65.400
## 10105   KGZ   3475.000
## 10106   KGZ     15.300
## 10107   KGZ     23.100
## 10108   KGZ   3420.000
## 10109   KGZ      0.534
## 10126   KGZ     -6.100
## 10143   KGZ     24.200
## 10150   KGZ     98.800
## 10153   KGZ     78.800
## 10162   KGZ     62.300
## 10163   KGZ     50.800
## 10164   KGZ     74.800
## 10171   LAO      0.400
## 10172   LAO     17.600
## 10173   LAO      6.800
## 10174   LAO      2.200
## 10175   LAO      0.200
## 10176   LAO      0.700
## 10177   LAO      1.050
## 10178   LAO      4.300
## 10179   LAO     15.400
## 10180   LAO     84.800
## 10181   LAO      0.288
## 10182   LAO      6.700
## 10183   LAO      5.500
## 10184   LAO      7.200
## 10186   LAO      7.000
## 10187   LAO     98.000
## 10188   LAO     23.000
## 10189   LAO      1.000
## 10191   LAO      3.100
## 10192   LAO      1.900
## 10193   LAO      4.300
## 10194   LAO     12.200
## 10195   LAO      6.000
## 10196   LAO     18.900
## 10199   LAO     28.000
## 10201   LAO      0.030
## 10202   LAO      0.000
## 10203   LAO     76.500
## 10209   LAO     88.400
## 10210   LAO    110.200
## 10222   LAO    905.000
## 10234   LAO      0.100
## 10235   LAO     59.000
## 10236   LAO     68.000
## 10237   LAO     53.600
## 10238   LAO     54.900
## 10239   LAO     52.300
## 10240   LAO      0.517
## 10242   LAO    307.000
## 10243   LAO    110.700
## 10244   LAO    358.000
## 10245   LAO    161.600
## 10254   LAO      5.000
## 10255   LAO   1708.000
## 10256   LAO      7.300
## 10258   LAO   1732.000
## 10259   LAO      0.431
## 10276   LAO      0.000
## 10299   LAO      0.700
## 10301   LAO      8.600
## 10302   LAO     35.800
## 10303   LAO      0.700
## 10304   LAO     17.200
## 10305   LAO     -0.700
## 10306   LAO      1.260
## 10311   LAO     81.200
## 10312   LAO     79.900
## 10313   LAO     82.500
## 10320   LSO      0.499
## 10321   LSO     17.700
## 10322   LSO      8.200
## 10323   LSO      0.800
## 10324   LSO      0.100
## 10325   LSO      0.300
## 10326   LSO      1.030
## 10327   LSO      1.600
## 10328   LSO     14.000
## 10329   LSO     85.200
## 10330   LSO      0.415
## 10331   LSO      9.600
## 10332   LSO     10.700
## 10333   LSO      8.400
## 10336   LSO    109.000
## 10337   LSO     25.000
## 10338   LSO      1.000
## 10340   LSO      4.400
## 10341   LSO      4.400
## 10342   LSO      3.800
## 10343   LSO     10.500
## 10344   LSO     13.400
## 10345   LSO     11.600
## 10346   LSO     43.200
## 10349   LSO     55.000
## 10351   LSO      0.670
## 10352   LSO      0.900
## 10353   LSO      1.300
## 10360   LSO     52.000
## 10361   LSO     77.700
## 10373   LSO    629.000
## 10383   LSO      1.300
## 10384   LSO      9.000
## 10385   LSO     20.000
## 10386   LSO     59.200
## 10387   LSO     61.000
## 10388   LSO     57.300
## 10389   LSO      0.603
## 10390   LSO    260.000
## 10391   LSO     73.100
## 10392   LSO    320.000
## 10393   LSO     91.300
## 10402   LSO     30.600
## 10403   LSO   1379.000
## 10404   LSO      2.200
## 10406   LSO   2677.000
## 10407   LSO      0.497
## 10424   LSO     -8.200
## 10448   LSO      0.000
## 10450   LSO      4.200
## 10452   LSO      2.900
## 10453   LSO     14.500
## 10454   LSO     -2.800
## 10455   LSO    167.430
## 10459   LSO     75.700
## 10460   LSO     68.700
## 10461   LSO     83.600
## 10468   LBR     17.400
## 10469   LBR      5.700
## 10470   LBR      1.100
## 10471   LBR      0.100
## 10472   LBR      0.400
## 10473   LBR      1.050
## 10474   LBR      2.100
## 10475   LBR     55.400
## 10476   LBR     86.700
## 10487   LBR      2.600
## 10488   LBR      1.200
## 10489   LBR      4.100
## 10490   LBR     18.700
## 10491   LBR      8.400
## 10492   LBR     30.200
## 10497   LBR      0.260
## 10498   LBR      0.200
## 10499   LBR     51.200
## 10505   LBR     88.800
## 10506   LBR    182.100
## 10518   LBR   1500.000
## 10530   LBR      2.700
## 10533   LBR     47.200
## 10534   LBR     49.400
## 10535   LBR     45.100
## 10536   LBR      0.418
## 10538   LBR    288.000
## 10539   LBR    172.000
## 10540   LBR    364.000
## 10541   LBR    257.900
## 10551   LBR    875.000
## 10552   LBR      1.800
## 10554   LBR    752.000
## 10555   LBR      0.305
## 10570   LBR    -37.300
## 10592   LBR      0.000
## 10596   LBR     58.600
## 10604   LBR     56.500
## 10605   LBR     52.800
## 10606   LBR     60.300
## 10613   MDG     17.100
## 10614   MDG      5.900
## 10615   MDG      6.000
## 10616   MDG      0.400
## 10617   MDG      2.100
## 10618   MDG      1.020
## 10619   MDG     11.600
## 10620   MDG     23.600
## 10621   MDG     88.600
## 10623   MDG      6.400
## 10624   MDG      6.200
## 10625   MDG      6.600
## 10628   MDG     93.000
## 10629   MDG     19.000
## 10630   MDG      3.000
## 10635   MDG     60.600
## 10637   MDG     40.000
## 10638   MDG     57.000
## 10639   MDG      0.050
## 10640   MDG      0.100
## 10641   MDG     23.500
## 10647   MDG     85.600
## 10648   MDG    149.500
## 10660   MDG    778.000
## 10670   MDG      0.100
## 10671   MDG     29.000
## 10672   MDG     53.000
## 10673   MDG     51.000
## 10674   MDG     52.200
## 10675   MDG     49.800
## 10676   MDG      0.477
## 10678   MDG    313.000
## 10679   MDG     97.400
## 10680   MDG    361.000
## 10681   MDG    159.500
## 10690   MDG     22.200
## 10691   MDG   1653.000
## 10692   MDG     19.200
## 10693   MDG     14.800
## 10694   MDG   1590.000
## 10695   MDG      0.418
## 10712   MDG     -0.200
## 10727   MDG      1.300
## 10729   MDG     17.000
## 10736   MDG      1.000
## 10738   MDG     45.900
## 10739   MDG     44.600
## 10740   MDG      0.700
## 10741   MDG     13.400
## 10742   MDG     -0.700
## 10743   MDG      0.260
## 10747   MDG     86.600
## 10748   MDG     84.200
## 10749   MDG     89.100
## 10756   MWI      0.340
## 10757   MWI     17.100
## 10758   MWI      5.200
## 10759   MWI      4.900
## 10760   MWI      0.300
## 10761   MWI      1.800
## 10762   MWI      1.020
## 10763   MWI      9.400
## 10764   MWI     11.600
## 10765   MWI     88.400
## 10766   MWI      0.231
## 10767   MWI      5.400
## 10768   MWI      4.800
## 10769   MWI      6.000
## 10770   MWI      3.300
## 10772   MWI     73.000
## 10773   MWI     16.000
## 10774   MWI      1.000
## 10776   MWI      2.500
## 10777   MWI      1.600
## 10778   MWI      3.400
## 10779   MWI      6.200
## 10780   MWI      2.800
## 10781   MWI      9.800
## 10782   MWI     60.600
## 10786   MWI      0.110
## 10787   MWI      0.100
## 10788   MWI     41.300
## 10794   MWI     84.000
## 10795   MWI    193.200
## 10806   MWI    957.000
## 10817   MWI      9.100
## 10818   MWI      5.000
## 10819   MWI     19.000
## 10820   MWI     46.600
## 10821   MWI     48.500
## 10822   MWI     44.600
## 10823   MWI      0.409
## 10825   MWI    355.000
## 10826   MWI    136.600
## 10827   MWI    471.000
## 10828   MWI    232.400
## 10837   MWI     17.000
## 10838   MWI    744.000
## 10839   MWI      7.000
## 10840   MWI     20.100
## 10841   MWI   1548.000
## 10842   MWI      0.414
## 10859   MWI     21.500
## 10874   MWI     -1.800
## 10876   MWI     23.000
## 10884   MWI     29.300
## 10885   MWI     57.200
## 10886   MWI      1.200
## 10887   MWI     27.200
## 10888   MWI      0.000
## 10894   MWI     77.200
## 10895   MWI     76.100
## 10896   MWI     78.300
## 10902   MYS      0.643
## 10903   MYS     21.600
## 10904   MYS      6.200
## 10905   MYS     10.700
## 10906   MYS      0.700
## 10907   MYS      2.400
## 10908   MYS      1.060
## 10909   MYS     18.000
## 10910   MYS     49.800
## 10911   MYS     62.500
## 10912   MYS      0.488
## 10913   MYS      9.700
## 10917   MYS     35.000
## 10918   MYS     94.000
## 10919   MYS     63.000
## 10920   MYS      7.000
## 10922   MYS      6.500
## 10923   MYS      5.700
## 10924   MYS      7.400
## 10925   MYS     40.300
## 10926   MYS     34.700
## 10927   MYS     46.500
## 10928   MYS      3.700
## 10931   MYS     20.000
## 10933   MYS      0.300
## 10934   MYS      3.100
## 10935   MYS     68.100
## 10937   MYS     89.900
## 10938   MYS      1.700
## 10942   MYS     12.000
## 10943   MYS     19.800
## 10955   MYS     79.000
## 10956   MYS     92.800
## 10964   MYS      0.100
## 10965   MYS      5.000
## 10966   MYS     30.000
## 10967   MYS     70.700
## 10968   MYS     72.600
## 10969   MYS     68.900
## 10970   MYS      0.780
## 10972   MYS    127.000
## 10973   MYS     14.300
## 10974   MYS    194.000
## 10975   MYS     16.600
## 10983   MYS     72.700
## 10984   MYS  10552.000
## 10985   MYS    190.300
## 10986   MYS     33.000
## 10987   MYS  10170.000
## 10988   MYS      0.698
## 11003   MYS      5.200
## 11005   MYS     10.000
## 11007   MYS     32.400
## 11013   MYS     91.800
## 11015   MYS     12.600
## 11016   MYS    146.900
## 11017   MYS      5.300
## 11018   MYS      1.100
## 11019   MYS     -4.700
## 11020   MYS      0.420
## 11024   MYS     62.400
## 11025   MYS     45.500
## 11026   MYS     78.900
## 11033   MLI      0.231
## 11034   MLI     16.500
## 11035   MLI      7.700
## 11036   MLI      4.200
## 11037   MLI      0.300
## 11038   MLI      1.600
## 11039   MLI      1.050
## 11040   MLI      8.500
## 11041   MLI     23.300
## 11042   MLI     94.300
## 11043   MLI      0.081
## 11044   MLI      2.100
## 11045   MLI      1.500
## 11046   MLI      2.600
## 11049   MLI     27.000
## 11050   MLI      7.000
## 11051   MLI      1.000
## 11053   MLI      0.700
## 11054   MLI      0.400
## 11055   MLI      1.100
## 11056   MLI      2.800
## 11057   MLI      1.100
## 11058   MLI      5.000
## 11061   MLI     45.000
## 11063   MLI      0.040
## 11064   MLI      0.000
## 11065   MLI      5.500
## 11071   MLI     88.600
## 11072   MLI    194.400
## 11084   MLI   1010.000
## 11095   MLI      1.000
## 11096   MLI     33.000
## 11097   MLI     57.000
## 11098   MLI     45.700
## 11099   MLI     46.500
## 11100   MLI     45.000
## 11101   MLI      0.396
## 11103   MLI    324.000
## 11104   MLI    130.100
## 11105   MLI    347.000
## 11106   MLI    253.900
## 11115   MLI     12.300
## 11116   MLI   1272.000
## 11117   MLI     10.800
## 11118   MLI     17.600
## 11119   MLI   1269.000
## 11120   MLI      0.384
## 11137   MLI    -11.800
## 11152   MLI      3.300
## 11154   MLI     19.100
## 11163   MLI     15.300
## 11164   MLI     46.600
## 11165   MLI      0.200
## 11166   MLI     18.000
## 11167   MLI     -0.200
## 11168   MLI      3.990
## 11173   MLI     50.600
## 11174   MLI     35.400
## 11175   MLI     66.900
## 11182   MLT      0.740
## 11183   MLT     33.100
## 11184   MLT     16.000
## 11185   MLT      0.200
## 11186   MLT      0.000
## 11187   MLT      0.000
## 11188   MLT      1.060
## 11189   MLT      0.400
## 11190   MLT     90.400
## 11191   MLT     35.400
## 11192   MLT      0.605
## 11193   MLT     12.900
## 11194   MLT     12.200
## 11195   MLT     13.000
## 11196   MLT      3.800
## 11197   MLT    101.000
## 11198   MLT    106.000
## 11199   MLT     81.000
## 11200   MLT     10.000
## 11202   MLT      7.400
## 11203   MLT      7.400
## 11204   MLT      6.500
## 11205   MLT     47.200
## 11206   MLT     25.000
## 11207   MLT     36.600
## 11213   MLT     23.000
## 11214   MLT     62.000
## 11215   MLT      0.380
## 11216   MLT      6.100
## 11217   MLT      1.100
## 11219   MLT    100.000
## 11224   MLT      0.000
## 11225   MLT     12.400
## 11235   MLT     13.000
## 11245   MLT      0.100
## 11246   MLT     16.000
## 11247   MLT     20.000
## 11248   MLT     76.000
## 11249   MLT     77.700
## 11250   MLT     74.300
## 11251   MLT      0.862
## 11252   MLT     66.000
## 11253   MLT      9.900
## 11254   MLT    108.000
## 11255   MLT     11.200
## 11263   MLT  16176.000
## 11264   MLT      5.700
## 11265   MLT     25.500
## 11266   MLT  17260.000
## 11267   MLT      0.778
## 11285   MLT      0.700
## 11287   MLT     30.600
## 11292   MLT    100.000
## 11294   MLT    164.500
## 11295   MLT      1.800
## 11296   MLT      0.200
## 11297   MLT     -1.700
## 11298   MLT      2.290
## 11302   MLT     50.400
## 11303   MLT     27.900
## 11304   MLT     73.900
## 11311   MRT      0.374
## 11312   MRT     17.400
## 11313   MRT      6.000
## 11314   MRT      1.100
## 11315   MRT      0.100
## 11316   MRT      0.400
## 11317   MRT      1.050
## 11318   MRT      2.000
## 11319   MRT     39.300
## 11320   MRT     85.800
## 11321   MRT      0.178
## 11322   MRT      3.700
## 11323   MRT      2.900
## 11324   MRT      4.600
## 11327   MRT     46.000
## 11328   MRT     13.000
## 11329   MRT      3.000
## 11331   MRT      2.200
## 11332   MRT      1.600
## 11333   MRT      2.900
## 11334   MRT      5.100
## 11335   MRT      2.000
## 11336   MRT      8.500
## 11337   MRT     27.300
## 11339   MRT     44.000
## 11341   MRT      0.160
## 11342   MRT      0.400
## 11343   MRT      0.400
## 11349   MRT     47.000
## 11350   MRT    110.400
## 11362   MRT    859.000
## 11372   MRT      0.100
## 11373   MRT     31.000
## 11374   MRT     62.000
## 11375   MRT     58.400
## 11376   MRT     59.700
## 11377   MRT     57.100
## 11378   MRT      0.591
## 11380   MRT    222.000
## 11381   MRT     71.000
## 11382   MRT    269.000
## 11383   MRT    116.500
## 11392   MRT     47.000
## 11393   MRT   2807.000
## 11394   MRT      5.700
## 11395   MRT     20.000
## 11396   MRT   2680.000
## 11397   MRT      0.497
## 11414   MRT     -3.200
## 11429   MRT     -6.500
## 11431   MRT     20.000
## 11439   MRT     30.700
## 11440   MRT    106.400
## 11441   MRT      0.700
## 11442   MRT     24.600
## 11443   MRT     -0.700
## 11444   MRT      1.340
## 11449   MRT     52.200
## 11450   MRT     30.000
## 11451   MRT     75.200
## 11458   MUS      0.619
## 11459   MUS     24.900
## 11460   MUS      7.100
## 11461   MUS      0.700
## 11462   MUS      0.000
## 11463   MUS      0.100
## 11464   MUS      1.040
## 11465   MUS      1.100
## 11466   MUS     43.900
## 11467   MUS     43.700
## 11468   MUS      0.481
## 11469   MUS     10.500
## 11470   MUS     10.500
## 11471   MUS     10.500
## 11472   MUS      3.200
## 11473   MUS     54.000
## 11474   MUS    112.000
## 11475   MUS     52.000
## 11476   MUS      3.000
## 11477   MUS     79.900
## 11478   MUS      5.700
## 11479   MUS      4.800
## 11480   MUS      6.600
## 11481   MUS     33.000
## 11482   MUS     26.000
## 11483   MUS     40.000
## 11484   MUS      2.700
## 11487   MUS     21.000
## 11488   MUS     91.000
## 11489   MUS      0.190
## 11490   MUS      1.400
## 11491   MUS     20.200
## 11493   MUS     55.500
## 11494   MUS     20.600
## 11498   MUS     47.100
## 11499   MUS     44.700
## 11509   MUS     81.000
## 11510   MUS     91.100
## 11518   MUS      5.000
## 11519   MUS     24.000
## 11520   MUS     69.400
## 11521   MUS     73.300
## 11522   MUS     65.700
## 11523   MUS      0.760
## 11524   MUS    129.000
## 11525   MUS     19.700
## 11526   MUS    263.000
## 11527   MUS     23.000
## 11535   MUS     44.700
## 11536   MUS   7387.000
## 11537   MUS      7.800
## 11538   MUS     30.600
## 11539   MUS   7329.000
## 11540   MUS      0.649
## 11558   MUS     -6.900
## 11560   MUS     23.600
## 11562   MUS     30.200
## 11567   MUS     98.600
## 11569   MUS      8.500
## 11570   MUS    137.100
## 11571   MUS      1.500
## 11572   MUS      3.400
## 11573   MUS     -1.400
## 11578   MUS     59.900
## 11579   MUS     38.300
## 11580   MUS     81.900
## 11586   MEX      0.650
## 11587   MEX     19.500
## 11588   MEX      7.500
## 11589   MEX     48.400
## 11590   MEX      3.600
## 11591   MEX     11.500
## 11592   MEX      1.050
## 11593   MEX     85.400
## 11594   MEX     71.400
## 11595   MEX     68.900
## 11596   MEX      0.480
## 11597   MEX     10.600
## 11598   MEX     10.400
## 11599   MEX     10.800
## 11600   MEX      2.300
## 11601   MEX     60.000
## 11602   MEX    111.000
## 11603   MEX     53.000
## 11604   MEX     15.000
## 11605   MEX     87.600
## 11606   MEX      5.500
## 11607   MEX      5.100
## 11608   MEX      6.000
## 11609   MEX     30.600
## 11610   MEX     27.800
## 11611   MEX     33.900
## 11612   MEX     28.400
## 11618   MEX     31.000
## 11619   MEX     79.000
## 11620   MEX      0.360
## 11621   MEX      3.700
## 11622   MEX     35.900
## 11624   MEX     87.400
## 11629   MEX     14.400
## 11630   MEX     88.500
## 11643   MEX     90.000
## 11644   MEX     98.300
## 11654   MEX      0.200
## 11655   MEX     23.000
## 11656   MEX     25.000
## 11657   MEX     70.800
## 11658   MEX     73.800
## 11659   MEX     67.900
## 11660   MEX      0.782
## 11662   MEX    119.000
## 11663   MEX     36.500
## 11664   MEX    212.000
## 11665   MEX     45.700
## 11674   MEX     37.300
## 11675   MEX  10457.000
## 11676   MEX    892.600
## 11677   MEX     17.900
## 11678   MEX  12690.000
## 11679   MEX      0.732
## 11697   MEX     -4.400
## 11712   MEX      8.300
## 11714   MEX     23.100
## 11721   MEX     82.600
## 11723   MEX     21.800
## 11724   MEX     38.300
## 11725   MEX      1.000
## 11726   MEX      0.100
## 11727   MEX      0.500
## 11728   MEX      1.180
## 11733   MEX     58.500
## 11734   MEX     33.500
## 11735   MEX     84.400
## 11742   MNG      0.579
## 11743   MNG     19.300
## 11744   MNG      7.400
## 11745   MNG      1.200
## 11746   MNG      0.100
## 11747   MNG      0.300
## 11748   MNG      1.030
## 11749   MNG      2.200
## 11750   MNG     57.000
## 11751   MNG     73.000
## 11752   MNG      0.539
## 11753   MNG     10.200
## 11757   MNG     37.000
## 11758   MNG    101.000
## 11759   MNG     89.000
## 11760   MNG     18.000
## 11762   MNG      7.700
## 11763   MNG      7.400
## 11764   MNG      8.000
## 11765   MNG     71.800
## 11766   MNG     67.600
## 11767   MNG     75.300
## 11771   MNG     30.000
## 11773   MNG      0.890
## 11774   MNG      4.600
## 11775   MNG      8.100
## 11777   MNG     97.200
## 11782   MNG      1.900
## 11783   MNG     33.900
## 11796   MNG    186.000
## 11797   MNG     99.900
## 11806   MNG      0.100
## 11807   MNG      6.000
## 11808   MNG      8.000
## 11809   MNG     60.300
## 11810   MNG     62.900
## 11811   MNG     57.800
## 11812   MNG      0.620
## 11813   MNG    195.000
## 11814   MNG     77.300
## 11815   MNG    286.000
## 11816   MNG    108.500
## 11826   MNG   5123.000
## 11827   MNG     11.200
## 11828   MNG     27.100
## 11829   MNG   4714.000
## 11830   MNG      0.582
## 11847   MNG      0.000
## 11862   MNG    -17.600
## 11864   MNG     29.100
## 11871   MNG     25.800
## 11874   MNG     58.600
## 11876   MNG      0.500
## 11883   MNG     56.900
## 11884   MNG     50.900
## 11885   MNG     63.000
## 11892   MAR      0.458
## 11893   MAR     19.800
## 11894   MAR      7.000
## 11895   MAR     14.000
## 11896   MAR      1.000
## 11897   MAR      3.400
## 11898   MAR      1.050
## 11899   MAR     24.900
## 11900   MAR     48.400
## 11901   MAR     70.400
## 11902   MAR      0.254
## 11903   MAR      6.500
## 11904   MAR      5.300
## 11905   MAR      7.700
## 11906   MAR      4.500
## 11907   MAR     57.000
## 11908   MAR     67.000
## 11909   MAR     37.000
## 11910   MAR     10.000
## 11912   MAR      2.200
## 11913   MAR      1.400
## 11914   MAR      2.900
## 11915   MAR     14.500
## 11916   MAR      9.100
## 11917   MAR     16.900
## 11918   MAR     26.500
## 11921   MAR     25.000
## 11923   MAR      0.240
## 11924   MAR      0.900
## 11925   MAR     11.100
## 11927   MAR     85.500
## 11932   MAR     19.500
## 11933   MAR     45.600
## 11945   MAR    317.000
## 11955   MAR      0.100
## 11956   MAR      7.000
## 11957   MAR     21.000
## 11958   MAR     64.700
## 11959   MAR     66.300
## 11960   MAR     63.100
## 11961   MAR      0.688
## 11962   MAR    169.000
## 11963   MAR     62.800
## 11964   MAR    220.000
## 11965   MAR     79.600
## 11974   MAR     36.700
## 11975   MAR   3912.000
## 11976   MAR     98.200
## 11977   MAR     25.800
## 11978   MAR   3800.000
## 11979   MAR      0.549
## 11997   MAR     -3.500
## 12012   MAR     23.800
## 12014   MAR     31.100
## 12019   MAR     10.200
## 12021   MAR     28.400
## 12022   MAR     54.600
## 12023   MAR      0.500
## 12024   MAR      4.200
## 12025   MAR     -0.500
## 12026   MAR      6.650
## 12030   MAR     51.100
## 12031   MAR     24.100
## 12032   MAR     79.100
## 12038   MOZ      0.209
## 12039   MOZ     16.200
## 12040   MOZ      6.300
## 12041   MOZ      6.600
## 12042   MOZ      0.400
## 12043   MOZ      2.400
## 12044   MOZ      1.030
## 12045   MOZ     13.200
## 12046   MOZ     25.000
## 12047   MOZ     95.000
## 12048   MOZ      0.131
## 12049   MOZ      3.700
## 12050   MOZ      3.100
## 12051   MOZ      4.400
## 12054   MOZ     64.000
## 12055   MOZ      7.000
## 12058   MOZ      0.800
## 12059   MOZ      0.400
## 12060   MOZ      1.400
## 12061   MOZ      1.900
## 12064   MOZ     67.100
## 12066   MOZ     55.000
## 12068   MOZ      0.200
## 12069   MOZ      0.100
## 12070   MOZ     55.200
## 12072   MOZ      5.500
## 12073   MOZ      0.300
## 12077   MOZ     93.100
## 12078   MOZ    178.100
## 12091   MOZ   1390.000
## 12102   MOZ      1.800
## 12103   MOZ     29.000
## 12104   MOZ     41.000
## 12105   MOZ     42.900
## 12106   MOZ     44.500
## 12107   MOZ     41.300
## 12108   MOZ      0.353
## 12110   MOZ    396.000
## 12111   MOZ    165.100
## 12112   MOZ    464.000
## 12113   MOZ    247.700
## 12122   MOZ     15.600
## 12123   MOZ    379.000
## 12124   MOZ      5.000
## 12125   MOZ     22.100
## 12126   MOZ    366.000
## 12127   MOZ      0.196
## 12144   MOZ    -19.800
## 12161   MOZ     22.100
## 12168   MOZ      0.000
## 12170   MOZ     22.200
## 12171   MOZ     44.200
## 12172   MOZ      0.400
## 12173   MOZ     41.200
## 12175   MOZ      2.800
## 12179   MOZ     85.000
## 12180   MOZ     87.200
## 12181   MOZ     82.400
## 12188   NAM      0.579
## 12189   NAM     17.800
## 12190   NAM      6.400
## 12191   NAM      0.700
## 12192   NAM      0.000
## 12193   NAM      0.200
## 12194   NAM      1.030
## 12195   NAM      1.400
## 12196   NAM     27.700
## 12197   NAM     82.500
## 12198   NAM      0.495
## 12199   NAM     11.100
## 12200   NAM     11.500
## 12201   NAM     10.700
## 12203   NAM     14.000
## 12204   NAM    118.000
## 12205   NAM     38.000
## 12208   NAM      5.600
## 12209   NAM      5.300
## 12210   NAM      6.100
## 12211   NAM     33.600
## 12212   NAM     31.500
## 12213   NAM     36.900
## 12218   NAM      0.000
## 12219   NAM      0.000
## 12220   NAM     10.600
## 12228   NAM    116.800
## 12239   NAM    338.000
## 12250   NAM      1.600
## 12253   NAM     61.500
## 12254   NAM     64.500
## 12255   NAM     58.500
## 12256   NAM      0.639
## 12258   NAM    223.000
## 12259   NAM     48.400
## 12260   NAM    308.000
## 12261   NAM     71.300
## 12270   NAM     16.300
## 12271   NAM   5719.000
## 12272   NAM      8.100
## 12273   NAM     18.300
## 12274   NAM   5784.000
## 12275   NAM      0.613
## 12292   NAM     11.700
## 12307   NAM     23.800
## 12309   NAM     26.900
## 12316   NAM      9.000
## 12318   NAM     93.300
## 12319   NAM      1.100
## 12320   NAM      4.200
## 12321   NAM     -1.400
## 12322   NAM      0.480
## 12326   NAM     56.600
## 12327   NAM     48.800
## 12328   NAM     65.200
## 12335   NPL      0.378
## 12336   NPL     18.700
## 12337   NPL      6.500
## 12338   NPL     10.100
## 12339   NPL      0.700
## 12340   NPL      3.100
## 12341   NPL      1.050
## 12342   NPL     18.700
## 12343   NPL      8.900
## 12344   NPL     78.500
## 12345   NPL      0.276
## 12346   NPL      7.500
## 12347   NPL      5.200
## 12348   NPL      9.700
## 12351   NPL    112.000
## 12352   NPL     33.000
## 12353   NPL      5.000
## 12355   NPL      2.000
## 12356   NPL      0.800
## 12357   NPL      3.300
## 12358   NPL     17.300
## 12359   NPL      7.000
## 12360   NPL     27.500
## 12364   NPL     39.000
## 12366   NPL      0.030
## 12367   NPL      0.000
## 12368   NPL     33.700
## 12370   NPL      5.100
## 12375   NPL     95.100
## 12376   NPL    131.300
## 12387   NPL    901.000
## 12398   NPL      0.100
## 12399   NPL     32.000
## 12400   NPL     43.000
## 12401   NPL     54.300
## 12402   NPL     54.800
## 12403   NPL     53.600
## 12404   NPL      0.527
## 12406   NPL    305.000
## 12407   NPL     97.900
## 12408   NPL    342.000
## 12409   NPL    140.900
## 12418   NPL     28.000
## 12419   NPL   1198.000
## 12420   NPL     22.500
## 12421   NPL     16.100
## 12422   NPL   1168.000
## 12423   NPL      0.371
## 12440   NPL     -2.400
## 12455   NPL      4.800
## 12457   NPL     18.100
## 12466   NPL     15.000
## 12467   NPL     32.200
## 12468   NPL      0.200
## 12469   NPL     11.600
## 12470   NPL      0.000
## 12476   NPL     85.400
## 12477   NPL     80.500
## 12478   NPL     90.600
## 12485   NLD      0.829
## 12486   NLD     34.600
## 12487   NLD     18.400
## 12488   NLD     10.300
## 12489   NLD      1.900
## 12490   NLD      0.900
## 12491   NLD      1.060
## 12492   NLD     15.000
## 12493   NLD     68.700
## 12494   NLD     26.400
## 12495   NLD      0.746
## 12496   NLD     14.700
## 12497   NLD     14.400
## 12498   NLD     15.000
## 12499   NLD      5.300
## 12500   NLD     97.000
## 12501   NLD    103.000
## 12502   NLD    118.000
## 12503   NLD     36.000
## 12504   NLD     10.200
## 12505   NLD      9.800
## 12506   NLD     10.900
## 12507   NLD     80.000
## 12508   NLD     74.700
## 12509   NLD     83.600
## 12514   NLD     17.000
## 12515   NLD     88.000
## 12516   NLD      0.330
## 12517   NLD     10.600
## 12518   NLD     10.200
## 12520   NLD     95.900
## 12525   NLD      1.200
## 12526   NLD      6.900
## 12537   NLD     12.000
## 12546   NLD      0.100
## 12547   NLD      2.000
## 12548   NLD      6.000
## 12549   NLD     77.000
## 12550   NLD     80.100
## 12551   NLD     73.800
## 12552   NLD      0.877
## 12553   NLD     67.000
## 12554   NLD      6.800
## 12555   NLD    116.000
## 12556   NLD      8.300
## 12566   NLD  32090.000
## 12567   NLD    479.800
## 12568   NLD     23.500
## 12569   NLD  31977.000
## 12570   NLD      0.871
## 12588   NLD      1.900
## 12589   NLD     15.200
## 12591   NLD     24.400
## 12598   NLD    100.000
## 12600   NLD    104.600
## 12601   NLD      3.400
## 12602   NLD      2.500
## 12603   NLD      0.230
## 12607   NLD     56.500
## 12608   NLD     43.100
## 12609   NLD     70.500
## 12616   NZL      0.818
## 12617   NZL     31.100
## 12618   NZL     16.900
## 12619   NZL      2.200
## 12620   NZL      0.400
## 12621   NZL      0.300
## 12622   NZL      1.050
## 12623   NZL      3.400
## 12624   NZL     84.700
## 12625   NZL     35.400
## 12626   NZL      0.787
## 12627   NZL     14.500
## 12628   NZL     14.500
## 12629   NZL     14.500
## 12632   NZL    105.000
## 12633   NZL     89.000
## 12634   NZL     39.000
## 12635   NZL     11.500
## 12636   NZL     11.200
## 12637   NZL     11.900
## 12638   NZL     63.200
## 12639   NZL     60.500
## 12640   NZL     66.100
## 12644   NZL     18.000
## 12645   NZL      0.300
## 12646   NZL      7.100
## 12647   NZL     36.700
## 12649   NZL     66.700
## 12654   NZL     30.000
## 12655   NZL     31.900
## 12665   NZL     18.000
## 12673   NZL      4.000
## 12674   NZL     10.000
## 12675   NZL     75.400
## 12676   NZL     78.300
## 12677   NZL     72.400
## 12678   NZL      0.852
## 12679   NZL     93.000
## 12680   NZL      9.200
## 12681   NZL    143.000
## 12682   NZL     11.200
## 12691   NZL     77.400
## 12692   NZL  23671.000
## 12693   NZL     78.800
## 12694   NZL     20.700
## 12695   NZL  22089.000
## 12696   NZL      0.815
## 12710   NZL     -0.600
## 12713   NZL     20.500
## 12718   NZL    100.000
## 12720   NZL     52.600
## 12721   NZL      3.800
## 12723   NZL      1.670
## 12727   NZL     63.400
## 12728   NZL     53.300
## 12729   NZL     74.100
## 12737   NGA     17.400
## 12738   NGA      5.500
## 12739   NGA     49.700
## 12740   NGA      2.700
## 12741   NGA     16.800
## 12742   NGA      1.060
## 12743   NGA     95.300
## 12744   NGA     29.700
## 12745   NGA     86.200
## 12747   NGA      6.700
## 12751   NGA     86.000
## 12752   NGA     25.000
## 12760   NGA     41.000
## 12761   NGA      0.140
## 12762   NGA      0.400
## 12763   NGA     18.900
## 12765   NGA     20.500
## 12770   NGA     87.800
## 12771   NGA    154.900
## 12772   NGA     56.500
## 12774   NGA      6.000
## 12781   NGA   1350.000
## 12782   NGA     30.800
## 12786   NGA     21.500
## 12793   NGA      1.600
## 12794   NGA     21.000
## 12795   NGA     46.000
## 12796   NGA     45.900
## 12797   NGA     47.200
## 12798   NGA     44.700
## 12799   NGA      0.398
## 12801   NGA    360.000
## 12802   NGA    126.200
## 12803   NGA    414.000
## 12804   NGA    212.900
## 12813   NGA     21.900
## 12814   NGA   3042.000
## 12815   NGA    289.800
## 12816   NGA     14.300
## 12817   NGA   2792.000
## 12818   NGA      0.503
## 12834   NGA     -0.200
## 12849   NGA    -13.500
## 12851   NGA     14.400
## 12857   NGA      8.600
## 12858   NGA     22.600
## 12859   NGA     53.000
## 12860   NGA      1.900
## 12861   NGA      0.900
## 12862   NGA     -1.300
## 12863   NGA      0.030
## 12868   NGA     56.500
## 12869   NGA     47.600
## 12870   NGA     65.400
## 12877   NOR      0.850
## 12878   NOR     35.400
## 12879   NOR     25.300
## 12880   NOR      2.700
## 12881   NOR      0.700
## 12882   NOR      0.300
## 12883   NOR      1.050
## 12884   NOR      4.200
## 12885   NOR     72.000
## 12886   NOR     29.200
## 12887   NOR      0.772
## 12888   NOR     14.000
## 12889   NOR     14.300
## 12890   NOR     13.600
## 12891   NOR      6.300
## 12892   NOR     61.000
## 12893   NOR    100.000
## 12894   NOR    101.000
## 12895   NOR     38.000
## 12896   NOR     11.500
## 12897   NOR     11.400
## 12898   NOR     11.700
## 12899   NOR     66.000
## 12900   NOR     62.500
## 12901   NOR     70.000
## 12902   NOR      1.000
## 12909   NOR      0.170
## 12910   NOR      7.400
## 12911   NOR     33.200
## 12913   NOR     52.100
## 12918   NOR     59.200
## 12919   NOR     17.800
## 12929   NOR      7.000
## 12930   NOR     99.400
## 12938   NOR      5.000
## 12939   NOR     13.000
## 12940   NOR     76.700
## 12941   NOR     80.000
## 12942   NOR     73.600
## 12943   NOR      0.873
## 12944   NOR     65.000
## 12945   NOR      7.000
## 12946   NOR    128.000
## 12947   NOR      8.700
## 12956   NOR     65.000
## 12957   NOR  42814.000
## 12958   NOR    181.600
## 12959   NOR     22.800
## 12960   NOR  41742.000
## 12961   NOR      0.911
## 12979   NOR      1.800
## 12980   NOR      8.400
## 12982   NOR     24.600
## 12989   NOR    100.000
## 12991   NOR     72.600
## 12992   NOR      0.800
## 12993   NOR     -0.100
## 12994   NOR      0.130
## 12998   NOR     62.600
## 12999   NOR     55.200
## 13000   NOR     70.300
## 13007   PAK      0.404
## 13008   PAK     18.500
## 13009   PAK      7.300
## 13010   PAK     57.200
## 13011   PAK      4.200
## 13012   PAK     18.400
## 13013   PAK      1.060
## 13014   PAK    107.700
## 13015   PAK     30.600
## 13016   PAK     81.000
## 13017   PAK      0.205
## 13018   PAK      4.600
## 13019   PAK      3.000
## 13020   PAK      6.200
## 13021   PAK      2.500
## 13023   PAK     59.000
## 13024   PAK     22.000
## 13025   PAK      3.000
## 13027   PAK      2.300
## 13028   PAK      1.000
## 13029   PAK      2.700
## 13030   PAK     16.500
## 13031   PAK      6.900
## 13032   PAK     19.200
## 13035   PAK     41.000
## 13037   PAK      0.210
## 13038   PAK      0.600
## 13039   PAK      3.300
## 13041   PAK     52.700
## 13046   PAK     57.500
## 13047   PAK     95.200
## 13059   PAK    431.000
## 13069   PAK      0.100
## 13070   PAK     23.000
## 13071   PAK     50.000
## 13072   PAK     60.000
## 13073   PAK     60.800
## 13074   PAK     59.400
## 13075   PAK      0.616
## 13077   PAK    196.000
## 13078   PAK    106.200
## 13079   PAK    219.000
## 13080   PAK    138.800
## 13089   PAK     50.900
## 13090   PAK   3055.000
## 13091   PAK    329.000
## 13092   PAK     17.300
## 13093   PAK   3195.000
## 13094   PAK      0.523
## 13112   PAK      0.300
## 13127   PAK     10.700
## 13129   PAK     18.900
## 13136   PAK     45.100
## 13138   PAK     27.200
## 13139   PAK     38.900
## 13140   PAK      0.600
## 13141   PAK      2.700
## 13142   PAK     -0.800
## 13143   PAK      5.010
## 13147   PAK     50.700
## 13148   PAK     14.000
## 13149   PAK     84.400
## 13156   PAN      0.659
## 13157   PAN     21.700
## 13158   PAN      8.000
## 13159   PAN      1.500
## 13160   PAN      0.100
## 13161   PAN      0.300
## 13162   PAN      1.050
## 13163   PAN      2.500
## 13164   PAN     53.900
## 13165   PAN     60.400
## 13166   PAN      0.538
## 13167   PAN     10.700
## 13171   PAN     51.000
## 13172   PAN    101.000
## 13173   PAN     59.000
## 13174   PAN     21.000
## 13175   PAN     88.800
## 13176   PAN      7.300
## 13177   PAN      7.300
## 13179   PAN     44.000
## 13180   PAN     45.100
## 13181   PAN     36.800
## 13185   PAN     23.000
## 13187   PAN      0.140
## 13188   PAN      1.100
## 13189   PAN     67.800
## 13191   PAN     58.400
## 13196   PAN     43.600
## 13197   PAN    102.600
## 13210   PAN    102.000
## 13211   PAN     86.300
## 13220   PAN      0.300
## 13221   PAN      5.000
## 13222   PAN     27.000
## 13223   PAN     73.000
## 13224   PAN     76.000
## 13225   PAN     70.200
## 13226   PAN      0.815
## 13228   PAN     99.000
## 13229   PAN     25.800
## 13230   PAN    170.000
## 13231   PAN     31.000
## 13240   PAN     43.500
## 13241   PAN   7855.000
## 13242   PAN     19.400
## 13243   PAN      7.600
## 13244   PAN   7597.000
## 13245   PAN      0.654
## 13262   PAN     -0.800
## 13264   PAN     11.000
## 13266   PAN     21.100
## 13272   PAN     43.500
## 13274   PAN      6.200
## 13275   PAN    121.800
## 13276   PAN      2.100
## 13277   PAN      1.600
## 13278   PAN      1.600
## 13279   PAN      1.710
## 13284   PAN     58.600
## 13285   PAN     38.300
## 13286   PAN     78.800
## 13293   PNG      0.380
## 13294   PNG     18.700
## 13295   PNG      5.300
## 13296   PNG      2.400
## 13297   PNG      0.100
## 13298   PNG      0.700
## 13299   PNG      1.080
## 13300   PNG      4.300
## 13301   PNG     15.000
## 13302   PNG     76.300
## 13303   PNG      0.207
## 13304   PNG      4.700
## 13305   PNG      4.200
## 13306   PNG      5.100
## 13307   PNG      0.000
## 13308   PNG     60.000
## 13309   PNG     11.000
## 13312   PNG      2.300
## 13313   PNG      1.600
## 13314   PNG      3.100
## 13315   PNG     11.700
## 13316   PNG      7.200
## 13317   PNG     15.200
## 13318   PNG     47.800
## 13320   PNG     32.000
## 13321   PNG      0.210
## 13322   PNG      0.500
## 13323   PNG     74.300
## 13329   PNG     71.700
## 13330   PNG     83.600
## 13341   PNG    470.000
## 13342   PNG     42.000
## 13350   PNG      0.100
## 13351   PNG      3.000
## 13352   PNG     33.000
## 13353   PNG     58.900
## 13354   PNG     61.900
## 13355   PNG     56.200
## 13356   PNG      0.598
## 13358   PNG    270.000
## 13359   PNG     64.400
## 13360   PNG    361.000
## 13361   PNG     88.000
## 13369   PNG     35.700
## 13370   PNG   2374.000
## 13371   PNG     10.200
## 13372   PNG     25.100
## 13373   PNG   1867.000
## 13374   PNG      0.442
## 13386   PNG     -0.100
## 13388   PNG     -1.100
## 13390   PNG     24.400
## 13395   PNG     37.200
## 13396   PNG     89.600
## 13397   PNG      4.800
## 13398   PNG     13.300
## 13399   PNG     -4.800
## 13400   PNG      0.170
## 13404   PNG     72.500
## 13405   PNG     71.000
## 13406   PNG     74.100
## 13413   PHL      0.586
## 13414   PHL     19.200
## 13415   PHL      5.600
## 13416   PHL     34.600
## 13417   PHL      1.900
## 13418   PHL      9.500
## 13419   PHL      1.060
## 13420   PHL     61.900
## 13421   PHL     47.000
## 13422   PHL     73.200
## 13423   PHL      0.519
## 13424   PHL     10.800
## 13428   PHL     19.000
## 13429   PHL    110.000
## 13430   PHL     72.000
## 13431   PHL     25.000
## 13432   PHL     93.600
## 13433   PHL      6.600
## 13434   PHL      6.500
## 13435   PHL      6.700
## 13436   PHL     45.900
## 13437   PHL     44.200
## 13438   PHL     47.600
## 13442   PHL     33.000
## 13444   PHL      0.170
## 13445   PHL      0.700
## 13446   PHL     22.000
## 13448   PHL     43.100
## 13453   PHL     50.900
## 13454   PHL     50.100
## 13467   PHL    152.000
## 13478   PHL      0.100
## 13479   PHL      4.000
## 13480   PHL     15.000
## 13481   PHL     65.300
## 13482   PHL     68.000
## 13483   PHL     62.600
## 13484   PHL      0.696
## 13486   PHL    183.000
## 13487   PHL     40.800
## 13488   PHL    282.000
## 13489   PHL     58.100
## 13498   PHL     23.200
## 13499   PHL   4010.000
## 13500   PHL    248.400
## 13501   PHL     23.100
## 13502   PHL   3962.000
## 13503   PHL      0.556
## 13520   PHL     -1.000
## 13535   PHL      9.300
## 13537   PHL     24.200
## 13544   PHL     40.100
## 13546   PHL     27.600
## 13547   PHL     60.800
## 13548   PHL      1.200
## 13549   PHL      2.900
## 13550   PHL     -1.100
## 13551   PHL      3.310
## 13555   PHL     62.200
## 13556   PHL     46.600
## 13557   PHL     77.700
## 13565   ROU      0.701
## 13566   ROU     32.600
## 13567   ROU     15.800
## 13568   ROU     15.500
## 13569   ROU      2.400
## 13570   ROU      1.800
## 13571   ROU      1.060
## 13572   ROU     23.500
## 13573   ROU     53.200
## 13574   ROU     36.100
## 13575   ROU      0.632
## 13576   ROU     11.900
## 13577   ROU     11.800
## 13578   ROU     12.000
## 13580   ROU     60.000
## 13581   ROU     90.000
## 13582   ROU     99.000
## 13583   ROU      8.000
## 13585   ROU      9.000
## 13586   ROU      8.400
## 13587   ROU      9.900
## 13588   ROU     70.100
## 13589   ROU     63.800
## 13590   ROU     77.500
## 13597   ROU      0.660
## 13598   ROU      7.500
## 13599   ROU     27.800
## 13601   ROU     96.100
## 13602   ROU      9.600
## 13606   ROU      3.400
## 13607   ROU     59.500
## 13619   ROU    124.000
## 13620   ROU     99.800
## 13629   ROU      0.100
## 13630   ROU      2.000
## 13631   ROU      8.000
## 13632   ROU     69.500
## 13633   ROU     72.900
## 13634   ROU     66.300
## 13635   ROU      0.762
## 13636   ROU    117.000
## 13637   ROU     24.500
## 13638   ROU    249.000
## 13639   ROU     31.300
## 13647   ROU     79.700
## 13648   ROU  11422.000
## 13649   ROU    265.000
## 13650   ROU     19.800
## 13651   ROU  11411.000
## 13652   ROU      0.716
## 13670   ROU     -1.700
## 13671   ROU    -12.200
## 13673   ROU     30.200
## 13680   ROU    100.000
## 13682   ROU      0.300
## 13683   ROU     42.900
## 13684   ROU      0.000
## 13685   ROU      0.000
## 13690   ROU     68.400
## 13691   ROU     62.100
## 13692   ROU     75.000
## 13699   RUS      0.734
## 13700   RUS     33.400
## 13701   RUS     15.400
## 13702   RUS     98.600
## 13703   RUS     15.200
## 13704   RUS     11.500
## 13705   RUS      1.050
## 13706   RUS    147.600
## 13707   RUS     73.400
## 13708   RUS     34.300
## 13709   RUS      0.663
## 13710   RUS     12.800
## 13714   RUS     76.000
## 13715   RUS    108.000
## 13716   RUS     98.000
## 13717   RUS     55.000
## 13719   RUS      9.200
## 13720   RUS      8.400
## 13721   RUS      9.600
## 13722   RUS     77.200
## 13723   RUS     74.200
## 13724   RUS     80.700
## 13730   RUS     23.000
## 13734   RUS     49.400
## 13736   RUS     93.400
## 13741   RUS      3.800
## 13742   RUS     49.200
## 13752   RUS     63.000
## 13753   RUS     99.200
## 13763   RUS     68.000
## 13764   RUS     73.400
## 13765   RUS     62.500
## 13766   RUS      0.739
## 13767   RUS    116.000
## 13768   RUS     18.400
## 13769   RUS    316.000
## 13770   RUS     21.600
## 13780   RUS  20639.000
## 13781   RUS   3060.600
## 13782   RUS     28.700
## 13783   RUS  20685.000
## 13784   RUS      0.805
## 13802   RUS      1.200
## 13806   RUS     30.100
## 13813   RUS    100.000
## 13816   RUS     36.100
## 13823   RUS     66.800
## 13824   RUS     59.300
## 13825   RUS     75.800
## 13833   KNA      0.000
## 13834   KNA     34.600
## 13836   KNA     12.700
## 13837   KNA     12.700
## 13838   KNA     12.700
## 13844   KNA     22.000
## 13846   KNA      0.180
## 13847   KNA      2.600
## 13848   KNA     42.300
## 13850   KNA      0.000
## 13853   KNA     40.000
## 13854   KNA    100.000
## 13859   KNA      1.000
## 13860   KNA      1.000
## 13861   KNA     67.300
## 13862   KNA      0.728
## 13863   KNA    165.000
## 13864   KNA     26.000
## 13865   KNA    227.000
## 13866   KNA     31.700
## 13872   KNA     59.500
## 13873   KNA  14326.000
## 13874   KNA      0.600
## 13875   KNA  13992.000
## 13876   KNA      0.746
## 13884   KNA     82.100
## 13885   KNA    102.900
## 13886   KNA     23.400
## 13887   KNA      4.000
## 13888   KNA    -23.400
## 13889   KNA      9.240
## 13893   LCA     21.400
## 13894   LCA     13.300
## 13895   LCA      0.100
## 13896   LCA      0.000
## 13897   LCA      0.000
## 13898   LCA      1.030
## 13899   LCA      0.100
## 13900   LCA     29.300
## 13901   LCA     65.300
## 13903   LCA     12.600
## 13904   LCA     13.100
## 13905   LCA     12.100
## 13907   LCA     65.000
## 13908   LCA    142.000
## 13909   LCA     49.000
## 13920   LCA     29.000
## 13922   LCA      0.120
## 13923   LCA      1.200
## 13924   LCA     35.700
## 13926   LCA      0.000
## 13931   LCA      5.500
## 13932   LCA    120.800
## 13933   LCA    100.000
## 13943   LCA     45.000
## 13952   LCA      4.000
## 13953   LCA     18.000
## 13954   LCA     71.100
## 13955   LCA     73.500
## 13956   LCA     68.700
## 13957   LCA      0.786
## 13958   LCA    149.000
## 13959   LCA     17.600
## 13960   LCA    200.000
## 13961   LCA     21.400
## 13970   LCA     48.200
## 13971   LCA   9831.000
## 13972   LCA      1.400
## 13973   LCA   9470.000
## 13974   LCA      0.687
## 13988   LCA     -6.400
## 14000   LCA     -2.700
## 14004   LCA     78.600
## 14005   LCA      2.200
## 14006   LCA      9.300
## 14007   LCA      2.700
## 14008   LCA     -9.300
## 14009   LCA      3.330
## 14014   LCA     62.300
## 14015   LCA     47.300
## 14016   LCA     78.200
## 14023   VCT     20.400
## 14024   VCT     11.100
## 14025   VCT      0.100
## 14026   VCT      0.000
## 14027   VCT      0.000
## 14028   VCT      1.030
## 14029   VCT      0.100
## 14030   VCT     41.400
## 14031   VCT     67.900
## 14033   VCT     12.000
## 14040   VCT      6.000
## 14047   VCT      0.130
## 14048   VCT      0.800
## 14049   VCT     64.100
## 14051   VCT      0.000
## 14056   VCT     15.400
## 14057   VCT     95.100
## 14062   VCT     58.000
## 14069   VCT      2.000
## 14070   VCT      4.000
## 14071   VCT     70.100
## 14072   VCT     72.400
## 14073   VCT     67.900
## 14074   VCT      0.771
## 14075   VCT    157.000
## 14076   VCT     20.200
## 14077   VCT    203.000
## 14078   VCT     24.300
## 14086   VCT     40.700
## 14087   VCT   5576.000
## 14088   VCT      0.600
## 14089   VCT   5459.000
## 14090   VCT      0.604
## 14096   VCT    -13.400
## 14100   VCT     56.400
## 14101   VCT      3.300
## 14102   VCT    117.500
## 14103   VCT      3.200
## 14104   VCT      6.700
## 14105   VCT     -3.200
## 14106   VCT      6.500
## 14110   VCT     62.200
## 14111   VCT     44.100
## 14112   VCT     80.800
## 14118   SAU      0.697
## 14119   SAU     19.500
## 14120   SAU      5.100
## 14121   SAU      9.000
## 14122   SAU      0.500
## 14123   SAU      2.700
## 14124   SAU      1.030
## 14125   SAU     16.300
## 14126   SAU     76.600
## 14127   SAU     76.100
## 14128   SAU      0.489
## 14129   SAU     10.800
## 14136   SAU      9.000
## 14138   SAU      5.700
## 14139   SAU      3.600
## 14140   SAU      6.700
## 14141   SAU     34.700
## 14142   SAU     21.800
## 14143   SAU     42.500
## 14148   SAU      0.270
## 14149   SAU     11.400
## 14150   SAU      0.500
## 14152   SAU    100.000
## 14157   SAU      0.000
## 14158   SAU     84.700
## 14169   SAU     46.000
## 14170   SAU     88.000
## 14177   SAU      0.100
## 14178   SAU      3.000
## 14179   SAU     12.000
## 14180   SAU     69.000
## 14181   SAU     70.900
## 14182   SAU     67.500
## 14183   SAU      0.754
## 14185   SAU    125.000
## 14186   SAU     35.800
## 14187   SAU    173.000
## 14188   SAU     44.700
## 14196   SAU     12.800
## 14197   SAU  42457.000
## 14198   SAU    693.200
## 14199   SAU     18.900
## 14200   SAU  43941.000
## 14201   SAU      0.919
## 14211   SAU      9.900
## 14213   SAU     -0.800
## 14215   SAU     15.700
## 14222   SAU     71.700
## 14223   SAU      1.600
## 14224   SAU      0.000
## 14225   SAU      1.300
## 14230   SAU     53.300
## 14231   SAU     14.200
## 14232   SAU     79.300
## 14238   SEN      0.367
## 14239   SEN     16.400
## 14240   SEN      5.900
## 14241   SEN      3.800
## 14242   SEN      0.200
## 14243   SEN      1.400
## 14244   SEN      1.040
## 14245   SEN      7.600
## 14246   SEN     38.900
## 14247   SEN     93.800
## 14248   SEN      0.198
## 14249   SEN      4.500
## 14250   SEN      3.600
## 14251   SEN      5.400
## 14253   SEN      2.000
## 14254   SEN     54.000
## 14255   SEN     15.000
## 14258   SEN      2.200
## 14259   SEN      1.500
## 14260   SEN      2.000
## 14261   SEN      8.500
## 14262   SEN      4.100
## 14263   SEN      3.100
## 14267   SEN     58.000
## 14269   SEN      0.230
## 14270   SEN      0.400
## 14271   SEN     48.600
## 14273   SEN     43.300
## 14277   SEN     55.600
## 14278   SEN    144.500
## 14289   SEN    540.000
## 14299   SEN      0.200
## 14300   SEN     25.000
## 14301   SEN     49.000
## 14302   SEN     57.200
## 14303   SEN     58.800
## 14304   SEN     55.600
## 14305   SEN      0.572
## 14307   SEN    222.000
## 14308   SEN     71.800
## 14309   SEN    282.000
## 14310   SEN    140.400
## 14319   SEN     33.600
## 14320   SEN   1845.000
## 14321   SEN     13.900
## 14322   SEN     18.000
## 14323   SEN   1777.000
## 14324   SEN      0.435
## 14341   SEN     -1.700
## 14356   SEN     -0.900
## 14358   SEN      9.100
## 14365   SEN      8.900
## 14367   SEN     21.100
## 14368   SEN     57.600
## 14369   SEN      1.000
## 14370   SEN     14.700
## 14371   SEN     -1.200
## 14372   SEN      2.490
## 14377   SEN     53.700
## 14378   SEN     33.400
## 14379   SEN     74.800
## 14387   SYC     21.900
## 14388   SYC     11.600
## 14389   SYC      0.000
## 14390   SYC      0.000
## 14391   SYC      0.000
## 14392   SYC      1.060
## 14393   SYC      0.100
## 14394   SYC     49.300
## 14395   SYC     62.400
## 14397   SYC     11.400
## 14398   SYC     11.400
## 14399   SYC     11.500
## 14401   SYC    100.000
## 14411   SYC      0.150
## 14412   SYC      2.200
## 14413   SYC     88.400
## 14415   SYC      0.000
## 14419   SYC      4.200
## 14420   SYC     67.600
## 14424   SYC     98.000
## 14428   SYC      1.000
## 14429   SYC     14.000
## 14430   SYC     70.800
## 14431   SYC     75.600
## 14432   SYC     66.500
## 14433   SYC      0.782
## 14434   SYC    116.000
## 14435   SYC     14.400
## 14436   SYC    275.000
## 14437   SYC     16.700
## 14445   SYC     42.300
## 14446   SYC  14217.000
## 14447   SYC      1.000
## 14448   SYC     23.000
## 14449   SYC  14652.000
## 14450   SYC      0.753
## 14462   SYC    -15.100
## 14464   SYC     24.600
## 14469   SYC     79.400
## 14471   SYC      9.100
## 14472   SYC     65.800
## 14473   SYC      5.500
## 14474   SYC     10.000
## 14475   SYC     -5.600
## 14476   SYC      2.040
## 14479   SLE      0.275
## 14480   SLE     17.400
## 14481   SLE      5.500
## 14482   SLE      2.200
## 14483   SLE      0.100
## 14484   SLE      0.800
## 14485   SLE      1.020
## 14486   SLE      4.300
## 14487   SLE     33.300
## 14488   SLE     86.100
## 14489   SLE      0.190
## 14490   SLE      4.900
## 14495   SLE     46.000
## 14496   SLE     15.000
## 14497   SLE      1.000
## 14499   SLE      1.600
## 14500   SLE      0.900
## 14501   SLE      2.300
## 14502   SLE      7.200
## 14503   SLE      4.000
## 14504   SLE     11.800
## 14507   SLE     35.000
## 14509   SLE      0.090
## 14510   SLE      0.100
## 14511   SLE     43.200
## 14517   SLE     91.300
## 14518   SLE    192.200
## 14529   SLE   2630.000
## 14540   SLE      0.400
## 14543   SLE     37.300
## 14544   SLE     37.900
## 14545   SLE     36.900
## 14546   SLE      0.267
## 14548   SLE    520.000
## 14549   SLE    155.500
## 14550   SLE    543.000
## 14551   SLE    262.100
## 14560   SLE     36.300
## 14561   SLE   1251.000
## 14562   SLE      5.400
## 14563   SLE     13.000
## 14564   SLE   1516.000
## 14565   SLE      0.411
## 14581   SLE      3.100
## 14596   SLE    -22.600
## 14598   SLE     13.000
## 14604   SLE      3.300
## 14606   SLE     10.100
## 14607   SLE     68.700
## 14608   SLE      5.000
## 14609   SLE     10.200
## 14610   SLE     -5.000
## 14611   SLE      0.000
## 14616   SLE     64.900
## 14617   SLE     63.900
## 14618   SLE     66.000
## 14625   SGP      0.718
## 14626   SGP     29.300
## 14627   SGP      7.700
## 14628   SGP      2.200
## 14629   SGP      0.200
## 14630   SGP      0.200
## 14631   SGP      1.070
## 14632   SGP      3.000
## 14633   SGP    100.000
## 14634   SGP     29.400
## 14635   SGP      0.487
## 14636   SGP     10.600
## 14642   SGP     89.100
## 14643   SGP      5.800
## 14644   SGP      5.500
## 14645   SGP      6.400
## 14646   SGP     29.700
## 14647   SGP     28.900
## 14648   SGP     34.600
## 14654   SGP     26.000
## 14656   SGP      0.430
## 14657   SGP     14.600
## 14658   SGP     24.400
## 14660   SGP     99.400
## 14664   SGP      0.200
## 14665   SGP      8.000
## 14673   SGP     12.000
## 14682   SGP      5.000
## 14683   SGP     16.000
## 14684   SGP     76.000
## 14685   SGP     78.200
## 14686   SGP     73.900
## 14687   SGP      0.862
## 14688   SGP     83.000
## 14689   SGP      6.200
## 14690   SGP    132.000
## 14691   SGP      7.700
## 14699   SGP     58.600
## 14700   SGP  34345.000
## 14701   SGP    104.700
## 14702   SGP     31.700
## 14703   SGP  33996.000
## 14704   SGP      0.880
## 14719   SGP      8.400
## 14721   SGP     31.100
## 14723   SGP     35.600
## 14729   SGP    344.300
## 14730   SGP     15.400
## 14731   SGP      0.000
## 14732   SGP     -6.900
## 14736   SGP     63.100
## 14737   SGP     47.600
## 14738   SGP     78.700
## 14746   SLB     16.900
## 14747   SLB      5.400
## 14748   SLB      0.200
## 14749   SLB      0.000
## 14750   SLB      0.100
## 14751   SLB      1.070
## 14752   SLB      0.300
## 14753   SLB     13.700
## 14754   SLB     87.800
## 14756   SLB      6.000
## 14757   SLB      5.400
## 14758   SLB      6.600
## 14760   SLB     34.000
## 14761   SLB     88.000
## 14762   SLB     14.000
## 14764   SLB     19.800
## 14766   SLB     19.000
## 14768   SLB      0.250
## 14769   SLB      0.500
## 14770   SLB     83.000
## 14772   SLB      0.000
## 14776   SLB     59.000
## 14777   SLB     98.900
## 14784   SLB    364.000
## 14785   SLB     85.000
## 14795   SLB      9.000
## 14796   SLB     30.000
## 14797   SLB     56.600
## 14798   SLB     57.100
## 14799   SLB     56.300
## 14800   SLB      0.564
## 14802   SLB    280.000
## 14803   SLB     31.100
## 14804   SLB    308.000
## 14805   SLB     38.200
## 14814   SLB     23.800
## 14815   SLB   1883.000
## 14816   SLB      0.600
## 14818   SLB   1614.000
## 14819   SLB      0.420
## 14835   SLB     -1.300
## 14837   SLB    -59.400
## 14839   SLB     20.300
## 14844   SLB     11.800
## 14845   SLB     94.700
## 14846   SLB      3.500
## 14847   SLB     22.000
## 14848   SLB     -3.500
## 14854   SLB     71.400
## 14855   SLB     62.700
## 14856   SLB     79.800
## 14861   SOM     17.800
## 14862   SOM      5.600
## 14863   SOM      3.900
## 14864   SOM      0.200
## 14865   SOM      1.400
## 14866   SOM      1.030
## 14867   SOM      7.400
## 14868   SOM     29.700
## 14869   SOM     83.400
## 14875   SOM      0.100
## 14876   SOM     13.200
## 14882   SOM     87.200
## 14883   SOM     76.700
## 14887   SOM   1210.000
## 14895   SOM      0.100
## 14896   SOM     58.000
## 14897   SOM     70.000
## 14898   SOM     45.400
## 14899   SOM     47.000
## 14900   SOM     43.900
## 14901   SOM      0.390
## 14903   SOM    369.000
## 14904   SOM    108.700
## 14905   SOM    428.000
## 14906   SOM    180.900
## 14914   SOM     14.900
## 14920   SOM    -11.300
## 14934   SOM     15.500
## 14937   SOM      0.000
## 14939   SOM     47.500
## 14945   SOM     48.800
## 14946   SOM     20.900
## 14947   SOM     76.200
## 14952   ZAF      0.618
## 14953   ZAF     20.100
## 14954   ZAF      6.000
## 14955   ZAF     21.600
## 14956   ZAF      1.300
## 14957   ZAF      5.200
## 14958   ZAF      1.030
## 14959   ZAF     37.600
## 14960   ZAF     52.000
## 14961   ZAF     68.300
## 14962   ZAF      0.532
## 14963   ZAF     11.400
## 14964   ZAF     11.500
## 14965   ZAF     11.200
## 14966   ZAF      5.100
## 14968   ZAF    103.000
## 14969   ZAF     65.000
## 14970   ZAF     12.000
## 14972   ZAF      6.500
## 14973   ZAF      5.500
## 14974   ZAF      6.600
## 14975   ZAF     38.800
## 14976   ZAF     37.700
## 14977   ZAF     40.000
## 14978   ZAF     32.100
## 14981   ZAF     83.000
## 14982   ZAF      0.860
## 14983   ZAF      8.300
## 14984   ZAF      7.600
## 14986   ZAF     86.200
## 14987   ZAF     25.900
## 14991   ZAF     16.600
## 14992   ZAF     95.400
## 15005   ZAF    108.000
## 15015   ZAF      0.700
## 15016   ZAF     11.000
## 15017   ZAF     21.000
## 15018   ZAF     62.100
## 15019   ZAF     66.000
## 15020   ZAF     58.500
## 15021   ZAF      0.647
## 15023   ZAF    227.000
## 15024   ZAF     44.600
## 15025   ZAF    353.000
## 15026   ZAF     57.400
## 15035   ZAF     94.800
## 15036   ZAF   9696.000
## 15037   ZAF    364.200
## 15038   ZAF     20.900
## 15039   ZAF   9391.000
## 15040   ZAF      0.686
## 15057   ZAF     -0.700
## 15072   ZAF      2.500
## 15074   ZAF     19.400
## 15081   ZAF     35.100
## 15084   ZAF     41.700
## 15085   ZAF     -0.100
## 15087   ZAF      0.100
## 15088   ZAF      0.120
## 15092   ZAF     53.700
## 15093   ZAF     41.600
## 15094   ZAF     66.300
## 15101   LKA      0.625
## 15102   LKA     24.200
## 15103   LKA      8.800
## 15104   LKA     10.800
## 15105   LKA      0.900
## 15106   LKA      1.800
## 15107   LKA      1.050
## 15108   LKA     17.300
## 15109   LKA     18.500
## 15110   LKA     51.400
## 15111   LKA      0.592
## 15112   LKA     11.300
## 15113   LKA     11.400
## 15114   LKA     11.200
## 15115   LKA      2.400
## 15117   LKA    110.000
## 15118   LKA     72.000
## 15121   LKA      8.300
## 15122   LKA      7.400
## 15123   LKA      8.200
## 15124   LKA     51.600
## 15125   LKA     49.000
## 15126   LKA     54.300
## 15127   LKA      5.600
## 15131   LKA     74.000
## 15132   LKA      0.060
## 15133   LKA      0.200
## 15134   LKA     36.400
## 15136   LKA     24.100
## 15137   LKA     18.500
## 15141   LKA     78.100
## 15142   LKA     33.500
## 15154   LKA     75.000
## 15164   LKA      0.100
## 15165   LKA      5.000
## 15166   LKA     20.000
## 15167   LKA     69.500
## 15168   LKA     73.200
## 15169   LKA     66.300
## 15170   LKA      0.762
## 15172   LKA    121.000
## 15173   LKA     17.900
## 15174   LKA    259.000
## 15175   LKA     21.000
## 15184   LKA     38.000
## 15185   LKA   3612.000
## 15186   LKA     62.600
## 15187   LKA     21.900
## 15188   LKA   3587.000
## 15189   LKA      0.541
## 15206   LKA     -1.600
## 15208   LKA     16.800
## 15210   LKA     22.200
## 15217   LKA     46.900
## 15219   LKA     16.100
## 15220   LKA     68.200
## 15221   LKA      0.500
## 15222   LKA      9.100
## 15223   LKA     -0.500
## 15224   LKA      4.990
## 15228   LKA     62.500
## 15229   LKA     45.500
## 15230   LKA     79.300
## 15237   SDN      0.331
## 15238   SDN     17.000
## 15239   SDN      5.700
## 15240   SDN     10.400
## 15241   SDN      0.600
## 15242   SDN      3.500
## 15243   SDN      1.040
## 15244   SDN     20.100
## 15245   SDN     28.600
## 15246   SDN     88.300
## 15247   SDN      0.159
## 15248   SDN      3.900
## 15257   SDN      1.500
## 15258   SDN      0.900
## 15259   SDN      2.200
## 15260   SDN      7.200
## 15261   SDN      3.900
## 15262   SDN     10.700
## 15268   SDN      0.120
## 15269   SDN      0.200
## 15270   SDN     12.900
## 15272   SDN     17.400
## 15277   SDN     73.300
## 15278   SDN    101.500
## 15281   SDN      8.700
## 15290   SDN    744.000
## 15291   SDN     68.500
## 15295   SDN     28.900
## 15300   SDN      0.100
## 15301   SDN     17.000
## 15302   SDN     43.000
## 15303   SDN     55.500
## 15304   SDN     57.000
## 15305   SDN     54.000
## 15306   SDN      0.546
## 15308   SDN    272.000
## 15309   SDN     82.000
## 15310   SDN    326.000
## 15311   SDN    131.400
## 15320   SDN     21.700
## 15321   SDN   1743.000
## 15322   SDN     45.200
## 15323   SDN     10.400
## 15324   SDN   1593.000
## 15325   SDN      0.418
## 15342   SDN      1.600
## 15359   SDN     11.200
## 15364   SDN     13.200
## 15365   SDN      9.700
## 15366   SDN     11.100
## 15367   SDN     -0.300
## 15368   SDN      7.400
## 15369   SDN      0.000
## 15370   SDN      0.500
## 15375   SDN     49.900
## 15376   SDN     23.500
## 15377   SDN     76.600
## 15384   SUR     22.800
## 15385   SUR      7.700
## 15386   SUR      0.300
## 15387   SUR      0.000
## 15388   SUR      0.100
## 15389   SUR      1.080
## 15390   SUR      0.400
## 15391   SUR     65.700
## 15392   SUR     55.100
## 15394   SUR     11.900
## 15395   SUR     12.800
## 15396   SUR     11.000
## 15397   SUR     83.000
## 15398   SUR    122.000
## 15399   SUR     57.000
## 15400   SUR     10.000
## 15411   SUR     22.000
## 15413   SUR      0.410
## 15414   SUR      4.300
## 15415   SUR     98.900
## 15423   SUR     70.200
## 15433   SUR    127.000
## 15434   SUR     80.000
## 15442   SUR      0.200
## 15443   SUR      6.000
## 15444   SUR     35.000
## 15445   SUR     67.400
## 15446   SUR     71.000
## 15447   SUR     64.200
## 15448   SUR      0.729
## 15450   SUR    149.000
## 15451   SUR     39.800
## 15452   SUR    253.000
## 15453   SUR     46.400
## 15462   SUR    109.200
## 15463   SUR  10545.000
## 15464   SUR      4.300
## 15465   SUR     10.800
## 15466   SUR  10281.000
## 15467   SUR      0.700
## 15480   SUR     -2.500
## 15495   SUR     10.800
## 15499   SUR    100.000
## 15501   SUR     86.500
## 15502   SUR    -19.800
## 15503   SUR     16.100
## 15505   SUR      0.130
## 15510   SUR     49.000
## 15511   SUR     33.400
## 15512   SUR     64.400
## 15517   SWE      0.816
## 15518   SWE     38.400
## 15519   SWE     27.700
## 15520   SWE      5.500
## 15521   SWE      1.500
## 15522   SWE      0.600
## 15523   SWE      1.060
## 15524   SWE      8.600
## 15525   SWE     83.100
## 15526   SWE     27.900
## 15527   SWE      0.710
## 15528   SWE     12.900
## 15529   SWE     13.200
## 15530   SWE     12.700
## 15531   SWE      5.300
## 15532   SWE     64.000
## 15533   SWE    100.000
## 15534   SWE     90.000
## 15535   SWE     31.000
## 15536   SWE     10.500
## 15537   SWE     10.400
## 15538   SWE     10.500
## 15539   SWE     68.300
## 15540   SWE     67.200
## 15541   SWE     69.300
## 15542   SWE      0.500
## 15549   SWE      0.200
## 15550   SWE      6.100
## 15551   SWE     68.400
## 15553   SWE     37.300
## 15558   SWE     34.100
## 15559   SWE     11.800
## 15569   SWE      8.000
## 15578   SWE      0.100
## 15579   SWE      1.000
## 15580   SWE      4.000
## 15581   SWE     77.600
## 15582   SWE     80.500
## 15583   SWE     74.800
## 15584   SWE      0.887
## 15585   SWE     66.000
## 15586   SWE      5.900
## 15587   SWE    114.000
## 15588   SWE      7.000
## 15598   SWE  30934.000
## 15599   SWE    264.800
## 15600   SWE     28.900
## 15601   SWE  30255.000
## 15602   SWE      0.863
## 15620   SWE      3.200
## 15621   SWE     19.400
## 15623   SWE     29.500
## 15630   SWE    100.000
## 15632   SWE     56.900
## 15633   SWE      0.800
## 15634   SWE      3.900
## 15635   SWE      0.060
## 15639   SWE     67.500
## 15640   SWE     63.100
## 15641   SWE     72.100
## 15648   CHE      0.832
## 15649   CHE     36.900
## 15650   CHE     21.300
## 15651   CHE      4.600
## 15652   CHE      1.000
## 15653   CHE      0.400
## 15654   CHE      1.050
## 15655   CHE      6.700
## 15656   CHE     73.900
## 15657   CHE     24.900
## 15658   CHE      0.695
## 15659   CHE     13.400
## 15660   CHE     12.800
## 15661   CHE     13.900
## 15662   CHE      4.500
## 15663   CHE     90.000
## 15664   CHE     89.000
## 15665   CHE     96.000
## 15666   CHE     26.000
## 15667   CHE      9.700
## 15668   CHE      9.500
## 15669   CHE     10.900
## 15670   CHE     63.400
## 15671   CHE     57.400
## 15672   CHE     70.000
## 15679   CHE      0.130
## 15680   CHE      6.300
## 15681   CHE     29.100
## 15683   CHE     58.500
## 15688   CHE     17.100
## 15689   CHE      6.300
## 15700   CHE      8.000
## 15707   CHE      4.000
## 15708   CHE     10.000
## 15709   CHE     77.600
## 15710   CHE     80.900
## 15711   CHE     74.100
## 15712   CHE      0.886
## 15713   CHE     62.000
## 15714   CHE      6.700
## 15715   CHE    127.000
## 15716   CHE      8.200
## 15725   CHE    158.400
## 15726   CHE  48182.000
## 15727   CHE    323.600
## 15728   CHE     31.100
## 15729   CHE  49018.000
## 15730   CHE      0.936
## 15748   CHE      4.000
## 15749   CHE     16.500
## 15751   CHE     32.700
## 15757   CHE    100.000
## 15759   CHE     83.700
## 15760   CHE      2.100
## 15761   CHE      0.500
## 15762   CHE      0.360
## 15766   CHE     68.400
## 15767   CHE     57.000
## 15768   CHE     80.500
## 15776   SYR     16.300
## 15777   SYR      6.100
## 15778   SYR      6.200
## 15779   SYR      0.400
## 15780   SYR      2.100
## 15781   SYR      1.050
## 15782   SYR     12.400
## 15783   SYR     48.900
## 15784   SYR     94.300
## 15785   SYR      0.417
## 15786   SYR     10.300
## 15787   SYR      9.200
## 15788   SYR     11.200
## 15790   SYR      7.000
## 15791   SYR    105.000
## 15792   SYR     51.000
## 15793   SYR     18.000
## 15794   SYR      4.000
## 15795   SYR      2.900
## 15796   SYR      4.800
## 15797   SYR     24.000
## 15798   SYR     18.800
## 15799   SYR     28.900
## 15800   SYR      7.500
## 15802   SYR     26.000
## 15803   SYR     72.000
## 15804   SYR      3.000
## 15805   SYR      2.000
## 15807   SYR     97.700
## 15812   SYR      2.400
## 15813   SYR     82.100
## 15825   SYR    123.000
## 15835   SYR      7.000
## 15836   SYR     13.000
## 15837   SYR     70.600
## 15838   SYR     72.100
## 15839   SYR     69.100
## 15840   SYR      0.778
## 15841   SYR    115.000
## 15842   SYR     30.400
## 15843   SYR    165.000
## 15844   SYR     37.100
## 15853   SYR     56.600
## 15854   SYR     16.500
## 15869   SYR     -2.500
## 15884   SYR     16.500
## 15887   SYR     64.600
## 15889   SYR     56.300
## 15890   SYR      0.300
## 15891   SYR      7.400
## 15892   SYR      0.000
## 15893   SYR      3.130
## 15897   SYR     54.200
## 15898   SYR     22.500
## 15899   SYR     85.700
## 15905   TJK      0.623
## 15906   TJK     18.100
## 15907   TJK      7.300
## 15908   TJK      2.800
## 15909   TJK      0.200
## 15910   TJK      0.900
## 15911   TJK      1.050
## 15912   TJK      5.300
## 15913   TJK     31.700
## 15914   TJK     83.700
## 15915   TJK      0.652
## 15916   TJK     12.000
## 15923   TJK     22.000
## 15925   TJK      9.600
## 15926   TJK      8.700
## 15927   TJK     10.600
## 15928   TJK     77.200
## 15929   TJK     71.200
## 15930   TJK     83.700
## 15937   TJK      2.900
## 15939   TJK     71.300
## 15944   TJK     29.600
## 15945   TJK     57.400
## 15956   TJK    107.000
## 15967   TJK      0.100
## 15970   TJK     63.100
## 15971   TJK     66.600
## 15972   TJK     59.800
## 15973   TJK      0.664
## 15975   TJK    140.000
## 15976   TJK     84.100
## 15977   TJK    242.000
## 15978   TJK    107.100
## 15988   TJK   3645.000
## 15989   TJK     19.300
## 15990   TJK     21.700
## 15991   TJK   4029.000
## 15992   TJK      0.558
## 16009   TJK     -2.800
## 16026   TJK     24.800
## 16033   TJK     95.400
## 16036   TJK     63.000
## 16044   TJK     57.400
## 16045   TJK     45.400
## 16046   TJK     70.000
## 16053   THA      0.574
## 16054   THA     24.300
## 16055   THA      6.900
## 16056   THA     36.900
## 16057   THA      2.600
## 16058   THA      5.400
## 16059   THA      1.050
## 16060   THA     56.600
## 16061   THA     29.400
## 16062   THA     46.300
## 16063   THA      0.387
## 16064   THA      8.400
## 16065   THA      8.400
## 16066   THA      8.500
## 16068   THA     42.000
## 16069   THA     99.000
## 16070   THA     29.000
## 16071   THA     16.000
## 16073   THA      4.600
## 16074   THA      3.500
## 16075   THA      4.300
## 16076   THA     14.800
## 16077   THA     11.600
## 16078   THA     18.100
## 16085   THA     20.000
## 16087   THA      0.240
## 16088   THA      1.600
## 16089   THA     27.400
## 16091   THA     63.800
## 16096   THA     33.600
## 16097   THA     53.200
## 16110   THA     40.000
## 16111   THA     90.800
## 16120   THA      0.600
## 16121   THA      3.000
## 16122   THA     20.000
## 16123   THA     70.300
## 16124   THA     73.400
## 16125   THA     67.200
## 16126   THA      0.773
## 16128   THA    136.000
## 16129   THA     30.900
## 16130   THA    228.000
## 16131   THA     37.800
## 16140   THA     94.100
## 16141   THA   6650.000
## 16142   THA    376.300
## 16143   THA     40.400
## 16144   THA   6560.000
## 16145   THA      0.632
## 16163   THA      1.900
## 16178   THA     22.400
## 16180   THA     41.400
## 16187   THA     66.000
## 16189   THA     16.900
## 16190   THA     75.800
## 16191   THA      2.900
## 16192   THA      0.900
## 16193   THA     -2.700
## 16194   THA      1.140
## 16198   THA     75.700
## 16199   THA     67.200
## 16200   THA     84.700
## 16208   MKD     29.200
## 16209   MKD     10.800
## 16210   MKD      1.300
## 16211   MKD      0.100
## 16212   MKD      0.200
## 16213   MKD      1.050
## 16214   MKD      2.000
## 16215   MKD     57.800
## 16216   MKD     39.300
## 16218   MKD     10.300
## 16219   MKD     10.200
## 16220   MKD     10.300
## 16225   MKD     17.000
## 16240   MKD     35.900
## 16242   MKD     98.000
## 16247   MKD      2.400
## 16248   MKD     48.700
## 16261   MKD     14.000
## 16262   MKD     88.900
## 16271   MKD      0.100
## 16274   MKD     71.200
## 16275   MKD     73.200
## 16276   MKD     69.200
## 16277   MKD      0.787
## 16278   MKD    101.000
## 16279   MKD     33.500
## 16280   MKD    161.000
## 16281   MKD     37.100
## 16291   MKD   9633.000
## 16292   MKD     19.200
## 16293   MKD     18.000
## 16294   MKD   9526.000
## 16295   MKD      0.688
## 16313   MKD     -9.900
## 16330   MKD     18.700
## 16335   MKD     96.000
## 16338   MKD     61.700
## 16347   MKD     55.300
## 16348   MKD     43.100
## 16349   MKD     67.500
## 16356   TGO      0.405
## 16357   TGO     16.800
## 16358   TGO      5.800
## 16359   TGO      1.900
## 16360   TGO      0.100
## 16361   TGO      0.700
## 16362   TGO      1.020
## 16363   TGO      3.800
## 16364   TGO     28.600
## 16365   TGO     91.000
## 16366   TGO      0.310
## 16367   TGO      7.600
## 16368   TGO      5.300
## 16369   TGO      9.700
## 16371   TGO      3.000
## 16372   TGO     93.000
## 16373   TGO     22.000
## 16374   TGO      2.000
## 16376   TGO      3.000
## 16377   TGO      1.600
## 16378   TGO      4.600
## 16379   TGO     19.800
## 16380   TGO      9.500
## 16381   TGO     30.100
## 16382   TGO     40.000
## 16384   TGO     56.000
## 16385   TGO     54.000
## 16386   TGO      0.150
## 16387   TGO      0.200
## 16388   TGO     12.600
## 16390   TGO     15.100
## 16394   TGO     78.700
## 16395   TGO    127.000
## 16406   TGO    568.000
## 16417   TGO      1.200
## 16418   TGO     10.000
## 16419   TGO     27.000
## 16420   TGO     55.900
## 16421   TGO     57.100
## 16422   TGO     54.600
## 16423   TGO      0.552
## 16425   TGO    253.000
## 16426   TGO     89.400
## 16427   TGO    293.000
## 16428   TGO    144.800
## 16437   TGO     21.300
## 16438   TGO   1350.000
## 16439   TGO      5.100
## 16440   TGO     25.300
## 16441   TGO   1293.000
## 16442   TGO      0.387
## 16459   TGO     -1.100
## 16474   TGO      9.500
## 16476   TGO     26.600
## 16484   TGO     12.300
## 16485   TGO     78.800
## 16486   TGO      1.100
## 16487   TGO     16.200
## 16488   TGO     -1.300
## 16489   TGO      1.650
## 16494   TGO     82.400
## 16495   TGO     80.800
## 16496   TGO     84.100
## 16503   TON      0.648
## 16504   TON     19.700
## 16505   TON      8.000
## 16506   TON      0.100
## 16507   TON      0.000
## 16508   TON      0.000
## 16509   TON      1.050
## 16510   TON      0.100
## 16511   TON     22.700
## 16512   TON     70.200
## 16513   TON      0.656
## 16514   TON     13.700
## 16519   TON    107.000
## 16520   TON     98.000
## 16523   TON      8.300
## 16524   TON      8.100
## 16525   TON      8.600
## 16526   TON     62.500
## 16527   TON     59.900
## 16528   TON     65.600
## 16531   TON     24.000
## 16532   TON      0.230
## 16533   TON      0.800
## 16534   TON     12.500
## 16536   TON      0.000
## 16540   TON      1.500
## 16541   TON     25.500
## 16551   TON     75.000
## 16552   TON     94.000
## 16562   TON      3.000
## 16563   TON     14.000
## 16564   TON     69.600
## 16565   TON     71.100
## 16566   TON     68.100
## 16567   TON      0.763
## 16568   TON    154.000
## 16569   TON     18.600
## 16570   TON    194.000
## 16571   TON     21.800
## 16580   TON     30.000
## 16581   TON   3574.000
## 16582   TON      0.300
## 16583   TON     18.000
## 16584   TON   3650.000
## 16585   TON      0.543
## 16596   TON    -23.100
## 16597   TON     18.200
## 16599   TON     18.500
## 16603   TON     72.400
## 16604   TON      4.400
## 16605   TON     99.000
## 16606   TON      0.200
## 16607   TON     25.500
## 16608   TON      7.000
## 16609   TON     21.100
## 16613   TON     55.600
## 16614   TON     35.900
## 16615   TON     75.400
## 16621   TTO      0.672
## 16622   TTO     24.100
## 16623   TTO      9.500
## 16624   TTO      0.700
## 16625   TTO      0.100
## 16626   TTO      0.100
## 16627   TTO      1.040
## 16628   TTO      1.200
## 16629   TTO     54.100
## 16630   TTO     55.400
## 16631   TTO      0.575
## 16632   TTO     11.200
## 16633   TTO     11.200
## 16634   TTO     11.100
## 16635   TTO      3.700
## 16636   TTO      8.000
## 16637   TTO     96.000
## 16638   TTO     83.000
## 16640   TTO     96.900
## 16641   TTO      7.900
## 16642   TTO      7.800
## 16643   TTO      8.100
## 16644   TTO     36.800
## 16645   TTO     37.000
## 16646   TTO     36.700
## 16655   TTO      1.140
## 16656   TTO     13.900
## 16657   TTO     46.900
## 16659   TTO     98.900
## 16664   TTO      1.200
## 16665   TTO     72.100
## 16676   TTO     90.000
## 16688   TTO      0.100
## 16689   TTO      6.000
## 16690   TTO     30.000
## 16691   TTO     68.000
## 16692   TTO     70.900
## 16693   TTO     65.200
## 16694   TTO      0.739
## 16695   TTO    163.000
## 16696   TTO     26.400
## 16697   TTO    243.000
## 16698   TTO     29.900
## 16707   TTO     58.500
## 16708   TTO  12255.000
## 16709   TTO     15.000
## 16710   TTO  11289.000
## 16711   TTO      0.714
## 16725   TTO     -7.500
## 16738   TTO     -1.100
## 16743   TTO     81.200
## 16745   TTO      2.200
## 16746   TTO      0.400
## 16747   TTO     -2.200
## 16748   TTO      0.070
## 16752   TTO     57.200
## 16753   TTO     38.600
## 16754   TTO     76.300
## 16761   TUN      0.569
## 16762   TUN     21.300
## 16763   TUN      8.400
## 16764   TUN      4.800
## 16765   TUN      0.400
## 16766   TUN      1.100
## 16767   TUN      1.050
## 16768   TUN      8.200
## 16769   TUN     57.900
## 16770   TUN     64.200
## 16771   TUN      0.406
## 16772   TUN     10.500
## 16773   TUN      9.500
## 16774   TUN     11.500
## 16775   TUN      5.800
## 16776   TUN      7.000
## 16777   TUN    114.000
## 16778   TUN     45.000
## 16779   TUN      8.000
## 16781   TUN      3.400
## 16782   TUN      2.300
## 16783   TUN      4.600
## 16784   TUN     19.500
## 16785   TUN     12.000
## 16786   TUN     27.000
## 16787   TUN     22.000
## 16793   TUN     30.000
## 16794   TUN     86.000
## 16795   TUN      0.290
## 16796   TUN      1.600
## 16797   TUN      4.100
## 16799   TUN     87.000
## 16800   TUN     66.500
## 16804   TUN     14.500
## 16805   TUN     23.700
## 16817   TUN    131.000
## 16827   TUN      0.100
## 16828   TUN      3.000
## 16829   TUN      7.000
## 16830   TUN     68.800
## 16831   TUN     71.000
## 16832   TUN     66.800
## 16833   TUN      0.751
## 16834   TUN    137.000
## 16835   TUN     44.200
## 16836   TUN    185.000
## 16837   TUN     56.800
## 16846   TUN     62.500
## 16847   TUN   5615.000
## 16848   TUN     46.200
## 16849   TUN     24.400
## 16850   TUN   5468.000
## 16851   TUN      0.604
## 16868   TUN      1.300
## 16883   TUN     14.200
## 16885   TUN     27.100
## 16892   TUN     72.000
## 16894   TUN     27.000
## 16895   TUN     94.200
## 16896   TUN      0.600
## 16897   TUN      3.300
## 16898   TUN     -0.600
## 16899   TUN      4.480
## 16904   TUN     49.000
## 16905   TUN     22.500
## 16906   TUN     75.600
## 16912   TUR      0.579
## 16913   TUR     22.100
## 16914   TUR      7.700
## 16915   TUR     32.100
## 16916   TUR      2.500
## 16917   TUR      6.600
## 16918   TUR      1.050
## 16919   TUR     53.900
## 16920   TUR     59.200
## 16921   TUR     60.100
## 16922   TUR      0.399
## 16923   TUR      8.900
## 16924   TUR      7.800
## 16925   TUR     10.300
## 16927   TUR      4.000
## 16928   TUR    106.000
## 16929   TUR     51.000
## 16930   TUR     13.000
## 16931   TUR     79.200
## 16932   TUR      4.500
## 16933   TUR      3.300
## 16934   TUR      5.800
## 16935   TUR     19.400
## 16936   TUR     12.300
## 16937   TUR     26.500
## 16938   TUR      4.400
## 16943   TUR     30.000
## 16944   TUR     78.000
## 16945   TUR      0.240
## 16946   TUR      2.700
## 16947   TUR     12.500
## 16949   TUR     81.800
## 16954   TUR     24.500
## 16955   TUR     71.900
## 16968   TUR     97.000
## 16979   TUR      6.000
## 16980   TUR     22.000
## 16981   TUR     64.300
## 16982   TUR     68.000
## 16983   TUR     60.700
## 16984   TUR      0.681
## 16986   TUR    129.000
## 16987   TUR     55.600
## 16988   TUR    229.000
## 16989   TUR     74.200
## 16998   TUR     19.500
## 16999   TUR  11400.000
## 17000   TUR    614.700
## 17001   TUR     22.900
## 17002   TUR  11214.000
## 17003   TUR      0.713
## 17021   TUR     -0.400
## 17023   TUR      6.500
## 17025   TUR     24.500
## 17032   TUR     80.900
## 17034   TUR     33.800
## 17035   TUR     30.900
## 17036   TUR      0.500
## 17037   TUR      0.900
## 17038   TUR     -0.800
## 17039   TUR      2.150
## 17043   TUR     56.800
## 17044   TUR     34.000
## 17045   TUR     80.800
## 17053   TKM     19.600
## 17054   TKM      6.800
## 17055   TKM      2.000
## 17056   TKM      0.100
## 17057   TKM      0.600
## 17058   TKM      1.050
## 17059   TKM      3.700
## 17060   TKM     45.100
## 17061   TKM     72.900
## 17070   TKM     12.000
## 17077   TKM      8.800
## 17083   TKM      0.300
## 17084   TKM     22.300
## 17090   TKM     82.000
## 17102   TKM     62.800
## 17103   TKM     66.500
## 17104   TKM     59.100
## 17105   TKM      0.659
## 17106   TKM    165.000
## 17107   TKM     69.500
## 17108   TKM    293.000
## 17109   TKM     86.300
## 17118   TKM   8317.000
## 17119   TKM     30.600
## 17121   TKM   8378.000
## 17122   TKM      0.669
## 17136   TKM     -2.300
## 17150   TKM     40.000
## 17154   TKM     98.100
## 17163   TKM     61.900
## 17164   TKM     49.900
## 17165   TKM     74.900
## 17170   UGA      0.311
## 17171   UGA     15.900
## 17172   UGA      5.400
## 17173   UGA      8.600
## 17174   UGA      0.500
## 17175   UGA      3.400
## 17176   UGA      1.030
## 17177   UGA     17.400
## 17178   UGA     11.100
## 17179   UGA     97.600
## 17180   UGA      0.250
## 17181   UGA      5.700
## 17182   UGA      4.900
## 17183   UGA      6.400
## 17186   UGA     70.000
## 17187   UGA     11.000
## 17188   UGA      1.000
## 17190   UGA      2.800
## 17191   UGA      1.900
## 17192   UGA      3.900
## 17193   UGA     11.000
## 17194   UGA      6.200
## 17195   UGA     16.000
## 17197   UGA     29.000
## 17199   UGA      0.060
## 17200   UGA      0.000
## 17201   UGA     23.800
## 17207   UGA     96.000
## 17208   UGA    185.500
## 17220   UGA    687.000
## 17231   UGA     14.800
## 17232   UGA     28.000
## 17233   UGA     48.000
## 17234   UGA     45.500
## 17235   UGA     48.500
## 17236   UGA     42.800
## 17237   UGA      0.392
## 17239   UGA    434.000
## 17240   UGA    104.400
## 17241   UGA    577.000
## 17242   UGA    175.000
## 17252   UGA    769.000
## 17253   UGA     13.400
## 17254   UGA     12.700
## 17255   UGA    755.000
## 17256   UGA      0.305
## 17273   UGA      2.900
## 17288   UGA    -16.400
## 17290   UGA     12.700
## 17298   UGA     81.400
## 17299   UGA     26.600
## 17300   UGA     -0.100
## 17301   UGA     15.700
## 17302   UGA      0.000
## 17308   UGA     69.800
## 17309   UGA     62.500
## 17310   UGA     77.300
## 17317   UKR      0.705
## 17318   UKR     35.300
## 17319   UKR     18.000
## 17320   UKR     34.400
## 17321   UKR      6.200
## 17322   UKR      3.500
## 17323   UKR      1.060
## 17324   UKR     51.500
## 17325   UKR     66.800
## 17326   UKR     31.800
## 17327   UKR      0.648
## 17328   UKR     12.400
## 17329   UKR     12.900
## 17330   UKR     11.900
## 17332   UKR     67.000
## 17333   UKR    112.000
## 17334   UKR     94.000
## 17335   UKR     49.000
## 17337   UKR      9.100
## 17338   UKR      8.700
## 17339   UKR      9.700
## 17340   UKR     77.500
## 17341   UKR     72.600
## 17342   UKR     83.900
## 17346   UKR     99.000
## 17349   UKR     16.000
## 17351   UKR     91.800
## 17356   UKR      0.700
## 17357   UKR     63.100
## 17370   UKR     46.000
## 17371   UKR     99.900
## 17381   UKR      0.100
## 17384   UKR     69.800
## 17385   UKR     74.200
## 17386   UKR     65.100
## 17387   UKR      0.767
## 17388   UKR    111.000
## 17389   UKR     16.600
## 17390   UKR    286.000
## 17391   UKR     19.400
## 17401   UKR  10464.000
## 17402   UKR    543.000
## 17403   UKR     23.000
## 17404   UKR  10748.000
## 17405   UKR      0.707
## 17423   UKR      0.000
## 17440   UKR     27.500
## 17447   UKR     96.700
## 17450   UKR     56.400
## 17459   UKR     60.300
## 17460   UKR     54.800
## 17461   UKR     66.900
## 17468   GBR      0.775
## 17469   GBR     35.800
## 17470   GBR     24.200
## 17471   GBR     37.300
## 17472   GBR      9.000
## 17473   GBR      3.800
## 17474   GBR      1.050
## 17475   GBR     57.200
## 17476   GBR     78.100
## 17477   GBR     29.100
## 17478   GBR      0.644
## 17479   GBR     13.700
## 17480   GBR     13.700
## 17481   GBR     13.600
## 17482   GBR      4.100
## 17483   GBR     50.000
## 17484   GBR    107.000
## 17485   GBR     84.000
## 17486   GBR     26.000
## 17487   GBR      7.900
## 17488   GBR      8.900
## 17489   GBR      8.800
## 17490   GBR     52.200
## 17491   GBR     67.000
## 17492   GBR     53.600
## 17497   GBR     20.000
## 17498   GBR      0.360
## 17499   GBR      9.700
## 17500   GBR     11.500
## 17502   GBR     90.700
## 17503   GBR      8.200
## 17507   GBR      0.700
## 17508   GBR     31.700
## 17519   GBR     10.000
## 17528   GBR      6.000
## 17529   GBR     13.000
## 17530   GBR     75.700
## 17531   GBR     78.400
## 17532   GBR     72.800
## 17533   GBR      0.857
## 17534   GBR     78.000
## 17535   GBR      7.900
## 17536   GBR    129.000
## 17537   GBR      9.300
## 17546   GBR    109.500
## 17547   GBR  26828.000
## 17548   GBR   1535.800
## 17549   GBR     23.500
## 17550   GBR  26684.000
## 17551   GBR      0.844
## 17569   GBR      0.300
## 17570   GBR      8.100
## 17572   GBR     23.000
## 17579   GBR    100.000
## 17581   GBR     47.000
## 17582   GBR      3.100
## 17583   GBR     -0.700
## 17584   GBR      0.190
## 17588   GBR     62.600
## 17589   GBR     52.000
## 17590   GBR     74.100
## 17598   URY      0.692
## 17599   URY     30.700
## 17600   URY     18.700
## 17601   URY      1.900
## 17602   URY      0.400
## 17603   URY      0.300
## 17604   URY      1.050
## 17605   URY      3.100
## 17606   URY     89.000
## 17607   URY     41.700
## 17608   URY      0.597
## 17609   URY     12.900
## 17613   URY     43.000
## 17614   URY    109.000
## 17615   URY     81.000
## 17616   URY     30.000
## 17618   URY      7.200
## 17619   URY      7.100
## 17620   URY      7.100
## 17621   URY     40.000
## 17622   URY     39.800
## 17623   URY     34.900
## 17624   URY      7.700
## 17630   URY     22.000
## 17632   URY      0.130
## 17633   URY      1.300
## 17634   URY      4.600
## 17636   URY     58.700
## 17641   URY     44.800
## 17642   URY     66.400
## 17655   URY     37.000
## 17656   URY     99.400
## 17664   URY      0.100
## 17665   URY      2.000
## 17666   URY      3.000
## 17667   URY     72.600
## 17668   URY     76.400
## 17669   URY     68.900
## 17670   URY      0.809
## 17671   URY    100.000
## 17672   URY     20.600
## 17673   URY    196.000
## 17674   URY     23.400
## 17683   URY     46.700
## 17684   URY   9841.000
## 17685   URY     30.600
## 17686   URY     12.100
## 17687   URY   9497.000
## 17688   URY      0.688
## 17705   URY     -2.000
## 17707   URY      6.900
## 17709   URY     12.200
## 17715   URY     76.200
## 17717   URY     41.600
## 17718   URY      0.400
## 17719   URY      0.600
## 17720   URY     -1.200
## 17725   URY     60.300
## 17726   URY     45.600
## 17727   URY     76.400
## 17735   UZB     19.600
## 17736   UZB      7.400
## 17737   UZB     11.300
## 17738   UZB      0.800
## 17739   UZB      3.200
## 17740   UZB      1.050
## 17741   UZB     20.500
## 17742   UZB     41.400
## 17743   UZB     73.700
## 17745   UZB     11.300
## 17748   UZB     57.000
## 17749   UZB    110.000
## 17750   UZB    101.000
## 17751   UZB     17.000
## 17761   UZB     24.000
## 17765   UZB      7.200
## 17767   UZB     99.200
## 17772   UZB      1.300
## 17773   UZB     42.800
## 17784   UZB     54.000
## 17795   UZB     66.500
## 17796   UZB     69.400
## 17797   UZB     63.400
## 17798   UZB      0.715
## 17800   UZB    142.000
## 17801   UZB     59.400
## 17802   UZB    239.000
## 17803   UZB     72.300
## 17812   UZB   3071.000
## 17813   UZB     63.000
## 17814   UZB     30.700
## 17815   UZB   1940.000
## 17816   UZB      0.448
## 17830   UZB     -3.600
## 17845   UZB     30.700
## 17849   UZB     97.800
## 17850   UZB     76.600
## 17857   UZB     62.000
## 17858   UZB     50.000
## 17859   UZB     74.800
## 17866   VUT     18.100
## 17867   VUT      6.800
## 17868   VUT      0.100
## 17869   VUT      0.000
## 17870   VUT      0.000
## 17871   VUT      1.070
## 17872   VUT      0.100
## 17873   VUT     18.700
## 17874   VUT     83.400
## 17881   VUT     97.000
## 17889   VUT      0.180
## 17890   VUT      0.500
## 17891   VUT     36.100
## 17893   VUT      0.000
## 17897   VUT     24.200
## 17898   VUT     77.700
## 17905   VUT    225.000
## 17906   VUT     79.000
## 17916   VUT      9.000
## 17917   VUT     34.000
## 17918   VUT     63.100
## 17919   VUT     64.700
## 17920   VUT     61.800
## 17921   VUT      0.663
## 17923   VUT    205.000
## 17924   VUT     29.200
## 17925   VUT    251.000
## 17926   VUT     35.500
## 17935   VUT     30.800
## 17936   VUT   2549.000
## 17937   VUT      0.400
## 17938   VUT     31.600
## 17939   VUT   2454.000
## 17940   VUT      0.483
## 17956   VUT     -4.000
## 17970   VUT     17.900
## 17972   VUT     33.200
## 17976   VUT      2.300
## 17977   VUT    120.000
## 17978   VUT      8.300
## 17979   VUT     30.500
## 17980   VUT     -8.300
## 17981   VUT      5.180
## 17985   VUT     70.400
## 17986   VUT     61.400
## 17987   VUT     79.100
## 17993   VEN      0.634
## 17994   VEN     21.000
## 17995   VEN      6.300
## 17996   VEN     11.600
## 17997   VEN      0.700
## 17998   VEN      2.800
## 17999   VEN      1.050
## 18000   VEN     19.900
## 18001   VEN     84.300
## 18002   VEN     64.900
## 18003   VEN      0.444
## 18004   VEN     10.500
## 18007   VEN      2.500
## 18008   VEN     37.000
## 18009   VEN    106.000
## 18010   VEN     55.000
## 18011   VEN     27.000
## 18012   VEN     89.800
## 18013   VEN      4.600
## 18014   VEN      4.500
## 18015   VEN      4.800
## 18016   VEN     23.800
## 18017   VEN     23.400
## 18018   VEN     25.200
## 18019   VEN     14.300
## 18021   VEN     60.000
## 18022   VEN      0.430
## 18023   VEN      6.200
## 18024   VEN     59.000
## 18026   VEN     90.500
## 18031   VEN     12.000
## 18032   VEN    100.200
## 18042   VEN     94.000
## 18051   VEN      0.100
## 18052   VEN     16.000
## 18053   VEN     39.000
## 18054   VEN     69.800
## 18055   VEN     72.700
## 18056   VEN     67.100
## 18057   VEN      0.766
## 18059   VEN    128.000
## 18060   VEN     24.800
## 18061   VEN    217.000
## 18062   VEN     29.700
## 18071   VEN     38.600
## 18072   VEN  14451.000
## 18073   VEN    287.000
## 18074   VEN     14.100
## 18075   VEN  14377.000
## 18076   VEN      0.750
## 18093   VEN      0.000
## 18095   VEN     13.500
## 18097   VEN     10.200
## 18102   VEN     85.100
## 18104   VEN     23.300
## 18105   VEN     59.600
## 18106   VEN      1.000
## 18107   VEN      0.200
## 18108   VEN    -34.100
## 18109   VEN      0.000
## 18113   VEN     61.300
## 18114   VEN     41.800
## 18115   VEN     80.800
## 18122   YEM      0.399
## 18123   YEM     14.300
## 18124   YEM      5.400
## 18125   YEM      5.500
## 18126   YEM      0.300
## 18127   YEM      2.600
## 18128   YEM      1.050
## 18129   YEM     12.100
## 18130   YEM     20.900
## 18131   YEM    113.700
## 18132   YEM      0.219
## 18133   YEM      7.500
## 18141   YEM      0.300
## 18142   YEM      0.100
## 18143   YEM      0.500
## 18144   YEM      1.000
## 18145   YEM      0.400
## 18146   YEM      2.000
## 18150   YEM      0.240
## 18151   YEM      0.800
## 18152   YEM      1.000
## 18154   YEM     96.900
## 18155   YEM    139.100
## 18159   YEM      2.100
## 18160   YEM    152.500
## 18171   YEM    547.000
## 18181   YEM      0.100
## 18182   YEM      6.000
## 18183   YEM     31.000
## 18184   YEM     57.900
## 18185   YEM     59.300
## 18186   YEM     56.300
## 18187   YEM      0.583
## 18189   YEM    247.000
## 18190   YEM     88.400
## 18191   YEM    300.000
## 18192   YEM    125.800
## 18201   YEM     51.800
## 18202   YEM   3327.000
## 18203   YEM     40.100
## 18204   YEM     10.500
## 18205   YEM   2726.000
## 18206   YEM      0.499
## 18223   YEM     -0.900
## 18240   YEM     12.400
## 18246   YEM     22.100
## 18248   YEM     11.100
## 18249   YEM     29.400
## 18250   YEM     -2.300
## 18251   YEM      8.000
## 18253   YEM     26.530
## 18257   YEM     44.200
## 18258   YEM     16.800
## 18259   YEM     73.700
## 18266   ZMB      0.401
## 18267   ZMB     16.400
## 18268   ZMB      5.300
## 18269   ZMB      4.000
## 18270   ZMB      0.200
## 18271   ZMB      1.500
## 18272   ZMB      1.030
## 18273   ZMB      8.000
## 18274   ZMB     39.400
## 18275   ZMB     93.100
## 18276   ZMB      0.365
## 18277   ZMB      7.500
## 18281   ZMB     93.000
## 18282   ZMB     21.000
## 18283   ZMB      2.000
## 18284   ZMB     65.000
## 18285   ZMB      4.700
## 18286   ZMB      3.200
## 18287   ZMB      6.300
## 18288   ZMB     22.100
## 18289   ZMB     12.500
## 18290   ZMB     32.000
## 18293   ZMB     44.000
## 18295   ZMB      0.130
## 18296   ZMB      0.300
## 18297   ZMB     71.000
## 18299   ZMB     15.500
## 18304   ZMB     83.000
## 18305   ZMB    161.000
## 18316   ZMB    577.000
## 18327   ZMB      8.100
## 18328   ZMB      3.000
## 18329   ZMB     10.000
## 18330   ZMB     45.000
## 18331   ZMB     47.400
## 18332   ZMB     42.700
## 18333   ZMB      0.385
## 18335   ZMB    478.000
## 18336   ZMB    109.700
## 18337   ZMB    590.000
## 18338   ZMB    182.200
## 18347   ZMB     67.800
## 18348   ZMB   2342.000
## 18349   ZMB     18.800
## 18351   ZMB   2076.000
## 18352   ZMB      0.458
## 18368   ZMB      0.100
## 18392   ZMB      1.800
## 18393   ZMB     14.700
## 18395   ZMB      6.200
## 18396   ZMB     15.800
## 18397   ZMB     -6.200
## 18402   ZMB     79.700
## 18403   ZMB     73.800
## 18404   ZMB     85.800
## 18411   ZWE      0.491
## 18412   ZWE     16.600
## 18413   ZWE      5.900
## 18414   ZWE      5.200
## 18415   ZWE      0.300
## 18416   ZWE      1.700
## 18417   ZWE      1.020
## 18418   ZWE     10.200
## 18419   ZWE     29.000
## 18420   ZWE     91.400
## 18421   ZWE      0.423
## 18422   ZWE      9.800
## 18423   ZWE      9.300
## 18424   ZWE     10.200
## 18425   ZWE     12.500
## 18427   ZWE    100.000
## 18428   ZWE     46.000
## 18429   ZWE      5.000
## 18431   ZWE      4.500
## 18432   ZWE      3.600
## 18433   ZWE      5.600
## 18434   ZWE     24.300
## 18435   ZWE     16.600
## 18436   ZWE     33.700
## 18439   ZWE     36.000
## 18441   ZWE      0.590
## 18442   ZWE      1.500
## 18443   ZWE     57.300
## 18445   ZWE     44.800
## 18450   ZWE     64.000
## 18451   ZWE    108.300
## 18463   ZWE    440.000
## 18474   ZWE     14.900
## 18475   ZWE      4.000
## 18476   ZWE     13.000
## 18477   ZWE     57.900
## 18478   ZWE     61.100
## 18479   ZWE     55.000
## 18480   ZWE      0.584
## 18482   ZWE    328.000
## 18483   ZWE     50.300
## 18484   ZWE    455.000
## 18485   ZWE     75.200
## 18494   ZWE     41.700
## 18495   ZWE   2606.000
## 18496   ZWE     26.500
## 18497   ZWE     18.200
## 18498   ZWE   2382.000
## 18499   ZWE      0.479
## 18517   ZWE      1.800
## 18532   ZWE     23.400
## 18534   ZWE     17.400
## 18538   ZWE      7.800
## 18540   ZWE     23.100
## 18541   ZWE     45.700
## 18542   ZWE     -0.100
## 18543   ZWE      3.900
## 18544   ZWE      0.400
## 18545   ZWE      0.010
## 18549   ZWE     74.800
## 18550   ZWE     67.800
## 18551   ZWE     82.100
## 18558   ALB      0.626
## 18560   ALB      9.200
## 18561   ALB      2.000
## 18562   ALB      0.200
## 18563   ALB      0.400
## 18565   ALB      3.300
## 18566   ALB     36.700
## 18567   ALB     53.300
## 18568   ALB      0.589
## 18569   ALB     11.800
## 18570   ALB     11.500
## 18571   ALB     12.100
## 18578   ALB      7.800
## 18579   ALB      7.300
## 18580   ALB      8.200
## 18582   ALB     59.700
## 18583   ALB     69.700
## 18616   ALB     32.000
## 18618   ALB      1.510
## 18622   ALB      0.830
## 18625   ALB      0.100
## 18626   ALB      8.000
## 18627   ALB     20.000
## 18628   ALB     71.800
## 18629   ALB     75.000
## 18630   ALB     69.000
## 18631   ALB      0.797
## 18632   ALB     76.000
## 18633   ALB     33.300
## 18634   ALB    147.000
## 18635   ALB     38.300
## 18648   ALB   3188.000
## 18649   ALB      0.523
## 18680   ALB      7.800
## 18693   ALB     34.800
## 18695   ALB     29.700
## 18696   ALB      0.000
## 18699   ALB     67.900
## 18700   ALB     15.500
## 18701   ALB     50.800
## 18706   ALB     22.300
## 18707   ALB     31.100
## 18708   ALB     46.800
## 18711   DZA      0.581
## 18713   DZA      6.300
## 18714   DZA     14.300
## 18715   DZA      0.900
## 18716   DZA      4.000
## 18718   DZA     26.600
## 18719   DZA     52.900
## 18720   DZA     79.500
## 18721   DZA      0.395
## 18722   DZA      9.700
## 18731   DZA      3.800
## 18732   DZA      2.400
## 18733   DZA      4.800
## 18735   DZA     11.200
## 18736   DZA     22.800
## 18770   DZA     10.500
## 18772   DZA      2.470
## 18775   DZA      1.170
## 18778   DZA      0.100
## 18779   DZA      4.000
## 18780   DZA     15.000
## 18781   DZA     67.000
## 18782   DZA     68.600
## 18783   DZA     65.400
## 18784   DZA      0.723
## 18786   DZA    150.000
## 18787   DZA     40.300
## 18788   DZA    198.000
## 18789   DZA     47.600
## 18802   DZA   9384.000
## 18803   DZA      0.686
## 18834   DZA     27.600
## 18845   DZA     52.700
## 18846   DZA      0.000
## 18847   DZA      0.500
## 18848   DZA      0.100
## 18849   DZA      2.820
## 18851   DZA     22.500
## 18852   DZA     51.400
## 18853   DZA     35.300
## 18858   DZA     20.600
## 18859   DZA     38.800
## 18860   DZA     33.000
## 18865   AGO      5.200
## 18866   AGO      6.200
## 18867   AGO      0.300
## 18868   AGO      2.500
## 18870   AGO     12.600
## 18871   AGO     38.600
## 18872   AGO     98.600
## 18874   AGO      3.600
## 18907   AGO     40.500
## 18909   AGO      1.150
## 18913   AGO      1.050
## 18916   AGO      0.300
## 18917   AGO     49.000
## 18918   AGO     61.000
## 18919   AGO     41.900
## 18920   AGO     44.100
## 18921   AGO     39.700
## 18922   AGO      0.336
## 18924   AGO    394.000
## 18925   AGO    131.200
## 18926   AGO    468.000
## 18927   AGO    222.100
## 18940   AGO   2005.000
## 18941   AGO      0.453
## 18972   AGO     48.000
## 18983   AGO     57.100
## 18989   AGO     38.300
## 18990   AGO     53.200
## 18991   AGO     59.800
## 18996   AGO     23.700
## 18997   AGO     54.500
## 18998   AGO     72.800
## 19003   ATG     12.300
## 19004   ATG      0.000
## 19005   ATG      0.000
## 19006   ATG      0.000
## 19008   ATG      0.100
## 19009   ATG     35.500
## 19010   ATG     50.300
## 19041   ATG      3.000
## 19042   ATG     13.000
## 19043   ATG     71.600
## 19044   ATG     74.000
## 19045   ATG     68.900
## 19046   ATG      0.793
## 19047   ATG    152.000
## 19048   ATG     23.300
## 19049   ATG    198.000
## 19050   ATG     24.600
## 19061   ATG  15477.000
## 19062   ATG      0.762
## 19074   ATG    151.100
## 19075   ATG     11.400
## 19076   ATG      1.600
## 19077   ATG    -11.400
## 19078   ATG      0.630
## 19081   ARG      0.713
## 19083   ARG     15.200
## 19084   ARG     20.000
## 19085   ARG      3.000
## 19086   ARG      3.500
## 19088   ARG     33.200
## 19089   ARG     87.300
## 19090   ARG     50.500
## 19091   ARG      0.632
## 19092   ARG     13.200
## 19101   ARG      8.000
## 19102   ARG      8.000
## 19103   ARG      8.000
## 19105   ARG     37.300
## 19106   ARG     39.300
## 19138   ARG     38.500
## 19140   ARG      1.470
## 19142   ARG      1.170
## 19144   ARG      0.300
## 19145   ARG      7.000
## 19146   ARG      1.000
## 19147   ARG     71.800
## 19148   ARG     75.400
## 19149   ARG     68.300
## 19150   ARG      0.797
## 19152   ARG    103.000
## 19153   ARG     25.100
## 19154   ARG    202.000
## 19155   ARG     28.300
## 19168   ARG  11680.000
## 19169   ARG      0.719
## 19188   ARG      2.600
## 19201   ARG     13.800
## 19202   ARG      1.300
## 19203   ARG      0.100
## 19204   ARG     -1.500
## 19205   ARG      0.010
## 19206   ARG      0.300
## 19207   ARG     66.800
## 19208   ARG     56.400
## 19213   ARG      5.600
## 19214   ARG     14.800
## 19215   ARG     24.900
## 19218   ARM      0.628
## 19220   ARM      9.500
## 19221   ARM      2.200
## 19222   ARM      0.200
## 19223   ARM      0.400
## 19225   ARM      3.500
## 19226   ARM     67.200
## 19227   ARM     47.000
## 19228   ARM      0.637
## 19229   ARM     10.700
## 19238   ARM     10.200
## 19239   ARM     10.000
## 19240   ARM     10.200
## 19242   ARM     85.500
## 19243   ARM     88.800
## 19273   ARM     42.400
## 19275   ARM      1.220
## 19279   ARM      1.050
## 19282   ARM      0.100
## 19285   ARM     67.900
## 19286   ARM     71.000
## 19287   ARM     64.700
## 19288   ARM      0.736
## 19289   ARM    127.000
## 19290   ARM     40.600
## 19291   ARM    242.000
## 19292   ARM     47.400
## 19305   ARM   3327.000
## 19306   ARM      0.529
## 19338   ARM     27.600
## 19351   ARM    100.900
## 19353   ARM      0.100
## 19357   ARM     38.700
## 19358   ARM     34.300
## 19359   ARM     58.000
## 19364   ARM      2.000
## 19365   ARM      4.500
## 19366   ARM     44.500
## 19369   AUS      0.867
## 19371   AUS     16.800
## 19372   AUS     11.500
## 19373   AUS      1.900
## 19374   AUS      1.300
## 19376   AUS     17.300
## 19377   AUS     85.400
## 19378   AUS     32.700
## 19379   AUS      0.874
## 19380   AUS     17.300
## 19381   AUS     17.300
## 19382   AUS     17.400
## 19388   AUS     11.800
## 19389   AUS     11.100
## 19390   AUS     11.400
## 19392   AUS     89.400
## 19393   AUS     90.600
## 19413   AUS     21.600
## 19422   AUS     42.500
## 19424   AUS      0.930
## 19427   AUS      0.940
## 19430   AUS      0.100
## 19431   AUS      3.000
## 19432   AUS     14.000
## 19433   AUS     77.200
## 19434   AUS     80.300
## 19435   AUS     74.200
## 19436   AUS      0.880
## 19437   AUS     65.000
## 19438   AUS      7.200
## 19439   AUS    119.000
## 19440   AUS      8.700
## 19453   AUS  27191.000
## 19454   AUS      0.847
## 19484   AUS     32.300
## 19485   AUS      1.300
## 19486   AUS     -4.000
## 19487   AUS      0.760
## 19488   AUS      5.500
## 19489   AUS     70.700
## 19490   AUS     57.200
## 19495   AUS      9.600
## 19496   AUS     17.500
## 19497   AUS     12.600
## 19500   AUT      0.800
## 19502   AUT     22.200
## 19503   AUT      5.300
## 19504   AUT      1.200
## 19505   AUT      0.400
## 19507   AUT      7.800
## 19508   AUT     62.700
## 19509   AUT     24.900
## 19510   AUT      0.683
## 19511   AUT     14.100
## 19512   AUT     13.700
## 19513   AUT     14.600
## 19519   AUT      8.700
## 19520   AUT      7.800
## 19521   AUT      9.800
## 19523   AUT     50.000
## 19524   AUT     74.100
## 19555   AUT     40.500
## 19557   AUT      1.090
## 19561   AUT      0.930
## 19563   AUT      4.000
## 19564   AUT     40.000
## 19565   AUT     75.800
## 19566   AUT     79.000
## 19567   AUT     72.300
## 19568   AUT      0.859
## 19569   AUT     73.000
## 19570   AUT      7.700
## 19571   AUT    158.000
## 19572   AUT      9.100
## 19585   AUT  32192.000
## 19586   AUT      0.872
## 19616   AUT     70.000
## 19617   AUT      0.200
## 19619   AUT      0.440
## 19620   AUT      7.400
## 19621   AUT     55.500
## 19622   AUT     54.300
## 19627   AUT      3.400
## 19628   AUT      3.700
## 19629   AUT     10.500
## 19634   AZE      7.700
## 19635   AZE      4.500
## 19636   AZE      0.300
## 19637   AZE      1.000
## 19639   AZE      7.400
## 19640   AZE     53.400
## 19641   AZE     54.200
## 19643   AZE     10.600
## 19644   AZE     10.300
## 19645   AZE     10.800
## 19687   AZE     42.000
## 19689   AZE      1.540
## 19693   AZE      1.140
## 19696   AZE      0.100
## 19699   AZE     64.700
## 19700   AZE     68.900
## 19701   AZE     60.500
## 19702   AZE      0.688
## 19704   AZE    115.000
## 19705   AZE     75.600
## 19706   AZE    252.000
## 19707   AZE     94.900
## 19720   AZE   8512.000
## 19721   AZE      0.671
## 19752   AZE      3.000
## 19765   AZE     86.900
## 19770   AZE     37.000
## 19771   AZE     52.100
## 19772   AZE     55.400
## 19777   AZE      8.900
## 19778   AZE     19.600
## 19779   AZE     71.300
## 19783   BHS      6.900
## 19784   BHS      0.200
## 19785   BHS      0.000
## 19786   BHS      0.000
## 19788   BHS      0.300
## 19789   BHS     80.100
## 19790   BHS     50.200
## 19792   BHS     12.000
## 19793   BHS     12.400
## 19794   BHS     11.700
## 19830   BHS     47.200
## 19832   BHS      0.960
## 19833   BHS      1.070
## 19835   BHS      1.300
## 19836   BHS      3.000
## 19837   BHS      7.000
## 19838   BHS     70.900
## 19839   BHS     74.300
## 19840   BHS     67.400
## 19841   BHS      0.783
## 19842   BHS    148.000
## 19843   BHS     18.800
## 19844   BHS    258.000
## 19845   BHS     22.500
## 19857   BHS  27451.000
## 19858   BHS      0.848
## 19872   BHS      0.200
## 19880   BHS    106.100
## 19881   BHS      0.000
## 19882   BHS      0.100
## 19884   BHS      5.300
## 19885   BHS     79.400
## 19886   BHS     64.000
## 19891   BHS     12.200
## 19892   BHS     22.600
## 19893   BHS     12.100
## 19895   BGD      0.394
## 19897   BGD      5.800
## 19898   BGD     59.700
## 19899   BGD      3.500
## 19900   BGD     16.600
## 19902   BGD    108.700
## 19903   BGD     20.300
## 19904   BGD     76.500
## 19905   BGD      0.260
## 19906   BGD      5.800
## 19907   BGD      4.900
## 19908   BGD      6.700
## 19915   BGD      2.900
## 19916   BGD      2.100
## 19917   BGD      3.800
## 19919   BGD     13.200
## 19920   BGD     27.700
## 19950   BGD      6.000
## 19952   BGD      1.450
## 19956   BGD      1.000
## 19959   BGD      0.100
## 19960   BGD     12.000
## 19961   BGD     32.000
## 19962   BGD     59.000
## 19963   BGD     59.400
## 19964   BGD     58.700
## 19965   BGD      0.601
## 19967   BGD    194.000
## 19968   BGD     95.900
## 19969   BGD    195.000
## 19970   BGD    137.800
## 19983   BGD   1334.000
## 19984   BGD      0.391
## 20016   BGD     98.400
## 20028   BGD     18.900
## 20029   BGD      0.000
## 20030   BGD      5.900
## 20031   BGD      0.000
## 20032   BGD      2.490
## 20033   BGD     69.500
## 20034   BGD     16.900
## 20035   BGD     55.200
## 20040   BGD      2.200
## 20041   BGD      4.500
## 20042   BGD     68.100
## 20045   BRB      0.718
## 20047   BRB     15.400
## 20048   BRB      0.200
## 20049   BRB      0.000
## 20050   BRB      0.000
## 20052   BRB      0.300
## 20053   BRB     37.000
## 20054   BRB     35.700
## 20055   BRB      0.632
## 20056   BRB     12.900
## 20057   BRB     12.900
## 20058   BRB     13.000
## 20064   BRB      8.200
## 20065   BRB      8.100
## 20066   BRB      8.300
## 20068   BRB     67.000
## 20069   BRB     69.100
## 20098   BRB     45.900
## 20100   BRB      1.310
## 20102   BRB      1.150
## 20105   BRB      0.200
## 20106   BRB      6.000
## 20107   BRB      8.000
## 20108   BRB     71.600
## 20109   BRB     73.700
## 20110   BRB     69.200
## 20111   BRB      0.794
## 20112   BRB    119.000
## 20113   BRB     15.200
## 20114   BRB    180.000
## 20115   BRB     17.000
## 20128   BRB  13074.000
## 20129   BRB      0.736
## 20155   BRB      0.800
## 20162   BRB     82.500
## 20163   BRB      0.400
## 20164   BRB      0.100
## 20165   BRB     -0.200
## 20166   BRB      2.250
## 20168   BRB      5.500
## 20169   BRB     72.200
## 20170   BRB     52.100
## 20175   BRB     23.000
## 20176   BRB     41.600
## 20177   BRB     11.800
## 20181   BLR     16.700
## 20182   BLR      6.800
## 20183   BLR      1.100
## 20184   BLR      0.800
## 20186   BLR     10.200
## 20187   BLR     66.400
## 20188   BLR     34.500
## 20190   BLR     12.700
## 20235   BLR     50.900
## 20237   BLR      1.430
## 20240   BLR      1.170
## 20242   BLR      0.100
## 20245   BLR     70.200
## 20246   BLR     75.300
## 20247   BLR     64.900
## 20248   BLR      0.773
## 20249   BLR    110.000
## 20250   BLR     12.100
## 20251   BLR    294.000
## 20252   BLR     15.200
## 20265   BLR   8323.000
## 20266   BLR      0.668
## 20285   BLR      7.500
## 20298   BLR     66.700
## 20304   BLR     22.200
## 20305   BLR     38.500
## 20306   BLR     59.000
## 20311   BLR      0.800
## 20312   BLR      1.400
## 20313   BLR      2.400
## 20316   BLZ      0.651
## 20318   BLZ      8.000
## 20319   BLZ      0.100
## 20320   BLZ      0.000
## 20321   BLZ      0.000
## 20323   BLZ      0.200
## 20324   BLZ     47.300
## 20325   BLZ     82.400
## 20326   BLZ      0.582
## 20327   BLZ     10.900
## 20335   BLZ      8.400
## 20336   BLZ      8.400
## 20337   BLZ      8.500
## 20339   BLZ     23.900
## 20340   BLZ     24.800
## 20370   BLZ     38.600
## 20372   BLZ      0.490
## 20375   BLZ      0.850
## 20378   BLZ      0.100
## 20379   BLZ      6.000
## 20380   BLZ     24.000
## 20381   BLZ     71.000
## 20382   BLZ     73.400
## 20383   BLZ     68.800
## 20384   BLZ      0.785
## 20386   BLZ    125.000
## 20387   BLZ     30.000
## 20388   BLZ    194.000
## 20389   BLZ     36.600
## 20402   BLZ   5406.000
## 20403   BLZ      0.603
## 20428   BLZ     24.200
## 20439   BLZ    119.100
## 20440   BLZ      3.100
## 20441   BLZ      5.000
## 20442   BLZ     -3.100
## 20443   BLZ      3.510
## 20445   BLZ     28.100
## 20446   BLZ     50.400
## 20447   BLZ     56.300
## 20452   BLZ      3.800
## 20453   BLZ      6.400
## 20454   BLZ     23.500
## 20457   BEN      0.354
## 20459   BEN      7.300
## 20460   BEN      2.600
## 20461   BEN      0.200
## 20462   BEN      1.000
## 20464   BEN      5.100
## 20465   BEN     35.200
## 20466   BEN     90.700
## 20467   BEN      0.208
## 20468   BEN      5.400
## 20477   BEN      1.700
## 20478   BEN      0.900
## 20479   BEN      2.700
## 20481   BEN      4.900
## 20482   BEN     15.600
## 20511   BEN     49.500
## 20513   BEN      0.270
## 20516   BEN      0.710
## 20519   BEN      0.300
## 20520   BEN     17.000
## 20521   BEN     40.000
## 20522   BEN     54.400
## 20523   BEN     56.200
## 20524   BEN     52.400
## 20525   BEN      0.529
## 20527   BEN    240.000
## 20528   BEN    104.900
## 20529   BEN    303.000
## 20530   BEN    173.700
## 20543   BEN   1449.000
## 20544   BEN      0.404
## 20575   BEN     80.500
## 20587   BEN     51.300
## 20588   BEN      6.100
## 20589   BEN     13.600
## 20590   BEN     -6.300
## 20591   BEN      5.940
## 20593   BEN     54.000
## 20594   BEN     38.800
## 20595   BEN     71.400
## 20600   BEN      1.500
## 20601   BEN      1.700
## 20602   BEN     91.200
## 20607   BTN      5.400
## 20608   BTN      0.300
## 20609   BTN      0.000
## 20610   BTN      0.100
## 20612   BTN      0.500
## 20613   BTN     17.200
## 20614   BTN     83.200
## 20616   BTN      5.600
## 20659   BTN     17.900
## 20661   BTN      1.420
## 20666   BTN      1.030
## 20669   BTN      3.000
## 20670   BTN     11.000
## 20671   BTN     53.600
## 20672   BTN     53.900
## 20673   BTN     53.300
## 20674   BTN      0.517
## 20676   BTN    369.000
## 20677   BTN     85.900
## 20678   BTN    364.000
## 20679   BTN    121.900
## 20692   BTN   2046.000
## 20693   BTN      0.456
## 20724   BTN     79.400
## 20734   BTN     72.300
## 20735   BTN      0.200
## 20736   BTN     26.900
## 20740   BTN     85.200
## 20741   BTN     13.100
## 20742   BTN     63.200
## 20747   BTN      1.400
## 20748   BTN      3.900
## 20749   BTN     84.800
## 20751   BOL      0.543
## 20753   BOL      8.200
## 20754   BOL      3.800
## 20755   BOL      0.300
## 20756   BOL      1.100
## 20758   BOL      7.000
## 20759   BOL     56.600
## 20760   BOL     75.400
## 20761   BOL      0.537
## 20762   BOL     11.500
## 20770   BOL      6.500
## 20771   BOL      5.600
## 20772   BOL      7.500
## 20774   BOL     37.400
## 20775   BOL     53.100
## 20803   BOL     40.300
## 20805   BOL      1.490
## 20809   BOL      1.170
## 20812   BOL      0.100
## 20813   BOL     32.000
## 20814   BOL     46.000
## 20815   BOL     55.600
## 20816   BOL     57.400
## 20817   BOL     54.000
## 20818   BOL      0.548
## 20820   BOL    252.000
## 20821   BOL     82.500
## 20822   BOL    312.000
## 20823   BOL    119.100
## 20836   BOL   3675.000
## 20837   BOL      0.544
## 20868   BOL     23.700
## 20880   BOL     48.400
## 20881   BOL      1.000
## 20882   BOL      9.900
## 20883   BOL     -0.900
## 20884   BOL      0.060
## 20885   BOL     41.200
## 20886   BOL     38.400
## 20887   BOL     64.600
## 20892   BOL      5.900
## 20893   BOL     10.900
## 20894   BOL     38.000
## 20897   BWA      0.588
## 20899   BWA      5.000
## 20900   BWA      0.800
## 20901   BWA      0.000
## 20902   BWA      0.200
## 20904   BWA      1.400
## 20905   BWA     45.300
## 20906   BWA     81.800
## 20907   BWA      0.478
## 20908   BWA     10.300
## 20909   BWA     10.700
## 20910   BWA      9.900
## 20916   BWA      5.800
## 20917   BWA      5.800
## 20918   BWA      6.100
## 20920   BWA     43.300
## 20921   BWA     47.600
## 20949   BWA     40.800
## 20951   BWA      1.500
## 20954   BWA      1.280
## 20957   BWA      9.500
## 20958   BWA      1.000
## 20959   BWA     12.000
## 20960   BWA     61.100
## 20961   BWA     63.700
## 20962   BWA     58.500
## 20963   BWA      0.633
## 20965   BWA    256.000
## 20966   BWA     42.700
## 20967   BWA    356.000
## 20968   BWA     56.500
## 20981   BWA   8603.000
## 20982   BWA      0.673
## 21001   BWA     41.400
## 21012   BWA     99.600
## 21013   BWA     -0.200
## 21014   BWA      3.300
## 21015   BWA      0.500
## 21016   BWA      2.120
## 21017   BWA     19.100
## 21018   BWA     53.500
## 21019   BWA     53.700
## 21024   BWA     13.800
## 21025   BWA     25.800
## 21026   BWA     32.200
## 21029   BRA      0.615
## 21031   BRA      6.800
## 21032   BRA     92.500
## 21033   BRA      6.300
## 21034   BRA     17.700
## 21036   BRA    152.000
## 21037   BRA     74.700
## 21038   BRA     57.500
## 21039   BRA      0.475
## 21040   BRA     12.400
## 21049   BRA      3.900
## 21050   BRA      4.300
## 21051   BRA      4.000
## 21053   BRA     21.800
## 21054   BRA     20.900
## 21087   BRA     35.900
## 21089   BRA      1.660
## 21092   BRA      1.220
## 21095   BRA      0.200
## 21096   BRA      8.000
## 21097   BRA     15.000
## 21098   BRA     65.700
## 21099   BRA     69.600
## 21100   BRA     62.000
## 21101   BRA      0.703
## 21103   BRA    156.000
## 21104   BRA     51.300
## 21105   BRA    288.000
## 21106   BRA     61.400
## 21119   BRA  10058.000
## 21120   BRA      0.697
## 21152   BRA     23.200
## 21165   BRA     16.600
## 21166   BRA      0.200
## 21167   BRA      0.000
## 21168   BRA     -0.600
## 21169   BRA      0.180
## 21171   BRA     27.600
## 21172   BRA     52.000
## 21173   BRA     56.200
## 21178   BRA     10.100
## 21179   BRA     20.200
## 21180   BRA     34.300
## 21183   BRN      0.787
## 21185   BRN      4.200
## 21186   BRN      0.200
## 21187   BRN      0.000
## 21188   BRN      0.000
## 21190   BRN      0.300
## 21191   BRN     66.600
## 21192   BRN     54.600
## 21193   BRN      0.596
## 21194   BRN     12.300
## 21195   BRN     12.400
## 21196   BRN     12.200
## 21203   BRN      7.600
## 21204   BRN      6.900
## 21205   BRN      8.200
## 21207   BRN     52.600
## 21208   BRN     58.800
## 21236   BRN     32.100
## 21238   BRN      1.460
## 21239   BRN      1.080
## 21242   BRN      2.000
## 21243   BRN      4.000
## 21244   BRN     73.200
## 21245   BRN     74.900
## 21246   BRN     71.800
## 21247   BRN      0.818
## 21248   BRN    109.000
## 21249   BRN     10.300
## 21250   BRN    147.000
## 21251   BRN     13.300
## 21263   BRN  85334.000
## 21264   BRN      1.000
## 21273   BRN      0.200
## 21282   BRN    106.800
## 21284   BRN      0.100
## 21286   BRN      2.000
## 21287   BRN     73.800
## 21288   BRN     62.100
## 21293   BRN      4.700
## 21294   BRN     14.100
## 21295   BRN      4.200
## 21298   BGR      0.691
## 21300   BGR     20.400
## 21301   BGR      5.800
## 21302   BGR      1.200
## 21303   BGR      0.500
## 21305   BGR      8.800
## 21306   BGR     66.700
## 21307   BGR     30.200
## 21308   BGR      0.637
## 21309   BGR     12.200
## 21310   BGR     12.200
## 21311   BGR     12.200
## 21318   BGR      8.900
## 21319   BGR      8.300
## 21320   BGR      8.600
## 21322   BGR     52.300
## 21323   BGR     78.200
## 21353   BGR     49.800
## 21355   BGR      0.980
## 21359   BGR      0.970
## 21361   BGR      0.100
## 21362   BGR      1.000
## 21363   BGR      2.000
## 21364   BGR     71.200
## 21365   BGR     74.800
## 21366   BGR     67.900
## 21367   BGR      0.788
## 21368   BGR     97.000
## 21369   BGR     15.000
## 21370   BGR    213.000
## 21371   BGR     18.800
## 21384   BGR   7743.000
## 21385   BGR      0.657
## 21415   BGR     82.700
## 21416   BGR      0.500
## 21419   BGR     16.100
## 21420   BGR     45.800
## 21421   BGR     45.600
## 21426   BGR     21.300
## 21427   BGR     41.900
## 21428   BGR      9.700
## 21433   BFA      6.600
## 21434   BFA      4.500
## 21435   BFA      0.300
## 21436   BFA      1.700
## 21438   BFA      9.100
## 21439   BFA     14.100
## 21440   BFA     95.800
## 21442   BFA      2.600
## 21443   BFA      2.000
## 21444   BFA      3.200
## 21484   BFA     40.900
## 21486   BFA      1.170
## 21490   BFA      1.090
## 21493   BFA      3.400
## 21494   BFA     14.000
## 21495   BFA     31.000
## 21496   BFA     49.400
## 21497   BFA     50.500
## 21498   BFA     48.200
## 21499   BFA      0.452
## 21501   BFA    299.000
## 21502   BFA     98.400
## 21503   BFA    358.000
## 21504   BFA    198.100
## 21517   BFA    897.000
## 21518   BFA      0.331
## 21549   BFA     94.400
## 21562   BFA     33.800
## 21563   BFA      0.000
## 21564   BFA     13.400
## 21566   BFA      3.600
## 21568   BFA     88.900
## 21569   BFA      7.900
## 21570   BFA     81.000
## 21575   BFA      2.600
## 21576   BFA      3.800
## 21577   BFA     90.700
## 21579   BDI      0.300
## 21581   BDI      6.300
## 21582   BDI      2.700
## 21583   BDI      0.200
## 21584   BDI      1.100
## 21586   BDI      5.500
## 21587   BDI      6.500
## 21588   BDI     98.800
## 21589   BDI      0.176
## 21590   BDI      4.600
## 21591   BDI      4.100
## 21592   BDI      5.100
## 21599   BDI      1.500
## 21600   BDI      0.900
## 21601   BDI      2.200
## 21603   BDI      1.900
## 21604   BDI      4.800
## 21632   BDI     22.800
## 21634   BDI      0.550
## 21637   BDI      0.710
## 21640   BDI      0.700
## 21641   BDI      6.000
## 21642   BDI     26.000
## 21643   BDI     47.800
## 21644   BDI     49.500
## 21645   BDI     46.100
## 21646   BDI      0.428
## 21648   BDI    344.000
## 21649   BDI    103.500
## 21650   BDI    402.000
## 21651   BDI    171.000
## 21664   BDI   1073.000
## 21665   BDI      0.358
## 21697   BDI     92.000
## 21708   BDI     38.400
## 21709   BDI      0.100
## 21710   BDI     22.200
## 21711   BDI     -0.100
## 21714   BDI     91.700
## 21715   BDI      5.900
## 21716   BDI     88.700
## 21721   BDI      1.600
## 21722   BDI      2.900
## 21723   BDI     93.800
## 21726   CMR      0.436
## 21728   CMR      7.100
## 21729   CMR      6.000
## 21730   CMR      0.400
## 21731   CMR      2.200
## 21733   CMR     12.100
## 21734   CMR     40.200
## 21735   CMR     92.700
## 21736   CMR      0.342
## 21737   CMR      8.000
## 21738   CMR      7.300
## 21746   CMR      3.600
## 21747   CMR      2.600
## 21748   CMR      4.600
## 21750   CMR      9.400
## 21751   CMR     20.500
## 21779   CMR     40.400
## 21781   CMR      1.440
## 21786   CMR      1.180
## 21789   CMR      1.100
## 21790   CMR     33.000
## 21791   CMR     52.000
## 21792   CMR     51.800
## 21793   CMR     53.200
## 21794   CMR     50.500
## 21795   CMR      0.490
## 21797   CMR    335.000
## 21798   CMR     90.600
## 21799   CMR    385.000
## 21800   CMR    146.800
## 21813   CMR   2658.000
## 21814   CMR      0.496
## 21845   CMR     64.800
## 21857   CMR     34.600
## 21858   CMR     -0.100
## 21859   CMR      4.400
## 21860   CMR      0.300
## 21861   CMR      0.060
## 21863   CMR     68.900
## 21864   CMR     23.300
## 21865   CMR     71.500
## 21870   CMR      8.000
## 21871   CMR     14.200
## 21872   CMR     80.500
## 21875   CAF      0.312
## 21877   CAF      7.600
## 21878   CAF      1.600
## 21879   CAF      0.100
## 21880   CAF      0.500
## 21882   CAF      3.000
## 21883   CAF     36.900
## 21884   CAF     81.900
## 21885   CAF      0.207
## 21886   CAF      4.900
## 21887   CAF      3.600
## 21888   CAF      6.200
## 21895   CAF      2.100
## 21896   CAF      1.100
## 21897   CAF      3.200
## 21899   CAF      4.400
## 21900   CAF     15.800
## 21927   CAF     29.600
## 21929   CAF      1.180
## 21933   CAF      1.050
## 21936   CAF      4.200
## 21937   CAF     15.000
## 21938   CAF     43.000
## 21939   CAF     48.400
## 21940   CAF     50.500
## 21941   CAF     46.300
## 21942   CAF      0.436
## 21944   CAF    380.000
## 21945   CAF    114.100
## 21946   CAF    436.000
## 21947   CAF    173.600
## 21960   CAF    926.000
## 21961   CAF      0.336
## 21992   CAF     87.700
## 22003   CAF     43.700
## 22004   CAF     -0.400
## 22005   CAF     12.700
## 22006   CAF      0.600
## 22007   CAF      0.010
## 22009   CAF     84.600
## 22010   CAF      6.900
## 22011   CAF     67.800
## 22015   CAF      6.200
## 22016   CAF     11.400
## 22017   CAF     69.800
## 22021   TCD      6.500
## 22022   TCD      3.000
## 22023   TCD      0.200
## 22024   TCD      1.200
## 22026   TCD      6.200
## 22027   TCD     21.000
## 22028   TCD     97.200
## 22030   TCD      3.300
## 22071   TCD     27.800
## 22073   TCD      1.440
## 22077   TCD      1.100
## 22080   TCD      1.000
## 22081   TCD     59.000
## 22082   TCD     72.000
## 22083   TCD     47.100
## 22084   TCD     48.200
## 22085   TCD     45.900
## 22086   TCD      0.416
## 22088   TCD    364.000
## 22089   TCD    110.100
## 22090   TCD    414.000
## 22091   TCD    208.100
## 22104   TCD   1167.000
## 22105   TCD      0.371
## 22136   TCD     87.300
## 22147   TCD     36.300
## 22148   TCD      0.200
## 22149   TCD     14.000
## 22150   TCD      0.300
## 22153   TCD     86.600
## 22154   TCD      7.100
## 22155   TCD     68.300
## 22160   TCD      5.500
## 22161   TCD     10.200
## 22162   TCD     94.800
## 22164   CHL      0.711
## 22166   CHL      9.900
## 22167   CHL      8.600
## 22168   CHL      0.900
## 22169   CHL      1.400
## 22171   CHL     13.500
## 22172   CHL     83.400
## 22173   CHL     46.700
## 22174   CHL      0.638
## 22175   CHL     13.200
## 22176   CHL     13.100
## 22177   CHL     13.400
## 22184   CHL      8.100
## 22185   CHL      8.000
## 22186   CHL      8.200
## 22188   CHL     50.000
## 22189   CHL     52.000
## 22219   CHL     35.100
## 22221   CHL      1.140
## 22223   CHL      1.100
## 22226   CHL      0.100
## 22227   CHL      3.000
## 22228   CHL      1.000
## 22229   CHL     74.000
## 22230   CHL     77.000
## 22231   CHL     71.000
## 22232   CHL      0.831
## 22233   CHL     94.000
## 22234   CHL     14.900
## 22235   CHL    170.000
## 22236   CHL     17.800
## 22249   CHL   8777.000
## 22250   CHL      0.676
## 22268   CHL     12.300
## 22280   CHL     58.100
## 22281   CHL      2.200
## 22282   CHL      0.300
## 22283   CHL     -2.300
## 22286   CHL     19.100
## 22287   CHL     54.600
## 22288   CHL     51.000
## 22293   CHL      5.200
## 22294   CHL     12.300
## 22295   CHL     25.900
## 22298   CHN      0.510
## 22300   CHN      8.700
## 22301   CHN    779.300
## 22302   CHN     68.000
## 22303   CHN    135.900
## 22305   CHN   1189.200
## 22306   CHN     27.300
## 22307   CHN     43.900
## 22308   CHN      0.411
## 22309   CHN      8.800
## 22310   CHN      8.300
## 22311   CHN      9.300
## 22318   CHN      5.000
## 22319   CHN      5.000
## 22320   CHN      6.100
## 22322   CHN     29.900
## 22323   CHN     45.600
## 22352   CHN     44.300
## 22354   CHN      0.870
## 22356   CHN      0.920
## 22359   CHN      3.000
## 22360   CHN      8.000
## 22361   CHN     69.400
## 22362   CHN     71.200
## 22363   CHN     67.800
## 22364   CHN      0.761
## 22366   CHN    109.000
## 22367   CHN     41.800
## 22368   CHN    147.000
## 22369   CHN     53.300
## 22381   CHN   1647.000
## 22382   CHN      0.423
## 22413   CHN     93.100
## 22424   CHN     25.900
## 22425   CHN      1.100
## 22426   CHN      0.500
## 22427   CHN     -1.000
## 22428   CHN      0.100
## 22429   CHN     55.300
## 22430   CHN     17.400
## 22431   CHN     75.200
## 22436   CHN      4.900
## 22437   CHN     10.900
## 22438   CHN     67.200
## 22440   COL      0.595
## 22442   COL      7.000
## 22443   COL     20.900
## 22444   COL      1.500
## 22445   COL      4.300
## 22447   COL     34.900
## 22448   COL     69.900
## 22449   COL     60.200
## 22450   COL      0.438
## 22451   COL      9.100
## 22452   COL      9.300
## 22453   COL      8.600
## 22460   COL      5.600
## 22461   COL      5.400
## 22462   COL      6.100
## 22464   COL     32.200
## 22465   COL     36.300
## 22498   COL     35.000
## 22500   COL      1.680
## 22503   COL      1.160
## 22506   COL      0.100
## 22507   COL      6.000
## 22508   COL     22.000
## 22509   COL     68.400
## 22510   COL     72.600
## 22511   COL     64.500
## 22512   COL      0.745
## 22514   COL    127.000
## 22515   COL     28.100
## 22516   COL    265.000
## 22517   COL     34.000
## 22530   COL   7255.000
## 22531   COL      0.647
## 22563   COL     14.400
## 22576   COL     35.300
## 22577   COL      1.100
## 22578   COL      0.300
## 22579   COL     -1.300
## 22580   COL      2.140
## 22582   COL     26.700
## 22583   COL     52.400
## 22584   COL     48.400
## 22589   COL     10.100
## 22590   COL     19.200
## 22591   COL     48.500
## 22594   COG      0.535
## 22596   COG      7.100
## 22597   COG      1.300
## 22598   COG      0.100
## 22599   COG      0.400
## 22601   COG      2.500
## 22602   COG     54.700
## 22603   COG     82.200
## 22604   COG      0.455
## 22605   COG     11.000
## 22606   COG     10.200
## 22607   COG     11.900
## 22614   COG      4.500
## 22615   COG      3.300
## 22616   COG      5.900
## 22618   COG     23.800
## 22619   COG     40.600
## 22646   COG     46.200
## 22648   COG      1.110
## 22651   COG      0.970
## 22654   COG      3.900
## 22655   COG     10.000
## 22656   COG     36.000
## 22657   COG     55.500
## 22658   COG     57.000
## 22659   COG     54.000
## 22660   COG      0.546
## 22662   COG    319.000
## 22663   COG     60.200
## 22664   COG    362.000
## 22665   COG     92.400
## 22678   COG   5854.000
## 22679   COG      0.615
## 22710   COG     70.500
## 22722   COG     69.700
## 22723   COG      1.200
## 22724   COG      5.800
## 22725   COG      0.000
## 22726   COG      0.160
## 22728   COG     38.700
## 22729   COG     38.900
## 22730   COG     54.300
## 22735   COG     20.500
## 22736   COG     40.200
## 22737   COG     79.900
## 22740   CRI      0.661
## 22742   CRI      7.900
## 22743   CRI      1.900
## 22744   CRI      0.200
## 22745   CRI      0.400
## 22747   CRI      3.200
## 22748   CRI     50.900
## 22749   CRI     58.000
## 22750   CRI      0.515
## 22751   CRI     10.100
## 22760   CRI      7.000
## 22761   CRI      6.800
## 22762   CRI      6.900
## 22764   CRI     34.100
## 22765   CRI     34.600
## 22788   CRI   4046.000
## 22789   CRI  11073.000
## 22799   CRI     35.900
## 22801   CRI      1.570
## 22804   CRI      1.120
## 22807   CRI      0.100
## 22808   CRI      4.000
## 22809   CRI      4.000
## 22810   CRI     75.800
## 22811   CRI     78.500
## 22812   CRI     73.300
## 22813   CRI      0.859
## 22815   CRI     82.000
## 22816   CRI     13.800
## 22817   CRI    132.000
## 22818   CRI     16.200
## 22831   CRI   7586.000
## 22832   CRI      0.654
## 22851   CRI     10.100
## 22863   CRI     71.700
## 22864   CRI      2.500
## 22865   CRI      2.500
## 22866   CRI     -2.200
## 22867   CRI      0.190
## 22869   CRI     25.700
## 22870   CRI     47.700
## 22871   CRI     55.100
## 22876   CRI      5.400
## 22877   CRI     11.300
## 22878   CRI     25.500
## 22881   CUB      0.670
## 22883   CUB     13.100
## 22884   CUB      7.300
## 22885   CUB      1.000
## 22886   CUB      0.900
## 22888   CUB     10.700
## 22889   CUB     73.700
## 22890   CUB     33.600
## 22891   CUB      0.626
## 22892   CUB     12.200
## 22893   CUB     12.600
## 22894   CUB     11.700
## 22901   CUB      8.600
## 22902   CUB      7.600
## 22903   CUB      8.300
## 22905   CUB     53.700
## 22906   CUB     61.400
## 22933   CUB     39.200
## 22935   CUB      1.330
## 22937   CUB      1.010
## 22938   CUB      0.100
## 22939   CUB      1.000
## 22940   CUB      1.000
## 22941   CUB     74.700
## 22942   CUB     76.700
## 22943   CUB     72.800
## 22944   CUB      0.842
## 22945   CUB    106.000
## 22946   CUB      9.700
## 22947   CUB    149.000
## 22948   CUB     12.300
## 22958   CUB   4359.000
## 22959   CUB      0.570
## 22970   CUB      7.300
## 22979   CUB     51.000
## 22980   CUB      0.200
## 22981   CUB     22.300
## 22982   CUB     57.500
## 22983   CUB     45.400
## 22987   CUB      9.700
## 22988   CUB     18.500
## 22989   CUB      7.200
## 22991   CYP      0.735
## 22993   CYP     15.300
## 22994   CYP      0.500
## 22995   CYP      0.100
## 22996   CYP      0.100
## 22998   CYP      0.800
## 22999   CYP     67.200
## 23000   CYP     39.200
## 23001   CYP      0.553
## 23002   CYP      9.300
## 23003   CYP      9.500
## 23004   CYP      9.200
## 23011   CYP      8.800
## 23012   CYP      8.100
## 23013   CYP      9.500
## 23015   CYP     47.000
## 23016   CYP     58.900
## 23047   CYP     38.900
## 23049   CYP      0.900
## 23053   CYP      1.050
## 23055   CYP      3.000
## 23056   CYP     22.000
## 23057   CYP     76.700
## 23058   CYP     78.800
## 23059   CYP     74.700
## 23060   CYP      0.872
## 23061   CYP     56.000
## 23062   CYP      9.600
## 23063   CYP    104.000
## 23064   CYP     10.800
## 23077   CYP  23263.000
## 23078   CYP      0.823
## 23108   CYP    104.200
## 23109   CYP      1.400
## 23110   CYP      0.700
## 23111   CYP     -3.300
## 23112   CYP      1.140
## 23113   CYP      6.600
## 23114   CYP     63.700
## 23115   CYP     58.600
## 23120   CYP      2.800
## 23121   CYP      6.300
## 23122   CYP     24.000
## 23126   DNK      0.804
## 23128   DNK     23.100
## 23129   DNK      3.500
## 23130   DNK      0.800
## 23131   DNK      0.300
## 23133   DNK      5.200
## 23134   DNK     84.900
## 23135   DNK     25.300
## 23136   DNK      0.700
## 23137   DNK     14.200
## 23138   DNK     14.400
## 23139   DNK     14.000
## 23145   DNK      9.200
## 23146   DNK      8.600
## 23147   DNK      9.700
## 23149   DNK     59.800
## 23150   DNK     73.500
## 23180   DNK     47.500
## 23182   DNK      1.200
## 23186   DNK      1.070
## 23188   DNK      2.000
## 23189   DNK     14.000
## 23190   DNK     75.000
## 23191   DNK     77.800
## 23192   DNK     72.300
## 23193   DNK      0.847
## 23194   DNK     95.000
## 23195   DNK      6.900
## 23196   DNK    151.000
## 23197   DNK      8.400
## 23210   DNK  33319.000
## 23211   DNK      0.877
## 23241   DNK     69.100
## 23242   DNK      1.100
## 23243   DNK     -1.100
## 23245   DNK      5.700
## 23246   DNK     67.300
## 23247   DNK     61.100
## 23252   DNK      9.100
## 23253   DNK     11.500
## 23254   DNK      6.500
## 23259   DJI      5.000
## 23260   DJI      0.300
## 23261   DJI      0.000
## 23262   DJI      0.100
## 23264   DJI      0.600
## 23265   DJI     76.100
## 23266   DJI     86.200
## 23268   DJI      2.700
## 23269   DJI      2.300
## 23270   DJI      3.200
## 23300   DJI     36.800
## 23302   DJI      1.290
## 23304   DJI      1.040
## 23307   DJI      0.300
## 23308   DJI     23.000
## 23309   DJI     47.000
## 23310   DJI     56.800
## 23311   DJI     58.400
## 23312   DJI     55.300
## 23313   DJI      0.567
## 23315   DJI    263.000
## 23316   DJI     89.900
## 23317   DJI    319.000
## 23318   DJI    115.400
## 23331   DJI   1925.000
## 23332   DJI      0.447
## 23374   DJI      0.500
## 23376   DJI      2.840
## 23377   DJI     31.000
## 23378   DJI     44.800
## 23379   DJI     59.000
## 23384   DJI      6.900
## 23385   DJI     11.300
## 23386   DJI     45.200
## 23389   DMA      0.100
## 23390   DMA     64.500
## 23392   DMA     11.500
## 23419   DMA      2.000
## 23420   DMA      2.000
## 23421   DMA     75.900
## 23422   DMA      0.860
## 23424   DMA     14.100
## 23426   DMA     17.100
## 23435   DMA   6453.000
## 23436   DMA      0.629
## 23445   DMA    121.200
## 23446   DMA      8.400
## 23447   DMA     10.200
## 23448   DMA     -8.400
## 23449   DMA      2.750
## 23452   DOM      0.603
## 23454   DOM      7.000
## 23455   DOM      4.200
## 23456   DOM      0.300
## 23457   DOM      1.000
## 23459   DOM      7.300
## 23460   DOM     55.500
## 23461   DOM     66.500
## 23462   DOM      0.493
## 23463   DOM     11.600
## 23472   DOM      5.100
## 23473   DOM      5.400
## 23474   DOM      5.500
## 23476   DOM     27.000
## 23477   DOM     25.400
## 23511   DOM     41.000
## 23513   DOM      2.040
## 23517   DOM      1.280
## 23520   DOM      0.900
## 23521   DOM     12.000
## 23522   DOM     28.000
## 23523   DOM     68.300
## 23524   DOM     71.100
## 23525   DOM     65.900
## 23526   DOM      0.744
## 23528   DOM    161.000
## 23529   DOM     44.700
## 23530   DOM    234.000
## 23531   DOM     57.600
## 23544   DOM   5212.000
## 23545   DOM      0.597
## 23576   DOM     14.000
## 23588   DOM     83.100
## 23589   DOM      1.500
## 23590   DOM      0.700
## 23591   DOM     -1.500
## 23592   DOM      3.380
## 23594   DOM     24.300
## 23595   DOM     48.600
## 23596   DOM     59.000
## 23601   DOM      7.600
## 23602   DOM     14.100
## 23603   DOM     38.200
## 23606   ECU      0.646
## 23608   ECU      7.400
## 23609   ECU      6.000
## 23610   ECU      0.400
## 23611   ECU      1.400
## 23613   ECU     10.500
## 23614   ECU     55.700
## 23615   ECU     65.600
## 23616   ECU      0.549
## 23617   ECU     11.700
## 23626   ECU      6.700
## 23627   ECU      6.200
## 23628   ECU      6.800
## 23630   ECU     34.000
## 23631   ECU     38.000
## 23662   ECU     39.600
## 23664   ECU      1.800
## 23668   ECU      1.240
## 23671   ECU      0.200
## 23672   ECU     19.000
## 23673   ECU     46.000
## 23674   ECU     69.500
## 23675   ECU     72.100
## 23676   ECU     67.000
## 23677   ECU      0.761
## 23679   ECU    127.000
## 23680   ECU     42.200
## 23681   ECU    204.000
## 23682   ECU     54.000
## 23695   ECU   7118.000
## 23696   ECU      0.644
## 23728   ECU     31.300
## 23741   ECU     45.200
## 23742   ECU      0.900
## 23743   ECU      1.500
## 23745   ECU      0.330
## 23746   ECU     35.400
## 23747   ECU     45.200
## 23748   ECU     60.200
## 23753   ECU      5.800
## 23754   ECU     12.000
## 23755   ECU     36.500
## 23758   EGY      0.550
## 23760   EGY      8.300
## 23761   EGY     32.000
## 23762   EGY      2.700
## 23763   EGY      9.100
## 23765   EGY     58.800
## 23766   EGY     43.300
## 23767   EGY     75.300
## 23768   EGY      0.392
## 23769   EGY      9.800
## 23770   EGY      8.700
## 23771   EGY     10.800
## 23778   EGY      3.600
## 23779   EGY      2.300
## 23780   EGY      5.000
## 23782   EGY     16.600
## 23783   EGY     34.800
## 23813   EGY     17.800
## 23815   EGY      3.600
## 23819   EGY      1.410
## 23822   EGY      0.100
## 23823   EGY      9.000
## 23824   EGY     11.000
## 23825   EGY     65.000
## 23826   EGY     67.400
## 23827   EGY     62.600
## 23828   EGY      0.692
## 23829   EGY    143.000
## 23830   EGY     60.300
## 23831   EGY    229.000
## 23832   EGY     81.700
## 23845   EGY   5776.000
## 23846   EGY      0.613
## 23878   EGY     59.400
## 23891   EGY     63.600
## 23892   EGY      0.700
## 23893   EGY     14.800
## 23894   EGY     -0.600
## 23895   EGY     10.970
## 23897   EGY     31.300
## 23898   EGY     43.800
## 23899   EGY     42.200
## 23904   EGY      9.600
## 23905   EGY     26.300
## 23906   EGY     28.800
## 23909   SLV      0.534
## 23911   SLV      7.900
## 23912   SLV      3.000
## 23913   SLV      0.200
## 23914   SLV      0.700
## 23916   SLV      5.300
## 23917   SLV     49.800
## 23918   SLV     70.200
## 23919   SLV      0.384
## 23920   SLV      9.300
## 23929   SLV      3.800
## 23930   SLV      3.700
## 23931   SLV      4.200
## 23933   SLV     16.100
## 23934   SLV     18.800
## 23965   SLV     47.400
## 23967   SLV      0.790
## 23971   SLV      1.020
## 23974   SLV      0.300
## 23975   SLV     18.000
## 23976   SLV     46.000
## 23977   SLV     64.800
## 23978   SLV     69.700
## 23979   SLV     60.200
## 23980   SLV      0.690
## 23982   SLV    154.000
## 23983   SLV     43.900
## 23984   SLV    330.000
## 23985   SLV     56.400
## 23998   SLV   4472.000
## 23999   SLV      0.574
## 24031   SLV     29.400
## 24044   SLV     47.800
## 24045   SLV      0.500
## 24046   SLV      5.700
## 24048   SLV      9.050
## 24050   SLV     38.100
## 24051   SLV     40.700
## 24052   SLV     56.300
## 24057   SLV      7.500
## 24058   SLV     14.400
## 24059   SLV     34.000
## 24065   ETH      6.200
## 24066   ETH     25.100
## 24067   ETH      1.600
## 24068   ETH      9.400
## 24070   ETH     49.800
## 24071   ETH     12.900
## 24072   ETH     92.200
## 24074   ETH      2.800
## 24075   ETH      2.300
## 24076   ETH      3.300
## 24119   ETH     50.500
## 24121   ETH      2.670
## 24125   ETH      1.570
## 24128   ETH      1.900
## 24129   ETH     55.000
## 24130   ETH     83.000
## 24131   ETH     47.500
## 24132   ETH     49.100
## 24133   ETH     46.000
## 24134   ETH      0.423
## 24136   ETH    354.000
## 24137   ETH    118.300
## 24138   ETH    413.000
## 24139   ETH    198.600
## 24152   ETH    581.000
## 24153   ETH      0.266
## 24183   ETH     91.700
## 24198   ETH      8.200
## 24199   ETH      0.000
## 24200   ETH      0.070
## 24202   ETH     90.200
## 24203   ETH      7.700
## 24204   ETH     75.600
## 24209   ETH      3.100
## 24210   ETH      4.400
## 24211   ETH     91.400
## 24214   FJI      0.651
## 24216   FJI      5.000
## 24217   FJI      0.400
## 24218   FJI      0.000
## 24219   FJI      0.100
## 24221   FJI      0.700
## 24222   FJI     42.400
## 24223   FJI     64.700
## 24224   FJI      0.635
## 24225   FJI     12.500
## 24233   FJI      8.700
## 24234   FJI      6.600
## 24235   FJI      7.100
## 24237   FJI     33.100
## 24238   FJI     36.500
## 24265   FJI     31.400
## 24267   FJI      1.730
## 24270   FJI      1.240
## 24272   FJI      0.100
## 24273   FJI      1.000
## 24274   FJI      7.000
## 24275   FJI     65.700
## 24276   FJI     67.900
## 24277   FJI     63.800
## 24278   FJI      0.704
## 24279   FJI    191.000
## 24280   FJI     23.000
## 24281   FJI    265.000
## 24282   FJI     27.400
## 24294   FJI   5920.000
## 24295   FJI      0.616
## 24313   FJI     30.000
## 24324   FJI    117.800
## 24325   FJI      0.400
## 24326   FJI      3.300
## 24327   FJI     -0.900
## 24328   FJI      1.390
## 24329   FJI     53.200
## 24330   FJI     35.100
## 24331   FJI     56.700
## 24336   FJI      5.900
## 24337   FJI     14.000
## 24338   FJI     41.000
## 24341   FIN      0.787
## 24343   FIN     20.300
## 24344   FIN      3.400
## 24345   FIN      0.700
## 24346   FIN      0.300
## 24348   FIN      5.000
## 24349   FIN     79.800
## 24350   FIN     28.700
## 24351   FIN      0.680
## 24352   FIN     15.200
## 24353   FIN     15.900
## 24354   FIN     14.500
## 24360   FIN      7.700
## 24361   FIN      7.400
## 24362   FIN      8.300
## 24364   FIN     70.000
## 24365   FIN     83.100
## 24396   FIN     49.100
## 24398   FIN      0.640
## 24402   FIN      0.910
## 24404   FIN      2.000
## 24405   FIN      3.000
## 24406   FIN     75.500
## 24407   FIN     79.300
## 24408   FIN     71.500
## 24409   FIN      0.853
## 24410   FIN     68.000
## 24411   FIN      5.300
## 24412   FIN    175.000
## 24413   FIN      6.400
## 24426   FIN  26110.000
## 24427   FIN      0.841
## 24457   FIN     43.500
## 24458   FIN     -0.200
## 24459   FIN     -6.400
## 24460   FIN      0.080
## 24461   FIN      8.900
## 24462   FIN     62.300
## 24463   FIN     59.600
## 24468   FIN      6.500
## 24469   FIN     15.000
## 24470   FIN     14.900
## 24473   FRA      0.788
## 24475   FRA     21.700
## 24476   FRA     37.800
## 24477   FRA      8.200
## 24478   FRA      3.700
## 24480   FRA     57.200
## 24481   FRA     74.200
## 24482   FRA     29.900
## 24483   FRA      0.650
## 24484   FRA     14.400
## 24485   FRA     14.900
## 24486   FRA     14.200
## 24492   FRA      7.500
## 24493   FRA      7.300
## 24494   FRA      8.000
## 24496   FRA     47.000
## 24497   FRA     55.300
## 24527   FRA     42.600
## 24529   FRA      1.590
## 24534   FRA      1.150
## 24536   FRA      0.300
## 24537   FRA      3.000
## 24538   FRA     26.000
## 24539   FRA     76.800
## 24540   FRA     81.000
## 24541   FRA     72.800
## 24542   FRA      0.874
## 24543   FRA     68.000
## 24544   FRA      7.100
## 24545   FRA    166.000
## 24546   FRA      8.600
## 24559   FRA  29935.000
## 24560   FRA      0.861
## 24590   FRA     43.000
## 24591   FRA      1.200
## 24592   FRA     -0.400
## 24593   FRA      0.360
## 24594   FRA      5.300
## 24595   FRA     65.500
## 24596   FRA     50.200
## 24601   FRA      9.100
## 24602   FRA     19.400
## 24603   FRA     10.500
## 24608   GEO     14.800
## 24609   GEO      3.500
## 24610   GEO      0.500
## 24611   GEO      0.500
## 24613   GEO      5.400
## 24614   GEO     54.800
## 24615   GEO     37.900
## 24617   GEO     12.400
## 24618   GEO     12.200
## 24619   GEO     12.500
## 24630   GEO     84.300
## 24631   GEO     88.400
## 24664   GEO     49.700
## 24666   GEO      0.780
## 24671   GEO      1.040
## 24674   GEO      0.100
## 24677   GEO     70.200
## 24678   GEO     73.900
## 24679   GEO     66.200
## 24680   GEO      0.773
## 24682   GEO     85.000
## 24683   GEO     40.000
## 24684   GEO    219.000
## 24685   GEO     46.700
## 24698   GEO   6014.000
## 24699   GEO      0.619
## 24718   GEO      7.700
## 24731   GEO     58.900
## 24737   GEO     35.800
## 24738   GEO     52.700
## 24739   GEO     60.100
## 24744   GEO      9.700
## 24745   GEO     23.800
## 24746   GEO     35.800
## 24748   DEU      0.809
## 24750   DEU     21.800
## 24751   DEU     54.800
## 24752   DEU     12.000
## 24753   DEU      4.300
## 24755   DEU     79.600
## 24756   DEU     73.300
## 24757   DEU     23.400
## 24758   DEU      0.705
## 24759   DEU     14.700
## 24760   DEU     14.400
## 24761   DEU     15.000
## 24767   DEU      8.900
## 24768   DEU      8.400
## 24769   DEU      9.700
## 24771   DEU     50.300
## 24772   DEU     56.600
## 24801   DEU     41.500
## 24803   DEU      1.480
## 24807   DEU      1.060
## 24809   DEU      7.000
## 24810   DEU     25.000
## 24811   DEU     75.700
## 24812   DEU     78.800
## 24813   DEU     72.300
## 24814   DEU      0.857
## 24815   DEU     76.000
## 24816   DEU      6.500
## 24817   DEU    158.000
## 24818   DEU      8.000
## 24831   DEU  32995.000
## 24832   DEU      0.876
## 24862   DEU     48.000
## 24863   DEU      0.300
## 24864   DEU     -0.300
## 24865   DEU      0.260
## 24866   DEU      4.100
## 24867   DEU     55.000
## 24868   DEU     56.500
## 24873   DEU      5.300
## 24874   DEU      5.500
## 24875   DEU      5.200
## 24878   GHA      0.460
## 24880   GHA      5.300
## 24881   GHA      8.100
## 24882   GHA      0.400
## 24883   GHA      2.500
## 24885   GHA     15.000
## 24886   GHA     37.200
## 24887   GHA     81.500
## 24888   GHA      0.381
## 24889   GHA      7.600
## 24898   GHA      5.100
## 24899   GHA      3.600
## 24900   GHA      6.700
## 24902   GHA     27.800
## 24903   GHA     56.600
## 24933   GHA     49.700
## 24935   GHA      1.210
## 24940   GHA      1.100
## 24943   GHA      2.000
## 24944   GHA     18.000
## 24945   GHA     37.000
## 24946   GHA     57.200
## 24947   GHA     58.300
## 24948   GHA     56.100
## 24949   GHA      0.572
## 24951   GHA    251.000
## 24952   GHA     77.200
## 24953   GHA    301.000
## 24954   GHA    122.600
## 24967   GHA   1944.000
## 24968   GHA      0.448
## 24999   GHA     71.200
## 25012   GHA     42.500
## 25013   GHA      0.300
## 25014   GHA     13.600
## 25015   GHA     -0.300
## 25016   GHA      0.090
## 25018   GHA     56.000
## 25019   GHA     29.500
## 25020   GHA     71.900
## 25025   GHA      4.700
## 25026   GHA      9.100
## 25027   GHA     81.400
## 25032   GRD     14.900
## 25033   GRD      0.100
## 25034   GRD      0.000
## 25035   GRD      0.000
## 25037   GRD      0.100
## 25038   GRD     33.500
## 25039   GRD     73.700
## 25041   GRD     12.800
## 25073   GRD      5.000
## 25074   GRD      4.000
## 25075   GRD     68.800
## 25076   GRD     71.000
## 25077   GRD     66.400
## 25078   GRD      0.750
## 25079   GRD    146.000
## 25080   GRD     17.400
## 25081   GRD    243.000
## 25082   GRD     21.500
## 25093   GRD   7097.000
## 25094   GRD      0.644
## 25107   GRD     82.000
## 25108   GRD      5.100
## 25109   GRD      5.600
## 25110   GRD     -5.100
## 25111   GRD      2.750
## 25114   GIN      0.280
## 25116   GIN      6.600
## 25117   GIN      3.300
## 25118   GIN      0.200
## 25119   GIN      1.100
## 25121   GIN      6.400
## 25122   GIN     28.300
## 25123   GIN     83.800
## 25124   GIN      0.125
## 25125   GIN      3.000
## 25126   GIN      1.800
## 25127   GIN      4.300
## 25134   GIN      1.200
## 25162   GIN     42.900
## 25164   GIN      0.620
## 25167   GIN      0.820
## 25170   GIN      1.000
## 25171   GIN     39.000
## 25172   GIN     58.000
## 25173   GIN     50.600
## 25174   GIN     51.400
## 25175   GIN     49.700
## 25176   GIN      0.470
## 25178   GIN    261.000
## 25179   GIN    135.300
## 25180   GIN    296.000
## 25181   GIN    229.000
## 25194   GIN   1176.000
## 25195   GIN      0.372
## 25226   GIN     99.000
## 25237   GIN     60.900
## 25238   GIN      1.300
## 25239   GIN     13.300
## 25241   GIN      0.450
## 25243   GIN     71.100
## 25244   GIN     23.500
## 25245   GIN     62.700
## 25250   GIN      4.500
## 25251   GIN      5.500
## 25252   GIN     91.200
## 25256   GNB      6.200
## 25257   GNB      0.500
## 25258   GNB      0.000
## 25259   GNB      0.200
## 25261   GNB      1.000
## 25262   GNB     32.400
## 25263   GNB     91.100
## 25265   GNB      4.000
## 25296   GNB     27.800
## 25298   GNB      1.190
## 25300   GNB      1.060
## 25303   GNB      0.300
## 25304   GNB     16.000
## 25305   GNB     48.000
## 25306   GNB     49.400
## 25307   GNB     51.700
## 25308   GNB     47.200
## 25309   GNB      0.453
## 25311   GNB    281.000
## 25312   GNB    127.500
## 25313   GNB    358.000
## 25314   GNB    215.300
## 25326   GNB   1311.000
## 25327   GNB      0.389
## 25357   GNB     72.800
## 25368   GNB     47.800
## 25369   GNB      0.800
## 25370   GNB     47.000
## 25371   GNB      0.000
## 25372   GNB      0.450
## 25374   GNB     86.000
## 25375   GNB      8.000
## 25376   GNB     68.700
## 25381   GNB      6.400
## 25382   GNB     11.500
## 25383   GNB     71.100
## 25385   GUY      0.533
## 25387   GUY      6.600
## 25388   GUY      0.400
## 25389   GUY      0.000
## 25390   GUY      0.100
## 25392   GUY      0.700
## 25393   GUY     29.500
## 25394   GUY     59.700
## 25395   GUY      0.512
## 25396   GUY     10.200
## 25405   GUY      6.900
## 25406   GUY      6.900
## 25407   GUY      6.900
## 25409   GUY     34.100
## 25410   GUY     31.300
## 25441   GUY     35.400
## 25443   GUY      2.120
## 25445   GUY      1.270
## 25448   GUY      0.100
## 25449   GUY      7.000
## 25450   GUY     24.000
## 25451   GUY     63.400
## 25452   GUY     67.000
## 25453   GUY     60.200
## 25454   GUY      0.668
## 25456   GUY    186.000
## 25457   GUY     45.300
## 25458   GUY    304.000
## 25459   GUY     58.500
## 25472   GUY   1878.000
## 25473   GUY      0.443
## 25499   GUY     49.800
## 25509   GUY    233.900
## 25510   GUY      3.700
## 25511   GUY     54.000
## 25515   GUY     36.500
## 25516   GUY     41.000
## 25517   GUY     52.200
## 25522   GUY     12.500
## 25523   GUY     28.300
## 25524   GUY     38.400
## 25527   HND      0.509
## 25529   HND      6.700
## 25530   HND      2.600
## 25531   HND      0.200
## 25532   HND      0.900
## 25534   HND      5.100
## 25535   HND     41.000
## 25536   HND     89.500
## 25537   HND      0.357
## 25538   HND      8.600
## 25539   HND      8.700
## 25540   HND      8.400
## 25547   HND      3.500
## 25548   HND      4.300
## 25549   HND      4.500
## 25551   HND     19.300
## 25552   HND     13.100
## 25580   HND     50.000
## 25582   HND      1.730
## 25586   HND      1.390
## 25589   HND      0.900
## 25590   HND      3.000
## 25591   HND     14.000
## 25592   HND     67.200
## 25593   HND     69.500
## 25594   HND     64.900
## 25595   HND      0.726
## 25597   HND    173.000
## 25598   HND     43.200
## 25599   HND    231.000
## 25600   HND     55.500
## 25613   HND   2887.000
## 25614   HND      0.508
## 25645   HND     49.000
## 25658   HND     72.100
## 25659   HND      1.700
## 25660   HND     10.800
## 25661   HND     -1.700
## 25662   HND      2.690
## 25663   HND     38.000
## 25664   HND     40.700
## 25665   HND     62.700
## 25670   HND      4.600
## 25671   HND      7.900
## 25672   HND     51.300
## 25675   IND      0.432
## 25677   IND      6.700
## 25678   IND    518.500
## 25679   IND     34.500
## 25680   IND    122.100
## 25682   IND    888.100
## 25683   IND     25.800
## 25684   IND     64.600
## 25685   IND      0.317
## 25686   IND      7.700
## 25687   IND      6.500
## 25688   IND      8.900
## 25695   IND      3.100
## 25696   IND      1.800
## 25697   IND      4.300
## 25699   IND     13.800
## 25700   IND     34.700
## 25729   IND     18.400
## 25731   IND      1.050
## 25735   IND      0.980
## 25738   IND      0.100
## 25739   IND     20.000
## 25740   IND     57.000
## 25741   IND     58.400
## 25742   IND     58.800
## 25743   IND     58.000
## 25744   IND      0.591
## 25746   IND    232.000
## 25747   IND     86.200
## 25748   IND    278.000
## 25749   IND    122.400
## 25762   IND   1712.000
## 25763   IND      0.429
## 25794   IND     82.800
## 25806   IND     17.200
## 25807   IND      0.000
## 25808   IND      1.000
## 25809   IND      0.000
## 25810   IND      1.230
## 25811   IND     63.600
## 25812   IND     21.600
## 25813   IND     58.300
## 25818   IND      3.800
## 25819   IND      8.500
## 25820   IND     84.300
## 25823   IRN      0.594
## 25825   IRN      6.600
## 25826   IRN     29.600
## 25827   IRN      2.000
## 25828   IRN      9.100
## 25830   IRN     57.400
## 25831   IRN     56.900
## 25832   IRN     87.200
## 25833   IRN      0.414
## 25834   IRN      9.600
## 25843   IRN      4.400
## 25844   IRN      3.300
## 25845   IRN      5.600
## 25847   IRN     27.800
## 25848   IRN     37.700
## 25878   IRN     10.500
## 25880   IRN      1.970
## 25883   IRN      1.100
## 25886   IRN      0.100
## 25887   IRN      4.000
## 25888   IRN     16.000
## 25889   IRN     65.100
## 25890   IRN     66.800
## 25891   IRN     63.600
## 25892   IRN      0.694
## 25894   IRN    178.000
## 25895   IRN     42.100
## 25896   IRN    243.000
## 25897   IRN     53.800
## 25910   IRN  12563.000
## 25911   IRN      0.730
## 25930   IRN      7.200
## 25941   IRN     44.200
## 25946   IRN     26.900
## 25947   IRN     43.700
## 25948   IRN     40.500
## 25953   IRN     11.100
## 25954   IRN     21.600
## 25955   IRN     45.000
## 25958   ITA      0.774
## 25960   ITA     22.200
## 25961   ITA     39.200
## 25962   ITA      8.700
## 25963   ITA      2.800
## 25965   ITA     57.200
## 25966   ITA     66.700
## 25967   ITA     23.400
## 25968   ITA      0.609
## 25969   ITA     13.000
## 25970   ITA     12.900
## 25971   ITA     13.000
## 25978   ITA      7.400
## 25979   ITA      7.000
## 25980   ITA      7.900
## 25982   ITA     45.700
## 25983   ITA     57.200
## 26013   ITA     34.200
## 26015   ITA      2.320
## 26019   ITA      1.180
## 26021   ITA      0.100
## 26022   ITA      2.000
## 26023   ITA     50.000
## 26024   ITA     77.200
## 26025   ITA     80.400
## 26026   ITA     73.800
## 26027   ITA      0.879
## 26028   ITA     61.000
## 26029   ITA      8.000
## 26030   ITA    132.000
## 26031   ITA      9.300
## 26044   ITA  31124.000
## 26045   ITA      0.867
## 26075   ITA     34.000
## 26076   ITA      0.200
## 26077   ITA      0.800
## 26078   ITA      0.300
## 26079   ITA      8.500
## 26080   ITA     56.500
## 26081   ITA     45.500
## 26086   ITA     10.100
## 26087   ITA     28.500
## 26088   ITA     27.500
## 26091   JOR      0.627
## 26093   JOR      6.000
## 26094   JOR      2.000
## 26095   JOR      0.100
## 26096   JOR      0.600
## 26098   JOR      3.800
## 26099   JOR     74.500
## 26100   JOR     85.300
## 26101   JOR      0.527
## 26102   JOR     11.900
## 26103   JOR     12.000
## 26104   JOR     11.700
## 26111   JOR      5.900
## 26112   JOR      4.400
## 26113   JOR      6.800
## 26115   JOR     22.900
## 26116   JOR     30.600
## 26149   JOR     10.100
## 26151   JOR      1.980
## 26155   JOR      1.120
## 26158   JOR      0.100
## 26159   JOR      3.000
## 26160   JOR     15.000
## 26161   JOR     70.100
## 26162   JOR     71.600
## 26163   JOR     68.800
## 26164   JOR      0.771
## 26165   JOR    130.000
## 26166   JOR     29.100
## 26167   JOR    169.000
## 26168   JOR     35.400
## 26181   JOR   5577.000
## 26182   JOR      0.607
## 26213   JOR     32.300
## 26224   JOR    137.300
## 26225   JOR     -0.300
## 26226   JOR     23.600
## 26227   JOR      0.600
## 26228   JOR     10.310
## 26230   JOR      6.000
## 26231   JOR     74.700
## 26232   JOR     33.000
## 26237   JOR     19.900
## 26238   JOR     41.700
## 26239   JOR     13.600
## 26241   KEN      0.466
## 26243   KEN      5.500
## 26244   KEN     11.800
## 26245   KEN      0.700
## 26246   KEN      4.500
## 26248   KEN     24.200
## 26249   KEN     17.000
## 26250   KEN    100.100
## 26251   KEN      0.379
## 26252   KEN      9.000
## 26261   KEN      3.900
## 26262   KEN      2.700
## 26263   KEN      5.200
## 26265   KEN      9.000
## 26266   KEN     24.200
## 26294   KEN     38.200
## 26296   KEN      1.920
## 26300   KEN      1.320
## 26303   KEN      7.100
## 26304   KEN      8.000
## 26305   KEN     19.000
## 26306   KEN     56.900
## 26307   KEN     59.400
## 26308   KEN     54.500
## 26309   KEN      0.568
## 26311   KEN    296.000
## 26312   KEN     64.400
## 26313   KEN    390.000
## 26314   KEN    100.000
## 26327   KEN   2245.000
## 26328   KEN      0.470
## 26357   KEN     39.800
## 26369   KEN     55.600
## 26370   KEN      0.200
## 26371   KEN     11.800
## 26372   KEN     -0.200
## 26373   KEN      1.520
## 26374   KEN     45.600
## 26375   KEN     40.800
## 26376   KEN     66.100
## 26381   KEN     10.200
## 26382   KEN     19.800
## 26383   KEN     60.400
## 26387   KIR      6.200
## 26388   KIR      0.000
## 26389   KIR      0.000
## 26390   KIR      0.000
## 26392   KIR      0.100
## 26393   KIR     35.300
## 26394   KIR     72.900
## 26396   KIR     10.800
## 26397   KIR     11.000
## 26398   KIR     10.700
## 26428   KIR     12.000
## 26429   KIR     38.000
## 26430   KIR     60.900
## 26431   KIR     63.800
## 26432   KIR     58.000
## 26433   KIR      0.629
## 26434   KIR    215.000
## 26435   KIR     67.000
## 26436   KIR    294.000
## 26437   KIR     92.200
## 26449   KIR   2113.000
## 26450   KIR      0.461
## 26472   KIR    116.600
## 26473   KIR      0.900
## 26474   KIR     26.000
## 26475   KIR     26.600
## 26476   KIR     12.750
## 26478   KGZ      0.611
## 26480   KGZ      9.000
## 26481   KGZ      2.500
## 26482   KGZ      0.200
## 26483   KGZ      0.600
## 26485   KGZ      4.400
## 26486   KGZ     37.500
## 26487   KGZ     65.700
## 26488   KGZ      0.616
## 26489   KGZ     11.800
## 26498   KGZ      8.700
## 26499   KGZ      8.300
## 26500   KGZ      9.100
## 26502   KGZ     72.800
## 26503   KGZ     72.000
## 26533   KGZ     43.200
## 26535   KGZ      1.290
## 26540   KGZ      1.110
## 26543   KGZ      0.100
## 26546   KGZ     66.300
## 26547   KGZ     70.200
## 26548   KGZ     62.300
## 26549   KGZ      0.713
## 26551   KGZ    134.000
## 26552   KGZ     53.800
## 26553   KGZ    268.000
## 26554   KGZ     64.800
## 26567   KGZ   3096.000
## 26568   KGZ      0.519
## 26599   KGZ     30.900
## 26612   KGZ     72.000
## 26618   KGZ     39.100
## 26619   KGZ     42.600
## 26620   KGZ     59.200
## 26625   KGZ      5.500
## 26626   KGZ      9.700
## 26627   KGZ     45.300
## 26630   LAO      0.405
## 26632   LAO      6.800
## 26633   LAO      2.300
## 26634   LAO      0.200
## 26635   LAO      0.800
## 26637   LAO      4.400
## 26638   LAO     15.800
## 26639   LAO     85.300
## 26640   LAO      0.294
## 26641   LAO      6.700
## 26642   LAO      5.600
## 26643   LAO      7.400
## 26650   LAO      3.200
## 26651   LAO      2.000
## 26652   LAO      4.400
## 26654   LAO      6.700
## 26655   LAO     19.800
## 26683   LAO     35.600
## 26685   LAO      0.930
## 26690   LAO      0.930
## 26693   LAO      0.100
## 26694   LAO     54.000
## 26695   LAO     53.000
## 26696   LAO     54.100
## 26697   LAO     55.400
## 26698   LAO     52.800
## 26699   LAO      0.524
## 26701   LAO    302.000
## 26702   LAO    108.000
## 26703   LAO    353.000
## 26704   LAO    157.300
## 26717   LAO   1756.000
## 26718   LAO      0.433
## 26749   LAO     99.100
## 26761   LAO     38.200
## 26762   LAO      0.700
## 26763   LAO     13.600
## 26764   LAO     -0.800
## 26765   LAO      1.010
## 26767   LAO     86.300
## 26768   LAO     10.500
## 26769   LAO     79.100
## 26774   LAO      2.600
## 26775   LAO      5.600
## 26776   LAO     91.100
## 26779   LSO      0.499
## 26781   LSO      8.100
## 26782   LSO      0.900
## 26783   LSO      0.100
## 26784   LSO      0.300
## 26786   LSO      1.600
## 26787   LSO     14.500
## 26788   LSO     83.900
## 26789   LSO      0.418
## 26790   LSO      9.700
## 26791   LSO     10.800
## 26792   LSO      8.500
## 26799   LSO      4.500
## 26800   LSO      4.500
## 26801   LSO      3.900
## 26803   LSO     14.400
## 26804   LSO     12.200
## 26834   LSO     54.700
## 26836   LSO      1.450
## 26839   LSO      1.180
## 26842   LSO      2.500
## 26843   LSO      8.000
## 26844   LSO     19.000
## 26845   LSO     59.500
## 26846   LSO     61.200
## 26847   LSO     57.500
## 26848   LSO      0.607
## 26849   LSO    257.000
## 26850   LSO     72.600
## 26851   LSO    318.000
## 26852   LSO     90.700
## 26865   LSO   2571.000
## 26866   LSO      0.490
## 26897   LSO     77.900
## 26911   LSO      1.100
## 26912   LSO     11.400
## 26913   LSO     -1.100
## 26914   LSO    145.150
## 26915   LSO     61.700
## 26916   LSO     24.500
## 26917   LSO     48.000
## 26922   LSO     36.400
## 26923   LSO     50.700
## 26924   LSO     65.700
## 26928   LBR      5.800
## 26929   LBR      1.100
## 26930   LBR      0.100
## 26931   LBR      0.400
## 26933   LBR      2.100
## 26934   LBR     58.000
## 26935   LBR     86.200
## 26946   LBR      2.700
## 26947   LBR      1.300
## 26948   LBR      4.200
## 26950   LBR      8.700
## 26951   LBR     30.900
## 26979   LBR     47.200
## 26981   LBR      0.590
## 26986   LBR      0.810
## 26989   LBR      3.200
## 26992   LBR     47.400
## 26993   LBR     49.600
## 26994   LBR     45.400
## 26995   LBR      0.422
## 26997   LBR    287.000
## 26998   LBR    173.100
## 26999   LBR    363.000
## 27000   LBR    259.500
## 27013   LBR    657.000
## 27014   LBR      0.284
## 27043   LBR     88.700
## 27055   LBR      2.400
## 27060   LBR     41.200
## 27061   LBR     49.700
## 27062   LBR     53.300
## 27066   LBR      5.600
## 27067   LBR      4.600
## 27068   LBR     79.400
## 27073   MDG      5.900
## 27074   MDG      6.100
## 27075   MDG      0.400
## 27076   MDG      2.200
## 27078   MDG     11.900
## 27079   MDG     24.100
## 27080   MDG     88.500
## 27082   MDG      6.600
## 27083   MDG      6.400
## 27084   MDG      6.700
## 27121   MDG     44.900
## 27123   MDG      1.070
## 27126   MDG      1.010
## 27129   MDG      0.100
## 27130   MDG     23.000
## 27131   MDG     46.000
## 27132   MDG     51.600
## 27133   MDG     52.900
## 27134   MDG     50.400
## 27135   MDG      0.486
## 27137   MDG    306.000
## 27138   MDG     94.800
## 27139   MDG    355.000
## 27140   MDG    154.600
## 27153   MDG   1416.000
## 27154   MDG      0.400
## 27185   MDG     85.500
## 27198   MDG     44.800
## 27199   MDG      0.500
## 27200   MDG     18.300
## 27201   MDG     -0.500
## 27202   MDG      0.490
## 27203   MDG     78.300
## 27204   MDG     16.000
## 27205   MDG     81.600
## 27210   MDG      5.800
## 27211   MDG      9.700
## 27212   MDG     86.700
## 27215   MWI      0.346
## 27217   MWI      5.300
## 27218   MWI      5.000
## 27219   MWI      0.300
## 27220   MWI      1.800
## 27222   MWI      9.600
## 27223   MWI     11.900
## 27224   MWI     89.300
## 27225   MWI      0.239
## 27226   MWI      5.600
## 27227   MWI      5.000
## 27228   MWI      6.200
## 27235   MWI      2.500
## 27236   MWI      1.700
## 27237   MWI      3.500
## 27239   MWI      2.900
## 27240   MWI     10.000
## 27267   MWI     37.400
## 27269   MWI      1.450
## 27273   MWI      1.090
## 27276   MWI     10.300
## 27277   MWI      5.000
## 27278   MWI     15.000
## 27279   MWI     46.600
## 27280   MWI     48.700
## 27281   MWI     44.600
## 27282   MWI      0.410
## 27284   MWI    366.000
## 27285   MWI    131.700
## 27286   MWI    488.000
## 27287   MWI    223.800
## 27300   MWI   1662.000
## 27301   MWI      0.425
## 27332   MWI     85.100
## 27344   MWI     52.600
## 27345   MWI     -1.300
## 27346   MWI     25.500
## 27347   MWI      0.000
## 27350   MWI     84.000
## 27351   MWI      5.200
## 27352   MWI     71.300
## 27357   MWI      7.700
## 27358   MWI     10.600
## 27359   MWI     68.100
## 27361   MYS      0.652
## 27363   MYS      6.200
## 27364   MYS     11.000
## 27365   MYS      0.700
## 27366   MYS      2.500
## 27368   MYS     18.500
## 27369   MYS     50.600
## 27370   MYS     61.700
## 27371   MYS      0.499
## 27372   MYS      9.900
## 27381   MYS      6.700
## 27382   MYS      6.000
## 27383   MYS      7.600
## 27385   MYS     36.800
## 27386   MYS     48.300
## 27416   MYS     37.100
## 27418   MYS      1.290
## 27420   MYS      1.070
## 27423   MYS      0.300
## 27424   MYS      7.000
## 27425   MYS     20.000
## 27426   MYS     71.000
## 27427   MYS     72.900
## 27428   MYS     69.200
## 27429   MYS      0.784
## 27431   MYS    124.000
## 27432   MYS     13.600
## 27433   MYS    192.000
## 27434   MYS     15.800
## 27446   MYS  10769.000
## 27447   MYS      0.707
## 27463   MYS     12.200
## 27475   MYS    159.300
## 27476   MYS      8.100
## 27477   MYS      0.600
## 27478   MYS     -8.500
## 27479   MYS      0.260
## 27480   MYS     26.600
## 27481   MYS     45.800
## 27482   MYS     60.000
## 27487   MYS      3.800
## 27488   MYS     11.000
## 27489   MYS     29.100
## 27492   MLI      0.238
## 27494   MLI      7.700
## 27495   MLI      4.300
## 27496   MLI      0.300
## 27497   MLI      1.600
## 27499   MLI      8.700
## 27500   MLI     23.800
## 27501   MLI     94.600
## 27502   MLI      0.085
## 27503   MLI      2.200
## 27504   MLI      1.600
## 27505   MLI      2.700
## 27512   MLI      0.700
## 27513   MLI      0.400
## 27514   MLI      1.100
## 27516   MLI      1.200
## 27517   MLI      5.100
## 27545   MLI     44.500
## 27547   MLI      1.370
## 27551   MLI      1.090
## 27554   MLI      1.100
## 27555   MLI     41.000
## 27556   MLI     58.000
## 27557   MLI     46.100
## 27558   MLI     46.800
## 27559   MLI     45.300
## 27560   MLI      0.401
## 27562   MLI    321.000
## 27563   MLI    128.200
## 27564   MLI    343.000
## 27565   MLI    249.500
## 27578   MLI   1395.000
## 27579   MLI      0.398
## 27610   MLI     93.800
## 27623   MLI     47.500
## 27624   MLI      0.000
## 27625   MLI     16.500
## 27626   MLI      0.000
## 27627   MLI      3.410
## 27629   MLI     50.000
## 27630   MLI     36.300
## 27631   MLI     49.000
## 27636   MLI      3.100
## 27637   MLI      4.800
## 27638   MLI     90.900
## 27641   MLT      0.745
## 27643   MLT     16.300
## 27644   MLT      0.200
## 27645   MLT      0.000
## 27646   MLT      0.000
## 27648   MLT      0.400
## 27649   MLT     90.500
## 27650   MLT     35.000
## 27651   MLT      0.610
## 27652   MLT     13.100
## 27653   MLT     12.400
## 27654   MLT     13.100
## 27661   MLT      7.400
## 27662   MLT      7.300
## 27663   MLT      6.600
## 27665   MLT     25.900
## 27666   MLT     37.300
## 27696   MLT     28.700
## 27698   MLT      1.060
## 27702   MLT      0.900
## 27704   MLT      0.100
## 27705   MLT      5.000
## 27706   MLT     10.000
## 27707   MLT     76.200
## 27708   MLT     77.900
## 27709   MLT     74.500
## 27710   MLT      0.865
## 27711   MLT     64.000
## 27712   MLT      9.500
## 27713   MLT    106.000
## 27714   MLT     10.800
## 27725   MLT  17960.000
## 27726   MLT      0.784
## 27753   MLT    165.200
## 27754   MLT      2.800
## 27755   MLT      0.700
## 27756   MLT      6.100
## 27757   MLT      1.530
## 27758   MLT      3.200
## 27759   MLT     56.900
## 27760   MLT     47.100
## 27765   MLT      6.400
## 27766   MLT     11.900
## 27767   MLT     12.800
## 27770   MRT      0.379
## 27772   MRT      6.000
## 27773   MRT      1.100
## 27774   MRT      0.100
## 27775   MRT      0.400
## 27777   MRT      2.100
## 27778   MRT     39.200
## 27779   MRT     85.800
## 27780   MRT      0.184
## 27781   MRT      3.900
## 27782   MRT      3.100
## 27783   MRT      4.600
## 27790   MRT      2.300
## 27791   MRT      1.700
## 27792   MRT      3.000
## 27794   MRT      2.300
## 27795   MRT      9.200
## 27823   MRT     16.800
## 27825   MRT      1.250
## 27828   MRT      1.080
## 27831   MRT      0.200
## 27832   MRT     35.000
## 27833   MRT     68.000
## 27834   MRT     58.600
## 27835   MRT     59.900
## 27836   MRT     57.300
## 27837   MRT      0.594
## 27839   MRT    219.000
## 27840   MRT     70.100
## 27841   MRT    266.000
## 27842   MRT    114.700
## 27855   MRT   2703.000
## 27856   MRT      0.498
## 27887   MRT     56.400
## 27899   MRT     75.700
## 27900   MRT      0.200
## 27901   MRT     15.700
## 27902   MRT     -0.200
## 27903   MRT      0.810
## 27905   MRT     81.300
## 27906   MRT     12.400
## 27907   MRT     47.000
## 27912   MRT      9.800
## 27913   MRT     15.300
## 27914   MRT     55.500
## 27917   MUS      0.626
## 27919   MUS      7.300
## 27920   MUS      0.700
## 27921   MUS      0.100
## 27922   MUS      0.100
## 27924   MUS      1.100
## 27925   MUS     43.800
## 27926   MUS     42.700
## 27927   MUS      0.489
## 27928   MUS     10.600
## 27929   MUS     10.700
## 27930   MUS     10.700
## 27937   MUS      5.800
## 27938   MUS      4.900
## 27939   MUS      6.700
## 27941   MUS     27.300
## 27942   MUS     40.800
## 27970   MUS     31.500
## 27972   MUS      1.750
## 27975   MUS      1.110
## 27977   MUS      3.000
## 27978   MUS     12.000
## 27979   MUS     69.700
## 27980   MUS     73.600
## 27981   MUS     66.000
## 27982   MUS      0.765
## 27983   MUS    130.000
## 27984   MUS     18.700
## 27985   MUS    262.000
## 27986   MUS     21.700
## 27998   MUS   7648.000
## 27999   MUS      0.655
## 28018   MUS      3.100
## 28029   MUS    128.400
## 28030   MUS      0.600
## 28031   MUS      2.400
## 28032   MUS     -0.200
## 28034   MUS     16.100
## 28035   MUS     42.800
## 28036   MUS     53.900
## 28041   MUS     10.100
## 28042   MUS     22.900
## 28043   MUS     15.900
## 28045   MEX      0.654
## 28047   MEX      7.600
## 28048   MEX     49.800
## 28049   MEX      3.800
## 28050   MEX     11.600
## 28052   MEX     87.100
## 28053   MEX     71.800
## 28054   MEX     67.100
## 28055   MEX      0.481
## 28056   MEX     10.500
## 28057   MEX     10.300
## 28058   MEX     10.600
## 28065   MEX      5.700
## 28066   MEX      5.300
## 28067   MEX      6.100
## 28069   MEX     29.300
## 28070   MEX     35.500
## 28093   MEX   6056.000
## 28094   MEX  20084.000
## 28097   MEX      0.901
## 28099   MEX      0.611
## 28100   MEX      0.678
## 28104   MEX     35.600
## 28106   MEX      1.620
## 28110   MEX      1.020
## 28113   MEX      0.200
## 28114   MEX      4.000
## 28115   MEX     11.000
## 28116   MEX     71.200
## 28117   MEX     74.200
## 28118   MEX     68.400
## 28119   MEX      0.788
## 28121   MEX    116.000
## 28122   MEX     34.900
## 28123   MEX    206.000
## 28124   MEX     43.500
## 28137   MEX  13030.000
## 28138   MEX      0.736
## 28170   MEX     21.300
## 28183   MEX     35.600
## 28184   MEX      1.500
## 28185   MEX      0.100
## 28186   MEX     -5.400
## 28187   MEX      0.960
## 28189   MEX     26.800
## 28190   MEX     50.100
## 28191   MEX     56.900
## 28196   MEX      3.100
## 28197   MEX      5.300
## 28198   MEX     36.800
## 28201   MNG      0.574
## 28203   MNG      7.300
## 28204   MNG      1.200
## 28205   MNG      0.100
## 28206   MNG      0.300
## 28208   MNG      2.200
## 28209   MNG     57.000
## 28210   MNG     72.500
## 28211   MNG      0.527
## 28212   MNG      9.700
## 28221   MNG      7.700
## 28222   MNG      7.400
## 28223   MNG      8.100
## 28225   MNG     68.300
## 28226   MNG     76.000
## 28257   MNG     48.000
## 28259   MNG      0.930
## 28262   MNG      1.010
## 28265   MNG      0.100
## 28266   MNG      7.000
## 28267   MNG     18.000
## 28268   MNG     60.500
## 28269   MNG     63.100
## 28270   MNG     58.000
## 28271   MNG      0.623
## 28272   MNG    203.000
## 28273   MNG     74.300
## 28274   MNG    301.000
## 28275   MNG    103.700
## 28288   MNG   4496.000
## 28289   MNG      0.575
## 28320   MNG     29.300
## 28333   MNG    136.600
## 28334   MNG      0.500
## 28335   MNG      3.000
## 28339   MNG     46.900
## 28340   MNG     38.900
## 28341   MNG     52.200
## 28346   MNG      9.600
## 28347   MNG     18.400
## 28348   MNG     59.900
## 28351   MAR      0.464
## 28353   MAR      7.200
## 28354   MAR     14.400
## 28355   MAR      1.000
## 28356   MAR      3.400
## 28358   MAR     25.300
## 28359   MAR     49.100
## 28360   MAR     69.000
## 28361   MAR      0.258
## 28362   MAR      6.500
## 28363   MAR      5.300
## 28364   MAR      7.600
## 28371   MAR      2.300
## 28372   MAR      1.500
## 28373   MAR      3.000
## 28375   MAR      9.700
## 28376   MAR     17.600
## 28406   MAR     25.800
## 28408   MAR      1.080
## 28411   MAR      0.960
## 28414   MAR      0.100
## 28415   MAR      7.000
## 28416   MAR     20.000
## 28417   MAR     65.300
## 28418   MAR     66.900
## 28419   MAR     63.600
## 28420   MAR      0.696
## 28421   MAR    164.000
## 28422   MAR     60.400
## 28423   MAR    215.000
## 28424   MAR     75.900
## 28437   MAR   3990.000
## 28438   MAR      0.557
## 28470   MAR     29.600
## 28481   MAR     49.800
## 28482   MAR      1.000
## 28483   MAR      4.900
## 28484   MAR     -0.900
## 28485   MAR      6.160
## 28486   MAR     41.200
## 28487   MAR     35.100
## 28488   MAR     42.100
## 28493   MAR     17.300
## 28494   MAR     28.500
## 28495   MAR     49.100
## 28497   MOZ      0.212
## 28499   MOZ      6.100
## 28500   MOZ      6.800
## 28501   MOZ      0.400
## 28502   MOZ      2.400
## 28504   MOZ     13.600
## 28505   MOZ     25.500
## 28506   MOZ     92.300
## 28507   MOZ      0.133
## 28508   MOZ      3.600
## 28509   MOZ      3.000
## 28510   MOZ      4.300
## 28517   MOZ      1.000
## 28518   MOZ      0.500
## 28519   MOZ      1.600
## 28552   MOZ     25.300
## 28554   MOZ      1.190
## 28558   MOZ      0.980
## 28561   MOZ      2.300
## 28562   MOZ     29.000
## 28563   MOZ     45.000
## 28564   MOZ     43.300
## 28565   MOZ     44.900
## 28566   MOZ     41.600
## 28567   MOZ      0.358
## 28569   MOZ    394.000
## 28570   MOZ    163.800
## 28571   MOZ    463.000
## 28572   MOZ    246.000
## 28585   MOZ    373.000
## 28586   MOZ      0.199
## 28617   MOZ     97.600
## 28630   MOZ     53.300
## 28631   MOZ      0.700
## 28632   MOZ     33.700
## 28634   MOZ      1.700
## 28635   MOZ     85.400
## 28636   MOZ     11.700
## 28637   MOZ     63.400
## 28642   MOZ     25.100
## 28643   MOZ     42.100
## 28644   MOZ     91.200
## 28647   NAM      0.582
## 28649   NAM      6.300
## 28650   NAM      0.800
## 28651   NAM      0.000
## 28652   NAM      0.200
## 28654   NAM      1.500
## 28655   NAM     27.900
## 28656   NAM     81.600
## 28657   NAM      0.496
## 28658   NAM     11.100
## 28659   NAM     11.500
## 28660   NAM     10.700
## 28667   NAM      5.600
## 28668   NAM      5.300
## 28669   NAM      6.000
## 28671   NAM     31.100
## 28672   NAM     36.100
## 28700   NAM     40.300
## 28702   NAM      1.280
## 28706   NAM      1.130
## 28709   NAM      2.500
## 28710   NAM     13.000
## 28711   NAM     24.000
## 28712   NAM     61.600
## 28713   NAM     64.600
## 28714   NAM     58.600
## 28715   NAM      0.640
## 28717   NAM    224.000
## 28718   NAM     47.300
## 28719   NAM    311.000
## 28720   NAM     69.200
## 28733   NAM   6148.000
## 28734   NAM      0.622
## 28765   NAM     48.400
## 28777   NAM     93.400
## 28778   NAM      4.000
## 28779   NAM      5.800
## 28780   NAM     -2.900
## 28781   NAM      0.460
## 28782   NAM     48.300
## 28783   NAM     36.700
## 28784   NAM     45.700
## 28789   NAM     19.100
## 28790   NAM     36.400
## 28791   NAM     43.300
## 28794   NPL      0.386
## 28796   NPL      6.600
## 28797   NPL     10.400
## 28798   NPL      0.700
## 28799   NPL      3.100
## 28801   NPL     19.200
## 28802   NPL      9.200
## 28803   NPL     78.300
## 28804   NPL      0.283
## 28805   NPL      7.700
## 28806   NPL      5.500
## 28807   NPL      9.800
## 28814   NPL      2.100
## 28815   NPL      0.900
## 28816   NPL      3.300
## 28818   NPL      7.300
## 28819   NPL     27.900
## 28848   NPL     26.500
## 28850   NPL      0.730
## 28854   NPL      0.790
## 28857   NPL      0.100
## 28858   NPL     29.000
## 28859   NPL     43.000
## 28860   NPL     55.100
## 28861   NPL     55.700
## 28862   NPL     54.400
## 28863   NPL      0.540
## 28865   NPL    296.000
## 28866   NPL     93.400
## 28867   NPL    332.000
## 28868   NPL    133.900
## 28881   NPL   1209.000
## 28882   NPL      0.377
## 28913   NPL     87.700
## 28926   NPL     34.700
## 28927   NPL      0.100
## 28928   NPL     11.400
## 28929   NPL      0.000
## 28932   NPL     82.300
## 28933   NPL     14.900
## 28934   NPL     81.700
## 28939   NPL      4.400
## 28940   NPL      7.200
## 28941   NPL     74.900
## 28944   NLD      0.834
## 28946   NLD     18.600
## 28947   NLD     10.400
## 28948   NLD      1.900
## 28949   NLD      0.900
## 28951   NLD     15.100
## 28952   NLD     69.300
## 28953   NLD     26.300
## 28954   NLD      0.756
## 28955   NLD     14.900
## 28956   NLD     14.600
## 28957   NLD     15.200
## 28963   NLD     10.200
## 28964   NLD      9.900
## 28965   NLD     10.900
## 28967   NLD     75.500
## 28968   NLD     84.100
## 28997   NLD     38.600
## 28999   NLD      1.770
## 29003   NLD      1.090
## 29005   NLD      0.100
## 29006   NLD      2.000
## 29007   NLD      6.000
## 29008   NLD     77.100
## 29009   NLD     80.100
## 29010   NLD     74.000
## 29011   NLD      0.878
## 29012   NLD     68.000
## 29013   NLD      6.500
## 29014   NLD    113.000
## 29015   NLD      8.000
## 29028   NLD  32601.000
## 29029   NLD      0.874
## 29059   NLD    105.700
## 29060   NLD      1.700
## 29061   NLD      2.500
## 29062   NLD      0.210
## 29063   NLD      4.400
## 29064   NLD     70.700
## 29065   NLD     52.800
## 29070   NLD      7.300
## 29071   NLD     11.100
## 29072   NLD      8.200
## 29075   NZL      0.820
## 29077   NZL     17.100
## 29078   NZL      2.300
## 29079   NZL      0.400
## 29080   NZL      0.300
## 29082   NZL      3.400
## 29083   NZL     85.000
## 29084   NZL     35.300
## 29085   NZL      0.797
## 29086   NZL     14.800
## 29087   NZL     14.900
## 29088   NZL     14.700
## 29094   NZL     11.600
## 29095   NZL     11.200
## 29096   NZL     11.800
## 29098   NZL     61.000
## 29099   NZL     66.000
## 29126   NZL     45.400
## 29128   NZL      0.860
## 29130   NZL      0.910
## 29132   NZL      7.000
## 29133   NZL     18.000
## 29134   NZL     75.700
## 29135   NZL     78.600
## 29136   NZL     72.800
## 29137   NZL      0.857
## 29138   NZL     85.000
## 29139   NZL      8.600
## 29140   NZL    134.000
## 29141   NZL     10.500
## 29154   NZL  20858.000
## 29155   NZL      0.807
## 29179   NZL     54.600
## 29180   NZL      3.000
## 29182   NZL      1.520
## 29183   NZL     10.800
## 29184   NZL     65.500
## 29185   NZL     56.700
## 29190   NZL     10.600
## 29191   NZL     19.400
## 29192   NZL     12.600
## 29197   NGA      5.500
## 29198   NGA     51.000
## 29199   NGA      2.800
## 29200   NGA     17.200
## 29202   NGA     97.700
## 29203   NGA     30.200
## 29204   NGA     86.100
## 29206   NGA      6.800
## 29242   NGA     48.400
## 29244   NGA      0.940
## 29249   NGA      1.120
## 29252   NGA      1.800
## 29253   NGA     36.000
## 29254   NGA     43.000
## 29255   NGA     45.900
## 29256   NGA     47.200
## 29257   NGA     44.600
## 29258   NGA      0.398
## 29260   NGA    360.000
## 29261   NGA    126.000
## 29262   NGA    414.000
## 29263   NGA    212.500
## 29276   NGA   2707.000
## 29277   NGA      0.498
## 29307   NGA     72.900
## 29318   NGA     64.900
## 29319   NGA      2.600
## 29320   NGA      1.000
## 29321   NGA     -2.400
## 29322   NGA      0.240
## 29324   NGA     58.000
## 29325   NGA     32.800
## 29326   NGA     53.400
## 29331   NGA      5.300
## 29332   NGA      9.300
## 29333   NGA     82.900
## 29336   NOR      0.856
## 29338   NOR     25.300
## 29339   NOR      2.800
## 29340   NOR      0.700
## 29341   NOR      0.300
## 29343   NOR      4.300
## 29344   NOR     72.300
## 29345   NOR     29.300
## 29346   NOR      0.782
## 29347   NOR     14.300
## 29348   NOR     14.500
## 29349   NOR     14.000
## 29355   NOR     11.600
## 29356   NOR     11.400
## 29357   NOR     11.800
## 29359   NOR     63.800
## 29360   NOR     71.100
## 29390   NOR     46.900
## 29392   NOR      0.860
## 29395   NOR      0.950
## 29397   NOR      2.000
## 29398   NOR      6.000
## 29399   NOR     76.900
## 29400   NOR     80.100
## 29401   NOR     73.800
## 29402   NOR      0.876
## 29403   NOR     65.000
## 29404   NOR      6.400
## 29405   NOR    124.000
## 29406   NOR      7.900
## 29419   NOR  42707.000
## 29420   NOR      0.915
## 29450   NOR     70.700
## 29451   NOR     -0.300
## 29452   NOR      4.300
## 29453   NOR      0.140
## 29454   NOR      5.800
## 29455   NOR     71.000
## 29456   NOR     58.600
## 29461   NOR      5.400
## 29462   NOR     12.600
## 29463   NOR     10.400
## 29466   PAK      0.409
## 29468   PAK      7.400
## 29469   PAK     58.600
## 29470   PAK      4.300
## 29471   PAK     19.000
## 29473   PAK    110.700
## 29474   PAK     30.800
## 29475   PAK     81.400
## 29476   PAK      0.210
## 29477   PAK      4.700
## 29478   PAK      3.200
## 29479   PAK      6.200
## 29486   PAK      2.400
## 29487   PAK      1.100
## 29488   PAK      2.900
## 29490   PAK      7.500
## 29491   PAK     19.600
## 29520   PAK      7.500
## 29522   PAK      3.950
## 29525   PAK      1.280
## 29528   PAK      0.100
## 29529   PAK     26.000
## 29530   PAK     49.000
## 29531   PAK     60.300
## 29532   PAK     61.100
## 29533   PAK     59.700
## 29534   PAK      0.621
## 29536   PAK    193.000
## 29537   PAK    104.400
## 29538   PAK    217.000
## 29539   PAK    136.200
## 29552   PAK   3201.000
## 29553   PAK      0.524
## 29585   PAK     83.000
## 29598   PAK     35.600
## 29599   PAK      0.600
## 29600   PAK      3.100
## 29601   PAK     -0.800
## 29602   PAK      3.410
## 29603   PAK     47.500
## 29604   PAK     32.700
## 29605   PAK     47.600
## 29610   PAK      5.900
## 29611   PAK     10.100
## 29612   PAK     65.700
## 29615   PAN      0.665
## 29617   PAN      8.100
## 29618   PAN      1.500
## 29619   PAN      0.100
## 29620   PAN      0.300
## 29622   PAN      2.500
## 29623   PAN     54.800
## 29624   PAN     59.300
## 29625   PAN      0.543
## 29626   PAN     10.700
## 29635   PAN      7.400
## 29636   PAN      7.500
## 29639   PAN     45.500
## 29640   PAN     37.700
## 29671   PAN     41.200
## 29673   PAN      1.590
## 29676   PAN      1.170
## 29679   PAN      0.400
## 29680   PAN      6.000
## 29681   PAN     20.000
## 29682   PAN     73.200
## 29683   PAN     76.200
## 29684   PAN     70.500
## 29685   PAN      0.819
## 29687   PAN     97.000
## 29688   PAN     25.200
## 29689   PAN    169.000
## 29690   PAN     30.200
## 29703   PAN   7914.000
## 29704   PAN      0.660
## 29722   PAN     23.300
## 29734   PAN    140.200
## 29735   PAN      1.500
## 29736   PAN      1.600
## 29737   PAN      2.000
## 29738   PAN      1.530
## 29740   PAN     27.300
## 29741   PAN     58.300
## 29742   PAN     49.400
## 29747   PAN     16.100
## 29748   PAN     35.800
## 29749   PAN     32.900
## 29752   PNG      0.388
## 29754   PNG      5.400
## 29755   PNG      2.400
## 29756   PNG      0.100
## 29757   PNG      0.700
## 29759   PNG      4.400
## 29760   PNG     14.800
## 29761   PNG     75.500
## 29762   PNG      0.214
## 29763   PNG      4.800
## 29764   PNG      4.300
## 29765   PNG      5.200
## 29771   PNG      2.400
## 29772   PNG      1.600
## 29773   PNG      3.300
## 29775   PNG      7.500
## 29776   PNG     16.000
## 29802   PNG     53.000
## 29804   PNG      0.500
## 29806   PNG      0.850
## 29809   PNG      0.100
## 29810   PNG      7.000
## 29811   PNG     31.000
## 29812   PNG     59.200
## 29813   PNG     62.200
## 29814   PNG     56.500
## 29815   PNG      0.603
## 29817   PNG    265.000
## 29818   PNG     63.500
## 29819   PNG    356.000
## 29820   PNG     86.600
## 29832   PNG   2006.000
## 29833   PNG      0.453
## 29846   PNG     87.600
## 29855   PNG     94.400
## 29856   PNG      3.100
## 29857   PNG     10.900
## 29858   PNG     -0.500
## 29859   PNG      0.550
## 29860   PNG     71.100
## 29861   PNG     25.000
## 29862   PNG     70.000
## 29867   PNG      3.000
## 29868   PNG      5.500
## 29869   PNG     75.400
## 29872   PRY      0.585
## 29874   PRY      7.600
## 29875   PRY      2.400
## 29876   PRY      0.200
## 29877   PRY      0.700
## 29879   PRY      4.300
## 29880   PRY     49.400
## 29881   PRY     75.200
## 29882   PRY      0.442
## 29883   PRY      8.900
## 29884   PRY      8.800
## 29885   PRY      9.000
## 29892   PRY      5.800
## 29893   PRY      5.400
## 29894   PRY      5.900
## 29896   PRY     25.200
## 29897   PRY     30.300
## 29926   PRY     44.800
## 29928   PRY      1.660
## 29931   PRY      1.260
## 29934   PRY      0.100
## 29935   PRY     14.000
## 29936   PRY     26.000
## 29937   PRY     68.200
## 29938   PRY     70.500
## 29939   PRY     66.000
## 29940   PRY      0.741
## 29942   PRY    149.000
## 29943   PRY     36.000
## 29944   PRY    202.000
## 29945   PRY     45.000
## 29958   PRY   5729.000
## 29959   PRY      0.612
## 29990   PRY     19.200
## 30003   PRY     89.100
## 30004   PRY      1.200
## 30006   PRY     -1.200
## 30007   PRY      0.610
## 30009   PRY     30.600
## 30010   PRY     50.900
## 30011   PRY     65.400
## 30016   PRY      5.100
## 30017   PRY     10.700
## 30018   PRY     51.100
## 30021   PER      0.617
## 30023   PER      7.000
## 30024   PER     12.900
## 30025   PER      0.900
## 30026   PER      3.100
## 30028   PER     22.300
## 30029   PER     69.300
## 30030   PER     66.100
## 30031   PER      0.556
## 30032   PER     11.900
## 30041   PER      6.700
## 30042   PER      6.000
## 30043   PER      7.300
## 30045   PER     38.800
## 30046   PER     49.900
## 30076   PER     39.200
## 30078   PER      1.220
## 30082   PER      1.020
## 30085   PER      0.600
## 30086   PER     12.000
## 30087   PER     26.000
## 30088   PER     66.000
## 30089   PER     68.500
## 30090   PER     63.700
## 30091   PER      0.708
## 30093   PER    146.000
## 30094   PER     54.100
## 30095   PER    212.000
## 30096   PER     76.100
## 30109   PER   5169.000
## 30110   PER      0.596
## 30141   PER     42.000
## 30154   PER     26.400
## 30155   PER      0.000
## 30156   PER      1.800
## 30157   PER      0.000
## 30158   PER      0.430
## 30160   PER     37.700
## 30161   PER     48.400
## 30162   PER     55.100
## 30167   PER      6.000
## 30168   PER     12.300
## 30169   PER     54.700
## 30172   PHL      0.587
## 30174   PHL      5.600
## 30175   PHL     35.600
## 30176   PHL      2.000
## 30177   PHL      9.600
## 30179   PHL     63.500
## 30180   PHL     46.900
## 30181   PHL     72.700
## 30182   PHL      0.523
## 30183   PHL     10.800
## 30192   PHL      6.700
## 30193   PHL      6.600
## 30194   PHL      6.800
## 30196   PHL     44.700
## 30197   PHL     47.800
## 30228   PHL     47.500
## 30230   PHL      1.260
## 30234   PHL      1.220
## 30237   PHL      0.100
## 30238   PHL      4.000
## 30239   PHL     17.000
## 30240   PHL     65.500
## 30241   PHL     68.300
## 30242   PHL     62.800
## 30243   PHL      0.699
## 30245   PHL    180.000
## 30246   PHL     38.900
## 30247   PHL    281.000
## 30248   PHL     54.900
## 30261   PHL   3888.000
## 30262   PHL      0.553
## 30293   PHL     49.600
## 30306   PHL     62.200
## 30307   PHL      1.200
## 30308   PHL      2.300
## 30309   PHL     -1.400
## 30310   PHL      4.070
## 30311   PHL     45.300
## 30312   PHL     38.700
## 30313   PHL     60.000
## 30318   PHL      3.800
## 30319   PHL      9.400
## 30320   PHL     42.600
## 30324   ROU      0.686
## 30326   ROU     16.300
## 30327   ROU     15.400
## 30328   ROU      2.500
## 30329   ROU      1.800
## 30331   ROU     23.500
## 30332   ROU     53.900
## 30333   ROU     35.700
## 30334   ROU      0.609
## 30335   ROU     11.000
## 30336   ROU     10.900
## 30337   ROU     11.000
## 30344   ROU      9.100
## 30345   ROU      8.500
## 30346   ROU     10.000
## 30348   ROU     65.200
## 30349   ROU     78.400
## 30380   ROU     43.900
## 30382   ROU      0.820
## 30386   ROU      1.030
## 30388   ROU      0.100
## 30389   ROU      2.000
## 30390   ROU      8.000
## 30391   ROU     69.500
## 30392   ROU     73.000
## 30393   ROU     66.200
## 30394   ROU      0.762
## 30395   ROU    117.000
## 30396   ROU     23.200
## 30397   ROU    254.000
## 30398   ROU     29.400
## 30410   ROU  10057.000
## 30411   ROU      0.696
## 30442   ROU     39.100
## 30443   ROU      0.100
## 30444   ROU     -0.100
## 30446   ROU     36.200
## 30447   ROU     28.700
## 30448   ROU     63.200
## 30453   ROU      8.100
## 30454   ROU     24.700
## 30455   ROU     26.800
## 30458   RUS      0.729
## 30460   RUS     16.000
## 30461   RUS     98.500
## 30462   RUS     15.700
## 30463   RUS     11.200
## 30465   RUS    148.000
## 30466   RUS     73.400
## 30467   RUS     34.300
## 30468   RUS      0.664
## 30469   RUS     12.700
## 30478   RUS      9.400
## 30479   RUS      8.600
## 30480   RUS      9.700
## 30482   RUS     75.400
## 30483   RUS     82.200
## 30513   RUS     50.300
## 30515   RUS      0.870
## 30518   RUS      0.860
## 30522   RUS     67.600
## 30523   RUS     73.200
## 30524   RUS     61.800
## 30525   RUS      0.732
## 30526   RUS    119.000
## 30527   RUS     18.400
## 30528   RUS    323.000
## 30529   RUS     21.600
## 30542   RUS  19584.000
## 30543   RUS      0.797
## 30562   RUS      3.200
## 30575   RUS     26.300
## 30579   RUS     10.200
## 30580   RUS     55.500
## 30581   RUS     62.800
## 30586   RUS      5.700
## 30587   RUS     18.400
## 30588   RUS      1.000
## 30592   KNA      0.000
## 30593   KNA     34.500
## 30595   KNA     12.800
## 30596   KNA     12.800
## 30597   KNA     12.800
## 30618   KNA      1.000
## 30619   KNA      1.000
## 30620   KNA     67.600
## 30621   KNA      0.732
## 30623   KNA     25.300
## 30625   KNA     30.900
## 30634   KNA  13802.000
## 30635   KNA      0.744
## 30644   KNA    109.100
## 30645   KNA     10.200
## 30646   KNA      3.700
## 30647   KNA    -10.200
## 30648   KNA      0.710
## 30653   LCA     13.400
## 30654   LCA      0.100
## 30655   LCA      0.000
## 30656   LCA      0.000
## 30658   LCA      0.100
## 30659   LCA     29.600
## 30660   LCA     64.000
## 30662   LCA     12.900
## 30663   LCA     13.400
## 30664   LCA     12.400
## 30704   LCA     42.400
## 30706   LCA      1.330
## 30708   LCA      1.100
## 30711   LCA      2.000
## 30712   LCA      3.000
## 30713   LCA     71.200
## 30714   LCA     73.500
## 30715   LCA     68.900
## 30716   LCA      0.787
## 30717   LCA    150.000
## 30718   LCA     17.500
## 30719   LCA    197.000
## 30720   LCA     21.200
## 30732   LCA   9347.000
## 30733   LCA      0.685
## 30765   LCA     11.200
## 30766   LCA      4.800
## 30767   LCA    -11.200
## 30768   LCA      3.450
## 30770   LCA     28.400
## 30771   LCA     49.800
## 30772   LCA     51.500
## 30777   LCA     17.800
## 30778   LCA     32.200
## 30779   LCA     24.300
## 30783   VCT     11.100
## 30784   VCT      0.100
## 30785   VCT      0.000
## 30786   VCT      0.000
## 30788   VCT      0.100
## 30789   VCT     41.900
## 30790   VCT     65.700
## 30792   VCT     12.100
## 30823   VCT     40.000
## 30825   VCT      1.190
## 30826   VCT      1.110
## 30828   VCT      1.000
## 30829   VCT      1.000
## 30830   VCT     70.300
## 30831   VCT     72.500
## 30832   VCT     68.100
## 30833   VCT      0.774
## 30834   VCT    159.000
## 30835   VCT     19.600
## 30836   VCT    203.000
## 30837   VCT     23.500
## 30848   VCT   5457.000
## 30849   VCT      0.604
## 30861   VCT    105.300
## 30862   VCT      3.500
## 30863   VCT      6.500
## 30864   VCT     -3.400
## 30865   VCT      0.960
## 30866   VCT     13.100
## 30867   VCT     73.300
## 30868   VCT     50.200
## 30873   VCT     19.800
## 30874   VCT     36.000
## 30875   VCT     20.300
## 30877   SAU      0.706
## 30879   SAU      5.200
## 30880   SAU      9.300
## 30881   SAU      0.500
## 30882   SAU      2.700
## 30884   SAU     16.900
## 30885   SAU     77.200
## 30886   SAU     76.600
## 30887   SAU      0.495
## 30888   SAU     10.900
## 30897   SAU      5.800
## 30898   SAU      3.800
## 30899   SAU      6.800
## 30901   SAU     22.900
## 30902   SAU     43.000
## 30930   SAU     10.200
## 30932   SAU      2.910
## 30934   SAU      1.100
## 30936   SAU      0.100
## 30937   SAU      3.000
## 30938   SAU      5.000
## 30939   SAU     69.400
## 30940   SAU     71.400
## 30941   SAU     67.800
## 30942   SAU      0.760
## 30944   SAU    119.000
## 30945   SAU     33.000
## 30946   SAU    168.000
## 30947   SAU     40.800
## 30959   SAU  48040.000
## 30960   SAU      0.933
## 30971   SAU      0.300
## 30981   SAU     74.700
## 30982   SAU      0.100
## 30983   SAU      0.000
## 30984   SAU     -0.500
## 30986   SAU      7.900
## 30987   SAU     67.200
## 30988   SAU     49.100
## 30992   SAU      7.900
## 30993   SAU     29.600
## 30994   SAU      6.300
## 30997   SEN      0.367
## 30999   SEN      6.000
## 31000   SEN      3.900
## 31001   SEN      0.200
## 31002   SEN      1.400
## 31004   SEN      7.800
## 31005   SEN     39.000
## 31006   SEN     93.400
## 31007   SEN      0.198
## 31008   SEN      4.500
## 31009   SEN      3.600
## 31010   SEN      5.400
## 31017   SEN      2.200
## 31018   SEN      1.400
## 31019   SEN      2.000
## 31021   SEN      4.100
## 31022   SEN      3.400
## 31050   SEN     29.400
## 31052   SEN      1.580
## 31055   SEN      1.230
## 31058   SEN      0.200
## 31059   SEN     25.000
## 31060   SEN     46.000
## 31061   SEN     57.400
## 31062   SEN     59.000
## 31063   SEN     55.800
## 31064   SEN      0.576
## 31066   SEN    219.000
## 31067   SEN     71.200
## 31068   SEN    279.000
## 31069   SEN    138.800
## 31082   SEN   1767.000
## 31083   SEN      0.434
## 31114   SEN     87.800
## 31127   SEN     54.000
## 31128   SEN     -0.100
## 31129   SEN     11.600
## 31130   SEN     -0.300
## 31131   SEN      2.890
## 31133   SEN     46.600
## 31134   SEN     38.200
## 31135   SEN     50.600
## 31140   SEN      5.700
## 31141   SEN      8.700
## 31142   SEN     51.200
## 31147   SYC     11.600
## 31148   SYC      0.000
## 31149   SYC      0.000
## 31150   SYC      0.000
## 31152   SYC      0.100
## 31153   SYC     49.300
## 31154   SYC     59.500
## 31156   SYC     11.500
## 31157   SYC     11.500
## 31158   SYC     11.600
## 31187   SYC      2.000
## 31188   SYC     11.000
## 31189   SYC     70.800
## 31190   SYC     75.700
## 31191   SYC     66.300
## 31192   SYC      0.781
## 31193   SYC    115.000
## 31194   SYC     13.900
## 31195   SYC    282.000
## 31196   SYC     16.200
## 31208   SYC  14977.000
## 31209   SYC      0.757
## 31231   SYC     59.000
## 31232   SYC      5.200
## 31233   SYC      6.300
## 31234   SYC     -4.800
## 31235   SYC      1.960
## 31238   SLE      0.267
## 31240   SLE      5.600
## 31241   SLE      2.300
## 31242   SLE      0.100
## 31243   SLE      0.800
## 31245   SLE      4.300
## 31246   SLE     33.500
## 31247   SLE     86.500
## 31248   SLE      0.184
## 31249   SLE      4.600
## 31258   SLE      1.700
## 31259   SLE      1.000
## 31260   SLE      2.400
## 31262   SLE      4.200
## 31263   SLE     12.500
## 31290   SLE     51.300
## 31292   SLE      0.480
## 31296   SLE      0.690
## 31299   SLE      0.400
## 31302   SLE     36.700
## 31303   SLE     37.300
## 31304   SLE     36.200
## 31305   SLE      0.258
## 31307   SLE    529.000
## 31308   SLE    155.100
## 31309   SLE    558.000
## 31310   SLE    261.200
## 31323   SLE   1434.000
## 31324   SLE      0.402
## 31354   SLE     75.700
## 31366   SLE     60.200
## 31367   SLE      1.000
## 31368   SLE     14.400
## 31369   SLE     -1.000
## 31370   SLE      0.000
## 31372   SLE     63.400
## 31373   SLE     30.700
## 31374   SLE     62.600
## 31379   SLE      3.400
## 31380   SLE      5.000
## 31381   SLE     90.100
## 31384   SGP      0.729
## 31386   SGP      7.900
## 31387   SGP      2.300
## 31388   SGP      0.200
## 31389   SGP      0.200
## 31391   SGP      3.100
## 31392   SGP    100.000
## 31393   SGP     29.400
## 31394   SGP      0.503
## 31395   SGP     10.800
## 31402   SGP      6.100
## 31403   SGP      5.700
## 31404   SGP      6.700
## 31406   SGP     32.400
## 31407   SGP     38.200
## 31434   SGP     38.000
## 31436   SGP      1.000
## 31439   SGP      1.090
## 31441   SGP      3.000
## 31442   SGP      8.000
## 31443   SGP     76.400
## 31444   SGP     78.600
## 31445   SGP     74.300
## 31446   SGP      0.868
## 31447   SGP     80.000
## 31448   SGP      5.500
## 31449   SGP    126.000
## 31450   SGP      6.900
## 31462   SGP  35069.000
## 31463   SGP      0.885
## 31479   SGP      5.000
## 31488   SGP    323.800
## 31489   SGP     10.700
## 31490   SGP      0.000
## 31491   SGP     -7.600
## 31492   SGP      0.300
## 31493   SGP     64.600
## 31494   SGP     62.200
## 31499   SGP      2.200
## 31500   SGP      3.800
## 31501   SGP      8.300
## 31506   SLB      5.300
## 31507   SLB      0.200
## 31508   SLB      0.000
## 31509   SLB      0.100
## 31511   SLB      0.300
## 31512   SLB     13.900
## 31513   SLB     86.400
## 31515   SLB      6.100
## 31516   SLB      5.500
## 31517   SLB      6.800
## 31545   SLB     38.200
## 31547   SLB      1.140
## 31551   SLB      1.070
## 31554   SLB      9.000
## 31555   SLB     24.000
## 31556   SLB     57.200
## 31557   SLB     57.600
## 31558   SLB     56.800
## 31559   SLB      0.572
## 31561   SLB    274.000
## 31562   SLB     30.400
## 31563   SLB    303.000
## 31564   SLB     37.200
## 31577   SLB   1617.000
## 31578   SLB      0.420
## 31595   SLB     48.700
## 31604   SLB    109.900
## 31605   SLB      4.500
## 31606   SLB     15.900
## 31607   SLB     -4.500
## 31610   SLB     72.300
## 31611   SLB     19.800
## 31612   SLB     69.600
## 31617   SLB      2.300
## 31618   SLB      4.600
## 31619   SLB     63.000
## 31621   ZAF      0.626
## 31623   ZAF      6.100
## 31624   ZAF     22.200
## 31625   ZAF      1.300
## 31626   ZAF      5.200
## 31628   ZAF     38.400
## 31629   ZAF     52.600
## 31630   ZAF     66.800
## 31631   ZAF      0.552
## 31632   ZAF     11.900
## 31633   ZAF     12.100
## 31634   ZAF     11.800
## 31641   ZAF      6.600
## 31642   ZAF      5.500
## 31643   ZAF      6.700
## 31645   ZAF     40.400
## 31646   ZAF     42.400
## 31676   ZAF     39.500
## 31678   ZAF      1.020
## 31681   ZAF      1.030
## 31684   ZAF      1.100
## 31685   ZAF      7.000
## 31686   ZAF     15.000
## 31687   ZAF     62.200
## 31688   ZAF     66.200
## 31689   ZAF     58.600
## 31690   ZAF      0.650
## 31692   ZAF    224.000
## 31693   ZAF     43.500
## 31694   ZAF    349.000
## 31695   ZAF     55.900
## 31708   ZAF   9170.000
## 31709   ZAF      0.683
## 31740   ZAF     25.900
## 31753   ZAF     38.100
## 31754   ZAF      0.200
## 31756   ZAF     -0.200
## 31757   ZAF      0.100
## 31758   ZAF     16.700
## 31759   ZAF     57.600
## 31760   ZAF     37.800
## 31765   ZAF     29.400
## 31766   ZAF     52.300
## 31767   ZAF     11.200
## 31770   LKA      0.630
## 31772   LKA      8.900
## 31773   LKA     11.000
## 31774   LKA      1.000
## 31775   LKA      1.700
## 31777   LKA     17.500
## 31778   LKA     18.500
## 31779   LKA     50.200
## 31780   LKA      0.600
## 31781   LKA     11.400
## 31782   LKA     11.500
## 31783   LKA     11.300
## 31790   LKA      8.500
## 31791   LKA      7.600
## 31792   LKA      8.500
## 31794   LKA     51.200
## 31795   LKA     56.300
## 31825   LKA     30.700
## 31827   LKA      2.250
## 31830   LKA      1.250
## 31833   LKA      0.100
## 31834   LKA      5.000
## 31835   LKA     21.000
## 31836   LKA     69.600
## 31837   LKA     73.300
## 31838   LKA     66.400
## 31839   LKA      0.764
## 31841   LKA    119.000
## 31842   LKA     18.000
## 31843   LKA    255.000
## 31844   LKA     21.000
## 31857   LKA   3703.000
## 31858   LKA      0.546
## 31876   LKA     38.300
## 31889   LKA     67.600
## 31890   LKA      0.500
## 31891   LKA     10.000
## 31892   LKA     -0.800
## 31893   LKA      4.910
## 31894   LKA     42.800
## 31895   LKA     30.600
## 31896   LKA     51.200
## 31901   LKA     14.700
## 31902   LKA     41.900
## 31903   LKA     38.600
## 31906   SDN      0.336
## 31908   SDN      5.700
## 31909   SDN     10.800
## 31910   SDN      0.600
## 31911   SDN      3.600
## 31913   SDN     20.900
## 31914   SDN     29.800
## 31915   SDN     87.300
## 31916   SDN      0.167
## 31917   SDN      4.100
## 31926   SDN      1.600
## 31927   SDN      0.900
## 31928   SDN      2.300
## 31930   SDN      4.400
## 31931   SDN     11.200
## 31961   SDN     27.600
## 31963   SDN      1.870
## 31966   SDN      1.130
## 31969   SDN      0.100
## 31970   SDN     17.000
## 31971   SDN     43.000
## 31972   SDN     55.700
## 31973   SDN     57.200
## 31974   SDN     54.200
## 31975   SDN      0.549
## 31977   SDN    270.000
## 31978   SDN     80.800
## 31979   SDN    325.000
## 31980   SDN    129.200
## 31993   SDN   1567.000
## 31994   SDN      0.416
## 32025   SDN     69.500
## 32035   SDN     15.100
## 32036   SDN      0.000
## 32037   SDN      8.900
## 32038   SDN      0.000
## 32039   SDN      0.400
## 32041   SDN     61.800
## 32042   SDN     20.100
## 32043   SDN     43.100
## 32048   SDN     14.100
## 32049   SDN     28.600
## 32050   SDN     52.400
## 32054   SUR      7.800
## 32055   SUR      0.300
## 32056   SUR      0.000
## 32057   SUR      0.100
## 32059   SUR      0.400
## 32060   SUR     65.800
## 32061   SUR     55.000
## 32063   SUR     11.800
## 32064   SUR     12.700
## 32065   SUR     10.900
## 32104   SUR     30.400
## 32106   SUR      1.680
## 32108   SUR      1.120
## 32111   SUR      0.300
## 32112   SUR      9.000
## 32113   SUR     16.000
## 32114   SUR     67.500
## 32115   SUR     71.000
## 32116   SUR     64.300
## 32117   SUR      0.730
## 32119   SUR    149.000
## 32120   SUR     38.800
## 32121   SUR    253.000
## 32122   SUR     45.100
## 32135   SUR  10370.000
## 32136   SUR      0.701
## 32161   SUR     22.300
## 32170   SUR     80.000
## 32171   SUR      4.100
## 32172   SUR     10.000
## 32174   SUR      0.910
## 32176   SUR      4.000
## 32177   SUR     77.300
## 32178   SUR     38.700
## 32182   SUR     21.600
## 32183   SUR     53.000
## 32184   SUR     12.500
## 32186   SWE      0.818
## 32188   SWE     27.800
## 32189   SWE      5.500
## 32190   SWE      1.500
## 32191   SWE      0.600
## 32193   SWE      8.600
## 32194   SWE     83.200
## 32195   SWE     28.300
## 32196   SWE      0.715
## 32197   SWE     13.000
## 32198   SWE     13.300
## 32199   SWE     12.700
## 32205   SWE     10.600
## 32206   SWE     10.500
## 32207   SWE     10.600
## 32209   SWE     68.400
## 32210   SWE     70.200
## 32239   SWE     48.500
## 32241   SWE      0.860
## 32245   SWE      0.940
## 32247   SWE      0.100
## 32248   SWE      1.000
## 32249   SWE      4.000
## 32250   SWE     77.800
## 32251   SWE     80.600
## 32252   SWE     75.100
## 32253   SWE      0.890
## 32254   SWE     65.000
## 32255   SWE      5.500
## 32256   SWE    115.000
## 32257   SWE      6.600
## 32270   SWE  29412.000
## 32271   SWE      0.859
## 32301   SWE     52.000
## 32302   SWE      2.300
## 32303   SWE     -2.100
## 32304   SWE      0.080
## 32305   SWE      3.200
## 32306   SWE     72.100
## 32307   SWE     64.800
## 32312   SWE      3.200
## 32313   SWE      7.900
## 32314   SWE      8.800
## 32317   CHE      0.834
## 32319   CHE     21.400
## 32320   CHE      4.600
## 32321   CHE      1.000
## 32322   CHE      0.400
## 32324   CHE      6.700
## 32325   CHE     73.900
## 32326   CHE     25.000
## 32327   CHE      0.701
## 32328   CHE     13.600
## 32329   CHE     13.000
## 32330   CHE     14.100
## 32336   CHE      9.700
## 32337   CHE      9.600
## 32338   CHE     11.000
## 32340   CHE     57.400
## 32341   CHE     70.200
## 32370   CHE     42.800
## 32372   CHE      2.080
## 32374   CHE      1.070
## 32376   CHE      7.000
## 32377   CHE     17.000
## 32378   CHE     77.700
## 32379   CHE     81.100
## 32380   CHE     74.300
## 32381   CHE      0.888
## 32382   CHE     62.000
## 32383   CHE      6.300
## 32384   CHE    130.000
## 32385   CHE      7.800
## 32398   CHE  48015.000
## 32399   CHE      0.933
## 32428   CHE     79.200
## 32429   CHE      1.100
## 32430   CHE      5.300
## 32431   CHE      0.380
## 32432   CHE      4.300
## 32433   CHE     67.100
## 32434   CHE     67.200
## 32439   CHE      1.800
## 32440   CHE      3.200
## 32441   CHE     11.000
## 32444   SYR      0.562
## 32446   SYR      6.100
## 32447   SYR      6.500
## 32448   SYR      0.400
## 32449   SYR      2.200
## 32451   SYR     12.800
## 32452   SYR     49.100
## 32453   SYR     92.300
## 32454   SYR      0.419
## 32455   SYR     10.200
## 32456   SYR      9.200
## 32457   SYR     11.100
## 32463   SYR      4.100
## 32464   SYR      3.000
## 32465   SYR      4.900
## 32467   SYR     19.400
## 32468   SYR     29.000
## 32496   SYR     12.100
## 32498   SYR      4.120
## 32501   SYR      1.580
## 32504   SYR      5.000
## 32505   SYR     16.000
## 32506   SYR     70.900
## 32507   SYR     72.500
## 32508   SYR     69.300
## 32509   SYR      0.783
## 32510   SYR    111.000
## 32511   SYR     29.200
## 32512   SYR    163.000
## 32513   SYR     35.500
## 32524   SYR   3589.000
## 32525   SYR      0.541
## 32551   SYR     51.800
## 32558   SYR     56.500
## 32559   SYR      0.400
## 32560   SYR      4.300
## 32561   SYR      0.000
## 32562   SYR      2.700
## 32563   SYR     28.200
## 32564   SYR     46.800
## 32565   SYR     50.100
## 32570   SYR      6.800
## 32571   SYR     12.600
## 32572   SYR     46.600
## 32574   TJK      0.618
## 32576   TJK      7.400
## 32577   TJK      2.800
## 32578   TJK      0.200
## 32579   TJK      1.000
## 32581   TJK      5.400
## 32582   TJK     31.100
## 32583   TJK     84.800
## 32584   TJK      0.658
## 32585   TJK     12.000
## 32594   TJK      9.800
## 32595   TJK      8.900
## 32596   TJK     10.600
## 32598   TJK     73.400
## 32599   TJK     85.000
## 32627   TJK     23.400
## 32629   TJK      1.040
## 32633   TJK      1.010
## 32636   TJK      0.100
## 32639   TJK     62.900
## 32640   TJK     66.600
## 32641   TJK     59.300
## 32642   TJK      0.660
## 32644   TJK    144.000
## 32645   TJK     86.100
## 32646   TJK    263.000
## 32647   TJK    110.100
## 32660   TJK   3662.000
## 32661   TJK      0.544
## 32692   TJK     26.200
## 32705   TJK     65.500
## 32710   TJK     45.600
## 32711   TJK     31.300
## 32712   TJK     53.100
## 32717   TJK      7.600
## 32718   TJK     14.800
## 32719   TJK     36.000
## 32722   THA      0.583
## 32724   THA      7.100
## 32725   THA     37.700
## 32726   THA      2.700
## 32727   THA      5.300
## 32729   THA     57.300
## 32730   THA     29.600
## 32731   THA     44.900
## 32732   THA      0.398
## 32733   THA      8.700
## 32734   THA      8.700
## 32735   THA      8.700
## 32742   THA      4.700
## 32743   THA      3.700
## 32744   THA      4.400
## 32746   THA     12.000
## 32747   THA     18.500
## 32781   THA     44.600
## 32783   THA      1.000
## 32786   THA      1.000
## 32789   THA      1.000
## 32790   THA      4.000
## 32791   THA     21.000
## 32792   THA     70.300
## 32793   THA     73.600
## 32794   THA     67.100
## 32795   THA      0.774
## 32797   THA    134.000
## 32798   THA     29.400
## 32799   THA    232.000
## 32800   THA     35.800
## 32813   THA   7020.000
## 32814   THA      0.642
## 32846   THA     27.400
## 32859   THA     78.500
## 32860   THA      2.100
## 32861   THA      0.700
## 32862   THA     -1.800
## 32863   THA      1.040
## 32864   THA     60.300
## 32865   THA     21.800
## 32866   THA     73.400
## 32871   THA      2.700
## 32872   THA      7.100
## 32873   THA     67.100
## 32878   MKD     11.300
## 32879   MKD      1.300
## 32880   MKD      0.100
## 32881   MKD      0.200
## 32883   MKD      2.000
## 32884   MKD     58.200
## 32885   MKD     39.100
## 32887   MKD     10.400
## 32888   MKD     10.400
## 32889   MKD     10.400
## 32932   MKD     40.200
## 32934   MKD      0.960
## 32937   MKD      0.970
## 32940   MKD      0.100
## 32943   MKD     71.300
## 32944   MKD     73.400
## 32945   MKD     69.400
## 32946   MKD      0.790
## 32947   MKD    100.000
## 32948   MKD     31.600
## 32949   MKD    162.000
## 32950   MKD     35.100
## 32963   MKD   8999.000
## 32964   MKD      0.680
## 32996   MKD      3.800
## 33007   MKD     48.800
## 33013   MKD     19.000
## 33014   MKD     36.300
## 33015   MKD     35.400
## 33020   MKD     36.000
## 33021   MKD     61.600
## 33022   MKD     19.500
## 33025   TGO      0.408
## 33027   TGO      5.900
## 33028   TGO      2.000
## 33029   TGO      0.100
## 33030   TGO      0.700
## 33032   TGO      3.900
## 33033   TGO     29.000
## 33034   TGO     91.000
## 33035   TGO      0.322
## 33036   TGO      7.900
## 33037   TGO      5.600
## 33038   TGO     10.100
## 33045   TGO      3.100
## 33046   TGO      1.700
## 33047   TGO      4.600
## 33049   TGO      9.800
## 33050   TGO     30.700
## 33077   TGO     54.100
## 33079   TGO      0.730
## 33083   TGO      0.820
## 33086   TGO      1.600
## 33087   TGO     13.000
## 33088   TGO     31.000
## 33089   TGO     55.900
## 33090   TGO     57.000
## 33091   TGO     54.800
## 33092   TGO      0.552
## 33094   TGO    257.000
## 33095   TGO     88.200
## 33096   TGO    291.000
## 33097   TGO    142.700
## 33110   TGO   1252.000
## 33111   TGO      0.382
## 33142   TGO     73.700
## 33154   TGO     75.000
## 33155   TGO      0.400
## 33156   TGO     12.700
## 33157   TGO     -0.600
## 33158   TGO      1.810
## 33160   TGO     41.700
## 33161   TGO     39.600
## 33162   TGO     80.900
## 33167   TGO      1.900
## 33168   TGO      2.800
## 33169   TGO     82.400
## 33172   TON      0.654
## 33174   TON      8.300
## 33175   TON      0.100
## 33176   TON      0.000
## 33177   TON      0.000
## 33179   TON      0.100
## 33180   TON     22.700
## 33181   TON     70.200
## 33182   TON      0.662
## 33183   TON     13.700
## 33192   TON      8.500
## 33193   TON      8.300
## 33194   TON      8.700
## 33196   TON     62.200
## 33197   TON     67.600
## 33222   TON     52.600
## 33224   TON      1.070
## 33228   TON      1.030
## 33231   TON      4.000
## 33232   TON     10.000
## 33233   TON     69.700
## 33234   TON     71.200
## 33235   TON     68.200
## 33236   TON      0.765
## 33237   TON    153.000
## 33238   TON     17.900
## 33239   TON    192.000
## 33240   TON     21.000
## 33253   TON   3877.000
## 33254   TON      0.553
## 33274   TON     83.500
## 33275   TON      0.300
## 33276   TON     14.300
## 33277   TON      1.500
## 33278   TON     14.190
## 33279   TON     41.600
## 33280   TON     32.800
## 33281   TON     56.100
## 33286   TON      1.400
## 33287   TON      3.100
## 33288   TON     58.900
## 33290   TTO      0.673
## 33292   TTO      9.600
## 33293   TTO      0.800
## 33294   TTO      0.100
## 33295   TTO      0.100
## 33297   TTO      1.200
## 33298   TTO     54.300
## 33299   TTO     54.000
## 33300   TTO      0.575
## 33301   TTO     11.000
## 33302   TTO     11.100
## 33303   TTO     11.000
## 33310   TTO      8.100
## 33311   TTO      7.900
## 33312   TTO      8.200
## 33314   TTO     38.400
## 33315   TTO     38.000
## 33347   TTO     40.400
## 33349   TTO      1.450
## 33354   TTO      1.170
## 33357   TTO      0.200
## 33358   TTO      6.000
## 33359   TTO      7.000
## 33360   TTO     68.100
## 33361   TTO     71.100
## 33362   TTO     65.300
## 33363   TTO      0.740
## 33364   TTO    162.000
## 33365   TTO     26.000
## 33366   TTO    242.000
## 33367   TTO     29.400
## 33379   TTO  11516.000
## 33380   TTO      0.717
## 33406   TTO      7.500
## 33414   TTO      3.200
## 33415   TTO      0.000
## 33416   TTO     -3.200
## 33417   TTO      0.100
## 33418   TTO     11.700
## 33419   TTO     59.500
## 33420   TTO     45.000
## 33425   TTO     18.500
## 33426   TTO     33.500
## 33427   TTO     20.100
## 33430   TUN      0.575
## 33432   TUN      8.500
## 33433   TUN      4.900
## 33434   TUN      0.400
## 33435   TUN      1.100
## 33437   TUN      8.400
## 33438   TUN     58.800
## 33439   TUN     62.900
## 33440   TUN      0.413
## 33441   TUN     10.600
## 33442   TUN      9.600
## 33443   TUN     11.500
## 33450   TUN      3.600
## 33451   TUN      2.400
## 33452   TUN      4.800
## 33454   TUN     12.800
## 33455   TUN     28.000
## 33488   TUN     22.900
## 33490   TUN      1.160
## 33493   TUN      0.950
## 33496   TUN      0.100
## 33497   TUN      3.000
## 33498   TUN      6.000
## 33499   TUN     69.400
## 33500   TUN     71.700
## 33501   TUN     67.300
## 33502   TUN      0.760
## 33503   TUN    129.000
## 33504   TUN     42.600
## 33505   TUN    179.000
## 33506   TUN     54.600
## 33519   TUN   5512.000
## 33520   TUN      0.606
## 33551   TUN     24.900
## 33564   TUN     85.700
## 33565   TUN      1.000
## 33566   TUN      2.800
## 33567   TUN     -1.200
## 33568   TUN      4.010
## 33570   TUN     26.800
## 33571   TUN     30.100
## 33572   TUN     40.800
## 33577   TUN     16.600
## 33578   TUN     31.900
## 33579   TUN     23.700
## 33581   TUR      0.583
## 33583   TUR      7.800
## 33584   TUR     32.900
## 33585   TUR      2.600
## 33586   TUR      6.500
## 33588   TUR     54.800
## 33589   TUR     60.000
## 33590   TUR     58.700
## 33591   TUR      0.404
## 33592   TUR      9.100
## 33593   TUR      7.900
## 33594   TUR     10.400
## 33601   TUR      4.600
## 33602   TUR      3.400
## 33603   TUR      5.900
## 33605   TUR     12.600
## 33606   TUR     27.700
## 33639   TUR     13.800
## 33641   TUR      0.800
## 33645   TUR      0.890
## 33648   TUR     11.000
## 33649   TUR     27.000
## 33650   TUR     64.800
## 33651   TUR     68.600
## 33652   TUR     61.200
## 33653   TUR      0.689
## 33655   TUR    126.000
## 33656   TUR     52.900
## 33657   TUR    227.000
## 33658   TUR     70.000
## 33671   TUR  11099.000
## 33672   TUR      0.711
## 33691   TUR     11.300
## 33704   TUR     30.500
## 33705   TUR      0.500
## 33706   TUR      1.100
## 33707   TUR     -0.900
## 33708   TUR      1.880
## 33709   TUR     47.800
## 33710   TUR     32.000
## 33711   TUR     51.800
## 33716   TUR      8.200
## 33717   TUR     15.400
## 33718   TUR     57.900
## 33723   TKM      6.900
## 33724   TKM      2.100
## 33725   TKM      0.100
## 33726   TKM      0.600
## 33728   TKM      3.800
## 33729   TKM     45.000
## 33730   TKM     73.100
## 33761   TKM     38.400
## 33763   TKM      1.070
## 33766   TKM      1.060
## 33771   TKM     62.800
## 33772   TKM     66.600
## 33773   TKM     59.000
## 33774   TKM      0.658
## 33775   TKM    163.000
## 33776   TKM     69.000
## 33777   TKM    297.000
## 33778   TKM     85.500
## 33790   TKM   7770.000
## 33791   TKM      0.658
## 33817   TKM     36.100
## 33824   TKM     66.100
## 33829   TKM     22.800
## 33830   TKM     44.000
## 33831   TKM     60.300
## 33835   TKM      2.800
## 33836   TKM      5.200
## 33837   TKM     23.000
## 33839   UGA      0.311
## 33841   UGA      5.500
## 33842   UGA      8.800
## 33843   UGA      0.500
## 33844   UGA      3.600
## 33846   UGA     18.000
## 33847   UGA     11.500
## 33848   UGA     98.700
## 33849   UGA      0.254
## 33850   UGA      5.700
## 33851   UGA      4.700
## 33852   UGA      6.100
## 33859   UGA      2.900
## 33860   UGA      2.000
## 33861   UGA      4.000
## 33863   UGA      6.400
## 33864   UGA     16.200
## 33891   UGA     32.400
## 33893   UGA      0.460
## 33897   UGA      0.730
## 33900   UGA     14.600
## 33901   UGA     25.000
## 33902   UGA     46.000
## 33903   UGA     45.100
## 33904   UGA     48.100
## 33905   UGA     42.300
## 33906   UGA      0.386
## 33908   UGA    452.000
## 33909   UGA    102.400
## 33910   UGA    602.000
## 33911   UGA    171.800
## 33924   UGA    771.000
## 33925   UGA      0.309
## 33956   UGA     86.800
## 33968   UGA     29.400
## 33969   UGA      0.000
## 33970   UGA     20.300
## 33971   UGA      0.000
## 33974   UGA     75.400
## 33975   UGA     17.500
## 33976   UGA     69.200
## 33981   UGA      0.900
## 33982   UGA      1.900
## 33983   UGA     91.100
## 33986   UKR      0.701
## 33988   UKR     18.500
## 33989   UKR     34.300
## 33990   UKR      6.300
## 33991   UKR      3.300
## 33993   UKR     51.500
## 33994   UKR     66.800
## 33995   UKR     31.600
## 33996   UKR      0.654
## 33997   UKR     12.400
## 33998   UKR     12.900
## 33999   UKR     11.900
## 34006   UKR      9.300
## 34007   UKR      8.900
## 34008   UKR      9.800
## 34010   UKR     74.000
## 34011   UKR     84.900
## 34041   UKR     49.400
## 34043   UKR      0.830
## 34048   UKR      0.990
## 34050   UKR      0.100
## 34053   UKR     69.500
## 34054   UKR     74.000
## 34055   UKR     64.600
## 34056   UKR      0.761
## 34057   UKR    117.000
## 34058   UKR     16.600
## 34059   UKR    307.000
## 34060   UKR     19.400
## 34073   UKR   9793.000
## 34074   UKR      0.692
## 34106   UKR      3.100
## 34119   UKR     50.100
## 34125   UKR     16.500
## 34126   UKR     44.200
## 34127   UKR     56.500
## 34132   UKR      5.800
## 34133   UKR     12.100
## 34134   UKR      8.500
## 34137   GBR      0.788
## 34139   GBR     24.400
## 34140   GBR     37.300
## 34141   GBR      9.100
## 34142   GBR      3.800
## 34144   GBR     57.300
## 34145   GBR     78.100
## 34146   GBR     29.200
## 34147   GBR      0.675
## 34148   GBR     13.900
## 34149   GBR     14.000
## 34150   GBR     13.900
## 34156   GBR      8.600
## 34157   GBR      8.900
## 34158   GBR      8.900
## 34160   GBR     68.100
## 34161   GBR     54.600
## 34189   GBR     44.400
## 34191   GBR      0.790
## 34195   GBR      0.870
## 34197   GBR      4.000
## 34198   GBR     10.000
## 34199   GBR     75.900
## 34200   GBR     78.600
## 34201   GBR     73.100
## 34202   GBR      0.860
## 34203   GBR     76.000
## 34204   GBR      7.400
## 34205   GBR    127.000
## 34206   GBR      8.700
## 34219   GBR  26316.000
## 34220   GBR      0.842
## 34250   GBR     44.200
## 34251   GBR      1.400
## 34252   GBR      3.400
## 34253   GBR      0.180
## 34254   GBR      2.300
## 34255   GBR     66.500
## 34256   GBR     56.900
## 34261   GBR      8.600
## 34262   GBR     13.900
## 34263   GBR      9.900
## 34267   URY      0.697
## 34269   URY     18.900
## 34270   URY      2.000
## 34271   URY      0.400
## 34272   URY      0.300
## 34274   URY      3.100
## 34275   URY     89.300
## 34276   URY     41.500
## 34277   URY      0.601
## 34278   URY     13.000
## 34287   URY      7.200
## 34288   URY      7.200
## 34289   URY      7.200
## 34291   URY     40.400
## 34292   URY     35.900
## 34326   URY     40.000
## 34328   URY      1.660
## 34330   URY      1.150
## 34333   URY      0.100
## 34334   URY      2.000
## 34335   URY      4.000
## 34336   URY     72.800
## 34337   URY     76.600
## 34338   URY     69.000
## 34339   URY      0.812
## 34340   URY     98.000
## 34341   URY     20.000
## 34342   URY    195.000
## 34343   URY     22.800
## 34356   URY   9892.000
## 34357   URY      0.694
## 34375   URY      4.900
## 34386   URY     38.600
## 34387   URY      0.300
## 34388   URY      0.400
## 34389   URY     -0.400
## 34391   URY      4.700
## 34392   URY     65.100
## 34393   URY     54.900
## 34398   URY      9.000
## 34399   URY     24.700
## 34400   URY     26.800
## 34405   UZB      7.600
## 34406   UZB     11.500
## 34407   UZB      0.900
## 34408   UZB      3.300
## 34410   UZB     21.000
## 34411   UZB     41.800
## 34412   UZB     73.900
## 34414   UZB     11.100
## 34455   UZB     36.900
## 34457   UZB      1.060
## 34459   UZB      1.040
## 34464   UZB     66.400
## 34465   UZB     69.400
## 34466   UZB     63.300
## 34467   UZB      0.714
## 34469   UZB    143.000
## 34470   UZB     59.200
## 34471   UZB    245.000
## 34472   UZB     72.000
## 34484   UZB   2972.000
## 34485   UZB      0.512
## 34512   UZB     46.300
## 34519   UZB     74.400
## 34523   UZB     34.700
## 34524   UZB     28.100
## 34525   UZB     58.100
## 34530   UZB      6.600
## 34531   UZB     11.900
## 34532   UZB     29.800
## 34536   VUT      6.800
## 34537   VUT      0.100
## 34538   VUT      0.000
## 34539   VUT      0.000
## 34541   VUT      0.200
## 34542   VUT     19.000
## 34543   VUT     82.500
## 34576   VUT     40.900
## 34578   VUT      1.290
## 34582   VUT      1.050
## 34585   VUT      6.000
## 34586   VUT     37.000
## 34587   VUT     63.500
## 34588   VUT     65.100
## 34589   VUT     62.200
## 34590   VUT      0.670
## 34592   VUT    201.000
## 34593   VUT     28.100
## 34594   VUT    246.000
## 34595   VUT     34.100
## 34608   VUT   2462.000
## 34609   VUT      0.484
## 34646   VUT    100.400
## 34647   VUT     13.500
## 34648   VUT     30.300
## 34649   VUT    -13.500
## 34650   VUT      4.800
## 34651   VUT     62.300
## 34652   VUT     32.600
## 34653   VUT     66.500
## 34658   VUT      5.500
## 34659   VUT     10.600
## 34660   VUT     75.800
## 34662   VEN      0.644
## 34664   VEN      6.400
## 34665   VEN     11.900
## 34666   VEN      0.800
## 34667   VEN      2.800
## 34669   VEN     20.300
## 34670   VEN     84.700
## 34671   VEN     64.400
## 34672   VEN      0.457
## 34673   VEN     10.700
## 34682   VEN      4.800
## 34683   VEN      4.700
## 34684   VEN      5.000
## 34686   VEN     24.700
## 34687   VEN     26.000
## 34713   VEN     38.000
## 34715   VEN      1.260
## 34717   VEN      1.150
## 34720   VEN      0.100
## 34721   VEN     16.000
## 34722   VEN     37.000
## 34723   VEN     70.000
## 34724   VEN     72.900
## 34725   VEN     67.300
## 34726   VEN      0.769
## 34728   VEN    127.000
## 34729   VEN     23.900
## 34730   VEN    216.000
## 34731   VEN     28.600
## 34744   VEN  15502.000
## 34745   VEN      0.762
## 34763   VEN     12.500
## 34774   VEN     57.600
## 34775   VEN      3.700
## 34776   VEN      0.100
## 34777   VEN     -4.000
## 34778   VEN      0.000
## 34779   VEN     12.600
## 34780   VEN     61.300
## 34781   VEN     56.000
## 34786   VEN      9.500
## 34787   VEN     18.100
## 34788   VEN     32.500
## 34791   YEM      0.403
## 34793   YEM      5.600
## 34794   YEM      5.800
## 34795   YEM      0.300
## 34796   YEM      2.700
## 34798   YEM     12.700
## 34799   YEM     21.500
## 34800   YEM    112.900
## 34801   YEM      0.222
## 34802   YEM      7.500
## 34810   YEM      0.400
## 34811   YEM      0.100
## 34812   YEM      0.600
## 34814   YEM      0.500
## 34815   YEM      3.000
## 34842   YEM      5.500
## 34844   YEM      0.440
## 34847   YEM      0.880
## 34850   YEM      0.100
## 34851   YEM     39.000
## 34852   YEM     47.000
## 34853   YEM     58.200
## 34854   YEM     59.600
## 34855   YEM     56.600
## 34856   YEM      0.588
## 34858   YEM    244.000
## 34859   YEM     86.100
## 34860   YEM    297.000
## 34861   YEM    122.300
## 34874   YEM   2759.000
## 34875   YEM      0.501
## 34906   YEM     54.100
## 34918   YEM     41.300
## 34919   YEM      4.800
## 34920   YEM      5.200
## 34922   YEM     16.830
## 34923   YEM     54.900
## 34924   YEM     34.300
## 34925   YEM     40.700
## 34930   YEM      8.600
## 34931   YEM     17.300
## 34932   YEM     50.900
## 34935   ZMB      0.402
## 34937   ZMB      5.300
## 34938   ZMB      4.100
## 34939   ZMB      0.200
## 34940   ZMB      1.500
## 34942   ZMB      8.200
## 34943   ZMB     39.000
## 34944   ZMB     93.300
## 34945   ZMB      0.380
## 34946   ZMB      7.700
## 34954   ZMB      5.000
## 34955   ZMB      3.700
## 34956   ZMB      6.400
## 34958   ZMB     15.000
## 34959   ZMB     32.500
## 34987   ZMB     35.000
## 34989   ZMB      1.120
## 34993   ZMB      1.030
## 34996   ZMB      9.800
## 34997   ZMB      6.000
## 34998   ZMB     20.000
## 34999   ZMB     44.400
## 35000   ZMB     46.800
## 35001   ZMB     42.200
## 35002   ZMB      0.376
## 35004   ZMB    498.000
## 35005   ZMB    110.100
## 35006   ZMB    609.000
## 35007   ZMB    182.800
## 35020   ZMB   2021.000
## 35021   ZMB      0.454
## 35051   ZMB     65.400
## 35064   ZMB      1.000
## 35065   ZMB     29.300
## 35066   ZMB     -1.000
## 35068   ZMB     66.300
## 35069   ZMB     23.800
## 35070   ZMB     64.600
## 35075   ZMB     18.900
## 35076   ZMB     36.100
## 35077   ZMB     82.500
## 35080   ZWE      0.494
## 35082   ZWE      5.900
## 35083   ZWE      5.300
## 35084   ZWE      0.300
## 35085   ZWE      1.700
## 35087   ZWE     10.400
## 35088   ZWE     29.700
## 35089   ZWE     90.700
## 35090   ZWE      0.441
## 35091   ZWE     10.200
## 35092   ZWE      9.700
## 35093   ZWE     10.700
## 35100   ZWE      4.700
## 35101   ZWE      3.800
## 35102   ZWE      5.800
## 35104   ZWE     19.000
## 35105   ZWE     36.100
## 35134   ZWE     34.900
## 35136   ZWE      0.630
## 35140   ZWE      0.830
## 35143   ZWE     17.200
## 35144   ZWE      5.000
## 35145   ZWE     13.000
## 35146   ZWE     56.700
## 35147   ZWE     59.900
## 35148   ZWE     53.700
## 35149   ZWE      0.565
## 35151   ZWE    356.000
## 35152   ZWE     51.300
## 35153   ZWE    491.000
## 35154   ZWE     77.400
## 35167   ZWE   2451.000
## 35168   ZWE      0.483
## 35200   ZWE     77.800
## 35210   ZWE     51.100
## 35211   ZWE      0.000
## 35212   ZWE      4.700
## 35213   ZWE     -0.100
## 35214   ZWE      0.000
## 35215   ZWE     59.300
## 35216   ZWE     25.700
## 35217   ZWE     71.000
## 35222   ZWE      5.000
## 35223   ZWE     11.400
## 35224   ZWE     63.400
## 35227   ALB      0.610
## 35229   ALB      9.500
## 35230   ALB      2.000
## 35231   ALB      0.200
## 35232   ALB      0.400
## 35234   ALB      3.200
## 35235   ALB     37.200
## 35236   ALB     53.600
## 35237   ALB      0.558
## 35238   ALB     10.700
## 35239   ALB     10.800
## 35240   ALB     10.600
## 35247   ALB      7.800
## 35248   ALB      7.300
## 35249   ALB      8.200
## 35251   ALB     59.900
## 35252   ALB     69.800
## 35294   ALB      0.100
## 35295   ALB      3.000
## 35296   ALB     13.000
## 35297   ALB     71.800
## 35298   ALB     75.000
## 35299   ALB     69.000
## 35300   ALB      0.797
## 35301   ALB     77.000
## 35302   ALB     32.100
## 35303   ALB    150.000
## 35304   ALB     36.900
## 35317   ALB   2925.000
## 35318   ALB      0.510
## 35362   ALB    100.000
## 35363   ALB      2.800
## 35364   ALB     60.200
## 35365   ALB     -2.800
## 35366   ALB     21.400
## 35380   DZA      0.587
## 35382   DZA      6.400
## 35383   DZA     14.800
## 35384   DZA      0.900
## 35385   DZA      3.900
## 35387   DZA     27.200
## 35388   DZA     53.700
## 35389   DZA     77.400
## 35390   DZA      0.405
## 35391   DZA      9.800
## 35400   DZA      4.000
## 35401   DZA      2.500
## 35402   DZA      5.000
## 35404   DZA     12.100
## 35405   DZA     23.800
## 35447   DZA      0.100
## 35448   DZA      4.000
## 35449   DZA     14.000
## 35450   DZA     67.200
## 35451   DZA     68.800
## 35452   DZA     65.700
## 35453   DZA      0.727
## 35455   DZA    148.000
## 35456   DZA     39.400
## 35457   DZA    196.000
## 35458   DZA     46.500
## 35471   DZA   9391.000
## 35472   DZA      0.686
## 35514   DZA     49.200
## 35515   DZA      0.100
## 35516   DZA      0.800
## 35518   DZA      2.900
## 35534   AGO      5.200
## 35535   AGO      6.400
## 35536   AGO      0.300
## 35537   AGO      2.600
## 35539   AGO     13.000
## 35540   AGO     40.000
## 35541   AGO     98.500
## 35543   AGO      3.500
## 35585   AGO      0.400
## 35586   AGO     55.000
## 35587   AGO     61.000
## 35588   AGO     42.100
## 35589   AGO     44.300
## 35590   AGO     39.900
## 35591   AGO      0.339
## 35593   AGO    392.000
## 35594   AGO    131.600
## 35595   AGO    467.000
## 35596   AGO    222.800
## 35609   AGO   1964.000
## 35610   AGO      0.450
## 35652   AGO     97.400
## 35672   ATG     12.400
## 35673   ATG      0.000
## 35674   ATG      0.000
## 35675   ATG      0.000
## 35677   ATG      0.100
## 35678   ATG     35.100
## 35679   ATG     50.000
## 35710   ATG      1.000
## 35711   ATG      1.000
## 35712   ATG     71.800
## 35713   ATG     74.300
## 35714   ATG     69.100
## 35715   ATG      0.797
## 35716   ATG    150.000
## 35717   ATG     21.900
## 35718   ATG    196.000
## 35719   ATG     23.200
## 35730   ATG  15523.000
## 35731   ATG      0.762
## 35743   ATG    159.000
## 35744   ATG      3.900
## 35745   ATG      1.000
## 35746   ATG     -3.900
## 35747   ATG      0.540
## 35750   ARG      0.720
## 35752   ARG     15.300
## 35753   ARG     20.400
## 35754   ARG      3.100
## 35755   ARG      3.500
## 35757   ARG     33.700
## 35758   ARG     87.500
## 35759   ARG     49.800
## 35760   ARG      0.634
## 35761   ARG     13.200
## 35770   ARG      8.000
## 35771   ARG      8.100
## 35772   ARG      8.100
## 35774   ARG     38.300
## 35775   ARG     40.000
## 35813   ARG      0.300
## 35814   ARG      7.000
## 35815   ARG      8.000
## 35816   ARG     72.000
## 35817   ARG     75.700
## 35818   ARG     68.500
## 35819   ARG      0.800
## 35821   ARG    102.000
## 35822   ARG     24.400
## 35823   ARG    200.000
## 35824   ARG     27.600
## 35837   ARG  13051.000
## 35838   ARG      0.736
## 35870   ARG     14.700
## 35871   ARG      1.900
## 35872   ARG      0.100
## 35873   ARG     -3.600
## 35874   ARG      0.010
## 35887   ARM      0.580
## 35889   ARM     10.400
## 35890   ARM      2.200
## 35891   ARM      0.200
## 35892   ARM      0.400
## 35894   ARM      3.400
## 35895   ARM     66.900
## 35896   ARM     47.200
## 35897   ARM      0.636
## 35898   ARM     10.600
## 35907   ARM     10.200
## 35908   ARM     10.100
## 35909   ARM     10.300
## 35911   ARM     85.900
## 35912   ARM     89.100
## 35951   ARM      0.100
## 35952   ARM      5.000
## 35953   ARM      7.000
## 35954   ARM     68.000
## 35955   ARM     71.300
## 35956   ARM     64.600
## 35957   ARM      0.738
## 35958   ARM    125.000
## 35959   ARM     38.800
## 35960   ARM    250.000
## 35961   ARM     45.100
## 35974   ARM   1575.000
## 35975   ARM      0.416
## 36020   ARM    101.100
## 36021   ARM      0.200
## 36022   ARM      2.100
## 36038   AUS      0.868
## 36040   AUS     17.100
## 36041   AUS     11.700
## 36042   AUS      2.000
## 36043   AUS      1.300
## 36045   AUS     17.500
## 36046   AUS     85.300
## 36047   AUS     32.600
## 36048   AUS      0.874
## 36049   AUS     17.300
## 36050   AUS     17.300
## 36051   AUS     17.400
## 36057   AUS     11.800
## 36058   AUS     11.100
## 36059   AUS     11.500
## 36061   AUS     89.100
## 36062   AUS     90.500
## 36099   AUS      0.100
## 36100   AUS      3.000
## 36101   AUS     14.000
## 36102   AUS     77.500
## 36103   AUS     80.500
## 36104   AUS     74.500
## 36105   AUS      0.885
## 36106   AUS     65.000
## 36107   AUS      6.700
## 36108   AUS    117.000
## 36109   AUS      8.200
## 36122   AUS  27030.000
## 36123   AUS      0.846
## 36153   AUS     33.100
## 36154   AUS      1.800
## 36155   AUS     -0.100
## 36156   AUS      0.590
## 36169   AUT      0.805
## 36171   AUT     22.400
## 36172   AUT      5.300
## 36173   AUT      1.200
## 36174   AUT      0.400
## 36176   AUT      7.800
## 36177   AUT     62.400
## 36178   AUT     25.300
## 36179   AUT      0.692
## 36180   AUT     14.400
## 36181   AUT     14.000
## 36182   AUT     14.900
## 36188   AUT      8.700
## 36189   AUT      7.800
## 36190   AUT      9.800
## 36192   AUT     51.000
## 36193   AUT     74.600
## 36232   AUT      4.000
## 36233   AUT     40.000
## 36234   AUT     76.100
## 36235   AUT     79.200
## 36236   AUT     72.600
## 36237   AUT      0.863
## 36238   AUT     72.000
## 36239   AUT      7.100
## 36240   AUT    153.000
## 36241   AUT      8.500
## 36254   AUT  32442.000
## 36255   AUT      0.873
## 36285   AUT     67.600
## 36286   AUT      0.700
## 36288   AUT      0.420
## 36303   AZE      8.000
## 36304   AZE      4.600
## 36305   AZE      0.400
## 36306   AZE      1.000
## 36308   AZE      7.500
## 36309   AZE     53.100
## 36310   AZE     54.700
## 36312   AZE     10.600
## 36313   AZE     10.300
## 36314   AZE     10.900
## 36365   AZE      0.100
## 36366   AZE     36.000
## 36367   AZE     48.000
## 36368   AZE     64.700
## 36369   AZE     69.000
## 36370   AZE     60.400
## 36371   AZE      0.688
## 36373   AZE    115.000
## 36374   AZE     75.900
## 36375   AZE    260.000
## 36376   AZE     95.300
## 36434   AZE    140.800
## 36452   BHS      7.000
## 36453   BHS      0.200
## 36454   BHS      0.000
## 36455   BHS      0.000
## 36457   BHS      0.300
## 36458   BHS     80.300
## 36459   BHS     49.900
## 36461   BHS     12.000
## 36462   BHS     12.300
## 36463   BHS     11.600
## 36504   BHS      1.500
## 36505   BHS      3.000
## 36506   BHS      6.000
## 36507   BHS     71.000
## 36508   BHS     74.400
## 36509   BHS     67.600
## 36510   BHS      0.785
## 36511   BHS    147.000
## 36512   BHS     17.900
## 36513   BHS    257.000
## 36514   BHS     21.500
## 36526   BHS  26633.000
## 36527   BHS      0.844
## 36549   BHS    101.500
## 36550   BHS      0.000
## 36551   BHS      0.100
## 36564   BGD      0.402
## 36566   BGD      5.800
## 36567   BGD     61.500
## 36568   BGD      3.600
## 36569   BGD     16.600
## 36571   BGD    111.200
## 36572   BGD     20.600
## 36573   BGD     75.100
## 36574   BGD      0.268
## 36575   BGD      6.000
## 36576   BGD      5.200
## 36577   BGD      6.800
## 36584   BGD      3.000
## 36585   BGD      2.200
## 36586   BGD      3.900
## 36588   BGD     14.100
## 36589   BGD     28.100
## 36628   BGD      0.100
## 36629   BGD     14.000
## 36630   BGD     31.000
## 36631   BGD     59.700
## 36632   BGD     60.100
## 36633   BGD     59.300
## 36634   BGD      0.611
## 36636   BGD    192.000
## 36637   BGD     92.100
## 36638   BGD    193.000
## 36639   BGD    131.700
## 36652   BGD   1378.000
## 36653   BGD      0.396
## 36697   BGD     19.900
## 36698   BGD      0.000
## 36699   BGD      5.600
## 36700   BGD      0.000
## 36701   BGD      2.880
## 36714   BRB      0.718
## 36716   BRB     15.500
## 36717   BRB      0.200
## 36718   BRB      0.000
## 36719   BRB      0.000
## 36721   BRB      0.300
## 36722   BRB     36.600
## 36723   BRB     35.200
## 36724   BRB      0.639
## 36725   BRB     13.100
## 36726   BRB     13.100
## 36727   BRB     13.000
## 36733   BRB      8.300
## 36734   BRB      8.200
## 36735   BRB      8.400
## 36737   BRB     69.300
## 36738   BRB     70.000
## 36774   BRB      0.300
## 36775   BRB      4.000
## 36776   BRB     10.000
## 36777   BRB     71.800
## 36778   BRB     74.000
## 36779   BRB     69.400
## 36780   BRB      0.798
## 36781   BRB    117.000
## 36782   BRB     14.500
## 36783   BRB    177.000
## 36784   BRB     16.200
## 36797   BRB  12154.000
## 36798   BRB      0.725
## 36831   BRB     76.200
## 36832   BRB      0.700
## 36833   BRB      0.000
## 36834   BRB      0.100
## 36835   BRB      2.790
## 36850   BLR     17.300
## 36851   BLR      6.700
## 36852   BLR      1.200
## 36853   BLR      0.700
## 36855   BLR     10.200
## 36856   BLR     66.800
## 36857   BLR     34.300
## 36859   BLR     12.500
## 36911   BLR      0.100
## 36912   BLR      4.000
## 36913   BLR      6.000
## 36914   BLR     69.700
## 36915   BLR     75.000
## 36916   BLR     64.300
## 36917   BLR      0.765
## 36918   BLR    115.000
## 36919   BLR     12.200
## 36920   BLR    311.000
## 36921   BLR     15.300
## 36934   BLR   7508.000
## 36935   BLR      0.652
## 36967   BLR    117.400
## 36985   BLZ      0.657
## 36987   BLZ      8.100
## 36988   BLZ      0.100
## 36989   BLZ      0.000
## 36990   BLZ      0.000
## 36992   BLZ      0.200
## 36993   BLZ     47.100
## 36994   BLZ     82.100
## 36995   BLZ      0.591
## 36996   BLZ     11.000
## 37004   BLZ      8.600
## 37005   BLZ      8.600
## 37006   BLZ      8.600
## 37008   BLZ     26.800
## 37009   BLZ     27.300
## 37047   BLZ      0.100
## 37048   BLZ      4.000
## 37049   BLZ     31.000
## 37050   BLZ     70.700
## 37051   BLZ     73.200
## 37052   BLZ     68.400
## 37053   BLZ      0.780
## 37055   BLZ    131.000
## 37056   BLZ     28.400
## 37057   BLZ    202.000
## 37058   BLZ     34.500
## 37071   BLZ   5925.000
## 37072   BLZ      0.617
## 37108   BLZ    102.600
## 37109   BLZ      3.000
## 37110   BLZ      5.200
## 37111   BLZ     -3.000
## 37112   BLZ      3.810
## 37126   BEN      0.358
## 37128   BEN      7.200
## 37129   BEN      2.700
## 37130   BEN      0.200
## 37131   BEN      1.000
## 37133   BEN      5.300
## 37134   BEN     35.800
## 37135   BEN     90.400
## 37136   BEN      0.215
## 37137   BEN      5.500
## 37146   BEN      1.800
## 37147   BEN      1.000
## 37148   BEN      2.800
## 37150   BEN      5.400
## 37151   BEN     16.400
## 37188   BEN      0.500
## 37189   BEN     14.000
## 37190   BEN     30.000
## 37191   BEN     54.800
## 37192   BEN     56.500
## 37193   BEN     52.900
## 37194   BEN      0.535
## 37196   BEN    236.000
## 37197   BEN    102.500
## 37198   BEN    293.000
## 37199   BEN    169.000
## 37212   BEN   1409.000
## 37213   BEN      0.400
## 37256   BEN     56.700
## 37257   BEN      4.600
## 37258   BEN     16.500
## 37259   BEN     -4.200
## 37260   BEN      8.040
## 37276   BTN      5.600
## 37277   BTN      0.300
## 37278   BTN      0.000
## 37279   BTN      0.100
## 37281   BTN      0.500
## 37282   BTN     18.000
## 37283   BTN     83.800
## 37285   BTN      5.800
## 37338   BTN      5.000
## 37339   BTN     14.000
## 37340   BTN     54.400
## 37341   BTN     54.700
## 37342   BTN     54.100
## 37343   BTN      0.529
## 37345   BTN    360.000
## 37346   BTN     82.400
## 37347   BTN    355.000
## 37348   BTN    116.400
## 37361   BTN   2079.000
## 37362   BTN      0.458
## 37403   BTN     87.900
## 37404   BTN      0.000
## 37405   BTN     25.200
## 37420   BOL      0.550
## 37422   BOL      8.400
## 37423   BOL      3.900
## 37424   BOL      0.300
## 37425   BOL      1.100
## 37427   BOL      7.100
## 37428   BOL     57.500
## 37429   BOL     74.700
## 37430   BOL      0.546
## 37431   BOL     11.600
## 37439   BOL      6.700
## 37440   BOL      5.700
## 37441   BOL      7.600
## 37443   BOL     37.900
## 37444   BOL     53.400
## 37481   BOL      0.100
## 37482   BOL     30.000
## 37483   BOL     43.000
## 37484   BOL     56.200
## 37485   BOL     58.000
## 37486   BOL     54.500
## 37487   BOL      0.557
## 37489   BOL    247.000
## 37490   BOL     79.800
## 37491   BOL    307.000
## 37492   BOL    114.600
## 37505   BOL   3708.000
## 37506   BOL      0.546
## 37549   BOL     49.100
## 37550   BOL      1.600
## 37551   BOL     12.200
## 37552   BOL     -1.600
## 37553   BOL      0.070
## 37566   BWA      0.587
## 37568   BWA      4.900
## 37569   BWA      0.800
## 37570   BWA      0.000
## 37571   BWA      0.200
## 37573   BWA      1.500
## 37574   BWA     46.400
## 37575   BWA     79.800
## 37576   BWA      0.486
## 37577   BWA     10.300
## 37578   BWA     10.600
## 37579   BWA     10.000
## 37585   BWA      6.000
## 37586   BWA      6.000
## 37587   BWA      6.200
## 37589   BWA     45.700
## 37590   BWA     49.100
## 37626   BWA     12.300
## 37627   BWA      1.000
## 37628   BWA     12.000
## 37629   BWA     60.100
## 37630   BWA     62.700
## 37631   BWA     57.400
## 37632   BWA      0.617
## 37634   BWA    267.000
## 37635   BWA     44.300
## 37636   BWA    375.000
## 37637   BWA     59.700
## 37650   BWA   8697.000
## 37651   BWA      0.675
## 37681   BWA     89.800
## 37682   BWA      0.000
## 37683   BWA      2.600
## 37684   BWA      0.300
## 37685   BWA      2.270
## 37698   BRA      0.622
## 37700   BRA      6.900
## 37701   BRA     94.600
## 37702   BRA      6.500
## 37703   BRA     17.600
## 37705   BRA    154.600
## 37706   BRA     75.400
## 37707   BRA     56.400
## 37708   BRA      0.487
## 37709   BRA     12.600
## 37718   BRA      4.100
## 37719   BRA      4.500
## 37720   BRA      4.200
## 37722   BRA     23.000
## 37723   BRA     21.900
## 37764   BRA      0.200
## 37765   BRA     12.000
## 37766   BRA      9.000
## 37767   BRA     66.100
## 37768   BRA     70.100
## 37769   BRA     62.400
## 37770   BRA      0.710
## 37772   BRA    152.000
## 37773   BRA     49.100
## 37774   BRA    287.000
## 37775   BRA     58.400
## 37788   BRA  10044.000
## 37789   BRA      0.696
## 37834   BRA     19.300
## 37835   BRA      0.500
## 37836   BRA     -0.100
## 37837   BRA     -4.100
## 37838   BRA      0.450
## 37852   BRN      0.792
## 37854   BRN      4.200
## 37855   BRN      0.200
## 37856   BRN      0.000
## 37857   BRN      0.000
## 37859   BRN      0.300
## 37860   BRN     67.100
## 37861   BRN     54.000
## 37862   BRN      0.604
## 37863   BRN     12.500
## 37864   BRN     12.600
## 37865   BRN     12.300
## 37872   BRN      7.700
## 37873   BRN      7.100
## 37874   BRN      8.200
## 37876   BRN     54.300
## 37877   BRN     59.800
## 37911   BRN      2.000
## 37912   BRN      8.000
## 37913   BRN     73.400
## 37914   BRN     75.100
## 37915   BRN     72.000
## 37916   BRN      0.822
## 37917   BRN    106.000
## 37918   BRN     10.300
## 37919   BRN    144.000
## 37920   BRN     13.200
## 37932   BRN  86886.000
## 37933   BRN      1.000
## 37951   BRN    105.800
## 37953   BRN      0.100
## 37967   BGR      0.691
## 37969   BGR     21.000
## 37970   BGR      5.800
## 37971   BGR      1.200
## 37972   BGR      0.500
## 37974   BGR      8.700
## 37975   BGR     67.100
## 37976   BGR     29.400
## 37977   BGR      0.635
## 37978   BGR     12.000
## 37979   BGR     12.100
## 37980   BGR     11.900
## 37987   BGR      9.000
## 37988   BGR      8.500
## 37989   BGR      8.700
## 37991   BGR     55.600
## 37992   BGR     79.400
## 38030   BGR      0.100
## 38031   BGR      2.000
## 38032   BGR      8.000
## 38033   BGR     71.100
## 38034   BGR     74.800
## 38035   BGR     67.700
## 38036   BGR      0.786
## 38037   BGR     99.000
## 38038   BGR     15.300
## 38039   BGR    230.000
## 38040   BGR     19.200
## 38053   BGR   7940.000
## 38054   BGR      0.661
## 38084   BGR    100.100
## 38085   BGR      0.400
## 38086   BGR     -0.400
## 38102   BFA      6.500
## 38103   BFA      4.600
## 38104   BFA      0.300
## 38105   BFA      1.800
## 38107   BFA      9.300
## 38108   BFA     14.300
## 38109   BFA     95.800
## 38111   BFA      2.700
## 38112   BFA      2.000
## 38113   BFA      3.300
## 38162   BFA      3.500
## 38163   BFA     21.000
## 38164   BFA     40.000
## 38165   BFA     49.400
## 38166   BFA     50.500
## 38167   BFA     48.100
## 38168   BFA      0.452
## 38170   BFA    301.000
## 38171   BFA     98.400
## 38172   BFA    361.000
## 38173   BFA    198.000
## 38186   BFA    875.000
## 38187   BFA      0.328
## 38231   BFA     28.400
## 38232   BFA      0.100
## 38233   BFA     19.400
## 38235   BFA      5.750
## 38248   BDI      0.297
## 38250   BDI      6.300
## 38251   BDI      2.700
## 38252   BDI      0.200
## 38253   BDI      1.100
## 38255   BDI      5.700
## 38256   BDI      6.600
## 38257   BDI    101.000
## 38258   BDI      0.172
## 38259   BDI      4.400
## 38260   BDI      3.900
## 38261   BDI      4.900
## 38268   BDI      1.500
## 38269   BDI      0.900
## 38270   BDI      2.200
## 38272   BDI      2.000
## 38273   BDI      4.900
## 38309   BDI      1.000
## 38310   BDI      7.000
## 38311   BDI     31.000
## 38312   BDI     47.800
## 38313   BDI     49.400
## 38314   BDI     46.100
## 38315   BDI      0.427
## 38317   BDI    348.000
## 38318   BDI    103.800
## 38319   BDI    406.000
## 38320   BDI    171.500
## 38333   BDI   1066.000
## 38334   BDI      0.358
## 38377   BDI     38.200
## 38378   BDI      0.100
## 38379   BDI     28.900
## 38380   BDI     -0.100
## 38395   CMR      0.432
## 38397   CMR      7.000
## 38398   CMR      6.200
## 38399   CMR      0.400
## 38400   CMR      2.300
## 38402   CMR     12.400
## 38403   CMR     40.800
## 38404   CMR     92.800
## 38405   CMR      0.343
## 38406   CMR      7.900
## 38407   CMR      7.200
## 38415   CMR      3.700
## 38416   CMR      2.800
## 38417   CMR      4.700
## 38419   CMR     10.000
## 38420   CMR     21.300
## 38458   CMR      1.400
## 38459   CMR     38.000
## 38460   CMR     63.000
## 38461   CMR     51.400
## 38462   CMR     52.700
## 38463   CMR     50.100
## 38464   CMR      0.483
## 38466   CMR    342.000
## 38467   CMR     93.200
## 38468   CMR    391.000
## 38469   CMR    151.700
## 38482   CMR   2535.000
## 38483   CMR      0.488
## 38526   CMR     38.900
## 38527   CMR      0.300
## 38528   CMR      6.600
## 38529   CMR      0.400
## 38530   CMR      0.220
## 38544   CAF      0.299
## 38546   CAF      7.600
## 38547   CAF      1.600
## 38548   CAF      0.100
## 38549   CAF      0.500
## 38551   CAF      3.100
## 38552   CAF     37.000
## 38553   CAF     81.600
## 38554   CAF      0.189
## 38555   CAF      4.200
## 38556   CAF      3.100
## 38557   CAF      5.200
## 38564   CAF      2.200
## 38565   CAF      1.200
## 38566   CAF      3.300
## 38568   CAF      4.700
## 38569   CAF     16.600
## 38605   CAF      5.600
## 38606   CAF     25.000
## 38607   CAF     68.000
## 38608   CAF     47.900
## 38609   CAF     49.900
## 38610   CAF     45.900
## 38611   CAF      0.429
## 38613   CAF    392.000
## 38614   CAF    114.200
## 38615   CAF    445.000
## 38616   CAF    173.700
## 38629   CAF    890.000
## 38630   CAF      0.330
## 38672   CAF     43.200
## 38673   CAF     -0.800
## 38674   CAF     12.700
## 38675   CAF      1.200
## 38676   CAF      0.010
## 38690   TCD      6.500
## 38691   TCD      3.100
## 38692   TCD      0.200
## 38693   TCD      1.300
## 38695   TCD      6.300
## 38696   TCD     21.200
## 38697   TCD     97.900
## 38699   TCD      3.300
## 38749   TCD      1.100
## 38750   TCD     69.000
## 38751   TCD     75.000
## 38752   TCD     47.100
## 38753   TCD     48.400
## 38754   TCD     45.900
## 38755   TCD      0.418
## 38757   TCD    365.000
## 38758   TCD    108.900
## 38759   TCD    415.000
## 38760   TCD    205.500
## 38773   TCD   1225.000
## 38774   TCD      0.378
## 38816   TCD     35.900
## 38817   TCD      0.100
## 38818   TCD     12.600
## 38819   TCD      0.600
## 38820   TCD      0.010
## 38833   CHL      0.719
## 38835   CHL     10.100
## 38836   CHL      8.700
## 38837   CHL      0.900
## 38838   CHL      1.400
## 38840   CHL     13.700
## 38841   CHL     83.600
## 38842   CHL     46.300
## 38843   CHL      0.640
## 38844   CHL     13.200
## 38845   CHL     13.100
## 38846   CHL     13.300
## 38853   CHL      8.200
## 38854   CHL      8.100
## 38855   CHL      8.300
## 38857   CHL     50.900
## 38858   CHL     53.000
## 38878   CHL   4870.000
## 38879   CHL  14880.000
## 38881   CHL      0.919
## 38883   CHL      0.680
## 38884   CHL      0.739
## 38895   CHL      0.100
## 38896   CHL      4.000
## 38897   CHL     11.000
## 38898   CHL     74.400
## 38899   CHL     77.300
## 38900   CHL     71.300
## 38901   CHL      0.837
## 38902   CHL     92.000
## 38903   CHL     13.700
## 38904   CHL    164.000
## 38905   CHL     16.400
## 38918   CHL   9810.000
## 38919   CHL      0.693
## 38949   CHL     56.300
## 38950   CHL      2.000
## 38951   CHL      0.300
## 38952   CHL     -2.200
## 38967   CHN      0.521
## 38969   CHN      8.800
## 38970   CHN    791.200
## 38971   CHN     70.000
## 38972   CHN    131.200
## 38974   CHN   1204.000
## 38975   CHN     28.200
## 38976   CHN     43.300
## 38977   CHN      0.420
## 38978   CHN      8.900
## 38979   CHN      8.400
## 38980   CHN      9.400
## 38987   CHN      5.200
## 38988   CHN      5.100
## 38989   CHN      6.200
## 38991   CHN     31.300
## 38992   CHN     47.200
## 39028   CHN      3.000
## 39029   CHN     13.000
## 39030   CHN     69.600
## 39031   CHN     71.400
## 39032   CHN     68.000
## 39033   CHN      0.763
## 39035   CHN    108.000
## 39036   CHN     41.100
## 39037   CHN    146.000
## 39038   CHN     52.300
## 39050   CHN   1855.000
## 39051   CHN      0.441
## 39093   CHN     30.100
## 39094   CHN      2.600
## 39095   CHN      0.700
## 39096   CHN     -1.700
## 39097   CHN      0.150
## 39109   COL      0.606
## 39111   COL      7.100
## 39112   COL     21.400
## 39113   COL      1.500
## 39114   COL      4.300
## 39116   COL     35.600
## 39117   COL     70.400
## 39118   COL     59.300
## 39119   COL      0.457
## 39120   COL      9.600
## 39121   COL      9.500
## 39122   COL      8.900
## 39129   COL      5.700
## 39130   COL      5.600
## 39131   COL      6.200
## 39133   COL     33.400
## 39134   COL     37.500
## 39175   COL      0.200
## 39176   COL      8.000
## 39177   COL     26.000
## 39178   COL     68.600
## 39179   COL     72.900
## 39180   COL     64.600
## 39181   COL      0.748
## 39183   COL    125.000
## 39184   COL     27.200
## 39185   COL    269.000
## 39186   COL     32.900
## 39199   COL   7510.000
## 39200   COL      0.652
## 39245   COL     33.500
## 39246   COL      1.500
## 39247   COL      0.500
## 39248   COL     -1.600
## 39249   COL      1.300
## 39263   COG      0.535
## 39265   COG      7.000
## 39266   COG      1.400
## 39267   COG      0.100
## 39268   COG      0.400
## 39270   COG      2.600
## 39271   COG     55.200
## 39272   COG     81.200
## 39273   COG      0.457
## 39274   COG     10.900
## 39275   COG     10.000
## 39276   COG     11.700
## 39283   COG      4.700
## 39284   COG      3.500
## 39285   COG      6.000
## 39287   COG     25.600
## 39288   COG     41.800
## 39323   COG      4.500
## 39324   COG     14.000
## 39325   COG     40.000
## 39326   COG     55.000
## 39327   COG     56.500
## 39328   COG     53.600
##  [ reached getOption("max.print") -- omitted 245363 rows ]

WEBSITE THING: INdex.html - links: - deliverable 1 - deliverable 2 - deliverable 3 link to relative file